aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
Commit message (Collapse)AuthorAgeFilesLines
...
* the context is supposed to be freed in the generic code in utils.cMichael Niedermayer2007-01-211-1/+0
| | | | Originally committed as revision 7604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless codec_tag setting code in muxersMichael Niedermayer2007-01-215-13/+4
| | | | Originally committed as revision 7603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-211-11/+6
| | | | Originally committed as revision 7602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set codec_tag from codec_id if its not set and can be set based on the ↵Michael Niedermayer2007-01-211-0/+11
| | | | | | AVCodecTag tables Originally committed as revision 7600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* this is wrong but it was that way before the AVCodecTag change, only reason ↵Michael Niedermayer2007-01-211-0/+1
| | | | | | why it didnt broke regressions was that the table wasnt used Originally committed as revision 7599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of the [4] limitation of codec tag listsMichael Niedermayer2007-01-2110-18/+18
| | | | Originally committed as revision 7596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export a few more codec_tag-codec_id tablesMichael Niedermayer2007-01-215-0/+7
| | | | Originally committed as revision 7594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec_id <-> codec_tag tables to AVIn/OutputFormatMichael Niedermayer2007-01-2119-53/+95
| | | | Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indention (dunno why it was messed up ...)Michael Niedermayer2007-01-201-29/+28
| | | | Originally committed as revision 7592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Attempt to better document AVFMT_NOFILE.Reimar Döffinger2007-01-192-1/+5
| | | | Originally committed as revision 7590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Demuxers with AVFMT_NOFILE will open a (possibly different) file themselves,Reimar Döffinger2007-01-191-1/+1
| | | | | | so do not probe them if is_opened is set. Originally committed as revision 7589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-1923-137/+137
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-01-182-2/+2
| | | | Originally committed as revision 7583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The long awaited BeOS cleanup, phase 1.1: removed useless ifdef, changed ↵François Revol2007-01-181-3/+1
| | | | | | check for net_server to IP_MULTICAST_TTL. Originally committed as revision 7582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The long awaited BeOS cleanup, phase 1François Revol2007-01-188-54/+34
| | | | Originally committed as revision 7581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* omg, major typo (fails if card supports rgb24)Alex Beregszaszi2007-01-181-1/+2
| | | | Originally committed as revision 7580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-171-7/+4
| | | | Originally committed as revision 7567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify pts/dts readingMichael Niedermayer2007-01-171-11/+11
| | | | Originally committed as revision 7565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-01-171-1/+1
| | | | Originally committed as revision 7563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reduce len checks, simplifies codeMichael Niedermayer2007-01-171-14/+2
| | | | | | | there is a very small chance that a stream which is damaged && unseekable && very small packet && damage to the flags && unlucky buffer state could have a valid packet after a damaged packet lost, but i think this is so unlikely that the simplification outweights it mans if you disagree with any commit to mpeg.c just say so and ill revert it Originally committed as revision 7562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seperate redo (we dont handle this possibly valid packet) fromMichael Niedermayer2007-01-171-11/+14
| | | | | | error_redo (somethings is definitly wrong) in which case we try to resync from the last startcode Originally committed as revision 7560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make nb_streams unsigned to avoid an ugly cast.Diego Biurrun2007-01-162-2/+2
| | | | Originally committed as revision 7556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add msrle fourcc, quicktime_bmp.movBaptiste Coudurier2007-01-161-0/+1
| | | | Originally committed as revision 7541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add png fourccBaptiste Coudurier2007-01-161-0/+1
| | | | Originally committed as revision 7540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix segfault with http://sam.zoy.org/zzuf/lol-ffplay.wmvMichael Niedermayer2007-01-151-0/+4
| | | | Originally committed as revision 7539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing segfault with http://sam.zoy.org/zzuf/lol-ffplay.aviMichael Niedermayer2007-01-151-1/+1
| | | | Originally committed as revision 7537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for sane values in ogg_get_length(), fix lol-ffplay.ogm fuzz testMåns Rullgård2007-01-151-1/+2
| | | | Originally committed as revision 7536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* save/restore number of streamsMåns Rullgård2007-01-152-2/+5
| | | | Originally committed as revision 7535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Fixing a bug with incorrect bits set in AAUX source packRoman Shaposhnik2007-01-151-4/+8
| | | | | | | * Making DV codec release a buffer on exit * Flagging accepted pix_fmts for DV encoder Originally committed as revision 7531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, function -> metadataBaptiste Coudurier2007-01-151-5/+5
| | | | Originally committed as revision 7526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless essence container data sets for nowBaptiste Coudurier2007-01-141-11/+0
| | | | Originally committed as revision 7516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless preface parsing for now, will reintroduce it if neededBaptiste Coudurier2007-01-141-27/+0
| | | | Originally committed as revision 7515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge multiple descriptor parsing with generic oneBaptiste Coudurier2007-01-141-16/+9
| | | | Originally committed as revision 7513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove warning, key is constBaptiste Coudurier2007-01-141-1/+1
| | | | Originally committed as revision 7509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionBaptiste Coudurier2007-01-141-169/+169
| | | | Originally committed as revision 7508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* follow michael suggestion and simplify code at object levelBaptiste Coudurier2007-01-141-92/+76
| | | | Originally committed as revision 7507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* makes the filename member of the URLContext a pointer, so that theRonald S. Bultje2007-01-142-1/+8
| | | | | | | | | | structure can be extended in the future without breaking ABI. patch by Ronald S. Bultje % rbultje A ronald P bitfreak P net % Original thread: Date: Jan 1, 2007 6:01 PM Subject: [Ffmpeg-devel] make URLContext->filename a pointer Originally committed as revision 7506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for HTTP seekingRonald S. Bultje2007-01-141-25/+92
| | | | | | | | | patch by Ronald S. Bultje % rbultje A ronald P bitfreak P net % Original thread: Date: Jan 4, 2007 5:42 AM Subject: [Ffmpeg-devel] [PATCH/RFC] http seeking Originally committed as revision 7505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make seeking work in files that contain encrypted tracks.Reimar Döffinger2007-01-141-1/+12
| | | | Originally committed as revision 7502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, > vs. >= typo, caused crashes on last mpc frameReimar Döffinger2007-01-141-1/+1
| | | | Originally committed as revision 7476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify klv_decode_ber_lengthReimar Döffinger2007-01-141-8/+4
| | | | Originally committed as revision 7475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek back at the end of file after updating headerBaptiste Coudurier2007-01-141-0/+1
| | | | Originally committed as revision 7473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2007-01-141-13/+4
| | | | Originally committed as revision 7465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* priv_data is allocated internallyBaptiste Coudurier2007-01-141-6/+1
| | | | Originally committed as revision 7459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable mjpeg in swfBaptiste Coudurier2007-01-141-0/+28
| | | | Originally committed as revision 7458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2007-01-141-5/+3
| | | | Originally committed as revision 7457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swf can contain only one audio track, simplifyBaptiste Coudurier2007-01-141-10/+9
| | | | Originally committed as revision 7456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ch_id as AVStream id and simplifyBaptiste Coudurier2007-01-141-17/+10
| | | | Originally committed as revision 7455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* always export audiostreamsBaptiste Coudurier2007-01-141-27/+22
| | | | Originally committed as revision 7454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* always export videostreamsBaptiste Coudurier2007-01-141-12/+7
| | | | Originally committed as revision 7452 to svn://svn.ffmpeg.org/ffmpeg/trunk