aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* simplifyMichael Niedermayer2007-01-211-20/+8
| | | | Originally committed as revision 7605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
* Constantize AVOption, solve few warnings, patch from flameeyes@gentoo.org ↵Luca Barbato2007-01-212-33/+33
| | | | | | aka "the other Diego" Originally committed as revision 7601 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
* Fixed a typo, cosmetics.Benjamin Larsson2007-01-211-1/+1
| | | | Originally committed as revision 7598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of #ifdef CONFIG_ZLIB in the code. Code cleanup.Benjamin Larsson2007-01-212-18/+3
| | | | Originally committed as revision 7597 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
* Fix crash when pred_order greater s->blocksize >> rice_order.Reimar Döffinger2007-01-211-0/+4
| | | | | | Fixes http://sam.zoy.org/zzuf/lol-mplayer.flac Originally committed as revision 7595 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
* checking bitstream values and other related changesMichael Niedermayer2007-01-201-50/+118
| | | | | | some of these might have been exploitable Originally committed as revision 7591 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
* add AV_WB/WL for lswriting, similar to AV_RB/RL (also increment version)Alex Beregszaszi2007-01-192-8/+31
| | | | Originally committed as revision 7588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-1966-379/+379
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless cast that makes code unreadableGuillaume Poirier2007-01-191-2/+2
| | | | Originally committed as revision 7586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* harden h264 decoding to prevent some crashes when input data is corrupted.Francois Oligny-Lemieux2007-01-191-19/+46
| | | | | | | | | | | | | | Patch by Frank %eucloid A gmail P com% date: Jan 18, 2007 6:48 PM subject: Re: [Ffmpeg-devel] h264, protection against corrupted data (second try patch) AND date: Jan 17, 2007 8:22 PM subject: [Ffmpeg-devel] h264, protection against corrupted data this also fixes a possible security issue (the sps and pps ids where not checked, then used as index into an array of sps/pps structs which was then filled with data from the bitstream) Originally committed as revision 7585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uint16->uint8Michael Niedermayer2007-01-191-3/+3
| | | | Originally committed as revision 7584 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
* Change the Snow encoder to always use the available MotionEstContext pointer.Panagiotis Issaris2007-01-181-4/+4
| | | | Originally committed as revision 7579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add/update some comments.Diego Biurrun2007-01-181-2/+2
| | | | Originally committed as revision 7578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename do_libav var so as not to clash with the do_libav function on Solaris.Diego Biurrun2007-01-181-2/+2
| | | | Originally committed as revision 7577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change while loops to do-while as the condition is true the first time and ↵Michael Niedermayer2007-01-181-4/+4
| | | | | | the check just wastes cpu cycles Originally committed as revision 7576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simpler branch structure in init (16 bytes smaller object file)Michael Niedermayer2007-01-171-1/+1
| | | | Originally committed as revision 7575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doxygenizeMichael Niedermayer2007-01-171-2/+2
| | | | Originally committed as revision 7574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid code duplicationMichael Niedermayer2007-01-171-3/+1
| | | | Originally committed as revision 7573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better to set things to NULL instead of random in case of out of memMichael Niedermayer2007-01-171-1/+1
| | | | Originally committed as revision 7572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify av_fifo_realloc()Michael Niedermayer2007-01-171-11/+7
| | | | Originally committed as revision 7571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove near duplicate functionMichael Niedermayer2007-01-171-15/+6
| | | | Originally committed as revision 7570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-171-8/+3
| | | | Originally committed as revision 7569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-01-171-5/+2
| | | | Originally committed as revision 7568 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
* Avoid branches in the loop and solve a gcc warningLuca Barbato2007-01-171-13/+19
| | | | Originally committed as revision 7566 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
* CosmeticsLuca Barbato2007-01-171-10/+17
| | | | Originally committed as revision 7564 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
* fix segfault with http://sam.zoy.org/zzuf/lol-ffplay.ogm andPanagiotis Issaris2007-01-171-0/+2
| | | | | | http://sam.zoy.org/zzuf/lol-ffplay.ogg Originally committed as revision 7561 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
* 10l (aes_crypt -> av_aes_crypt)Michael Niedermayer2007-01-172-5/+5
| | | | Originally committed as revision 7559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set data_size to 0 so that in case we return without setting it nothing ↵Michael Niedermayer2007-01-161-0/+2
| | | | | | funny can happen Originally committed as revision 7558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update swf regression checksumMåns Rullgård2007-01-161-1/+1
| | | | Originally committed as revision 7557 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