summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Mention that metadata tags are (unvalidated) UTF-8.Anton Khirnov2010-02-24
| | | | | | Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace mvd>2 + mvd>32 by MIN((mvd+28)*17>>9, 2)Michael Niedermayer2010-02-24
| | | | | | | | same speed as far as i can meassure but it might have fewer branches on some archs. Idea from x264 / jason Originally committed as revision 22027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clear freed pointer in ffplay.c.Ramiro Polla2010-02-24
| | | | | | Fixes a crash when audio stream is cycled twice. Originally committed as revision 22026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace ad-hoc fill rectangle by fill_rectangle().Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_msmpeg4_decode_init() calls ff_h263_decode_init() which callsKostya Shishkov2010-02-24
| | | | | | | | MPV_common_init(), so calling both is redundant and leads to memory leaks in WMV3/VC-1 decoder. Thus use only the first function in WMV3/VC-1 decoder initialization. Originally committed as revision 22024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* it is not necessary to display the decoder name, as av_log() automatically ↵Peter Ross2010-02-24
| | | | | | prints the context Originally committed as revision 22023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* low-complexity Bink file seekingPeter Ross2010-02-24
| | | | Originally committed as revision 22022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set AVINDEX_KEYFRAME correctly for binkPeter Ross2010-02-24
| | | | Originally committed as revision 22021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly increment continuity_counter in PCR packets.Yann Coupin2010-02-24
| | | | | | Patch by Yann Coupin, yann.coupin+ffmpeg gmail Originally committed as revision 22020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asfdec: skip byte array tags.Benoit Fouet2010-02-24
| | | | | | Patch from Anton Khirnov wyskas gmail Originally committed as revision 22019 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asfdec: add a debug message about skipped tags.Benoit Fouet2010-02-24
| | | | | | Patch from Anton Khirnov wyskas gmail Originally committed as revision 22018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asfdec: fix a memleak.Benoit Fouet2010-02-24
| | | | | | Patch from Anton Khirnov wyskas gmail Originally committed as revision 22017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asfdec: only unicode tags must have even length.Benoit Fouet2010-02-24
| | | | | | Patch from: Anton Khirnov wyskas gmail Originally committed as revision 22016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce metadata conversion table for NUT muxer and demuxer.Anton Khirnov2010-02-24
| | | | | | | Patch by Anton Khirnov (wyskas, do no evil mail) Thread "[PATCH] nut metadata conversion table" Originally committed as revision 22015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFprobe: take only one input file.Ramiro Polla2010-02-24
| | | | Originally committed as revision 22014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace /2 by faster >>1 as the mvd values are now all positive.Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable. Seems i forgot to commit this.Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Attempt to fix issue1728 and regression of issue203Michael Niedermayer2010-02-23
| | | | Originally committed as revision 22011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set ist->pts to something that isnt guranteed to entangle itself with stream ↵Michael Niedermayer2010-02-23
| | | | | | copying b frames. Originally committed as revision 22010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -Wmissing-prototypes to CFLAGS if available.Diego Biurrun2010-02-23
| | | | Originally committed as revision 22009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also favor streams with more packets in ffplay.Michael Niedermayer2010-02-23
| | | | Originally committed as revision 22008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dont modify wanted_stream.Michael Niedermayer2010-02-23
| | | | Originally committed as revision 22007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace wanted_*_stream by wanted_stream[CODEC_TYPE]Michael Niedermayer2010-02-23
| | | | Originally committed as revision 22006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp_parser: Fix memleak.Jai Menon2010-02-23
| | | | | | | | ff_combine_frame() is called, which allocates ParseContext->buffer if needed, so ff_parse_close() must be called to free it. Patch by jai. Originally committed as revision 22005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: support MJPG compressed streams.Nash Tsai2010-02-23
| | | | | | Patch by Nash Tsai <nash dot tsai at gmail dot com> Originally committed as revision 22004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder buffer debug. Also print out if slice was buffered.Ramiro Polla2010-02-23
| | | | Originally committed as revision 30722 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace *_index by st_index[codec_type].Michael Niedermayer2010-02-23
| | | | Originally committed as revision 22003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Favor streams with more packets if the user did not specify what she wants.Michael Niedermayer2010-02-23
| | | | | | Fixes issue1156 Originally committed as revision 22002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Count all frames with codec_info_nb_frames not just ones with non zeroMichael Niedermayer2010-02-23
| | | | | | duration. I hope this breaks nothing. Its needed for my fix of issue1156 Originally committed as revision 22001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: break all Makefile lines at 80 columns or lessDaniel Verkamp2010-02-23
| | | | Originally committed as revision 22000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Redesign opt_programid code.Michael Niedermayer2010-02-23
| | | | | | | Its now possible to also select programs per input file and there is less code duplication. Originally committed as revision 21999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put codec_info_nb_frames back in AVStream and print its value.Michael Niedermayer2010-02-23
| | | | | | | This way streams with no or very few frames can be avoided during auto selection Originally committed as revision 21998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify non constness of src in av_fifo_generic_write()Michael Niedermayer2010-02-23
| | | | Originally committed as revision 21997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set video stream duration for Bink demuxerPeter Ross2010-02-23
| | | | Originally committed as revision 21996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentMartin Storsjö2010-02-23
| | | | Originally committed as revision 21995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink audio pts starts at 0, not reported_sizePeter Ross2010-02-23
| | | | Originally committed as revision 21994 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use reported_size to truncate final Bink Audio framePeter Ross2010-02-23
| | | | Originally committed as revision 21993 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix iff demuxer dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix vc1 parser dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix h264 parser dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mpeg4video parser dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wmv2 encoder dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix gif encoder dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix snow encoder dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix svq1 encoder dependenciesDaniel Verkamp2010-02-23
| | | | Originally committed as revision 21984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l trocadero: Indeo 5 decoder did not free custom VLCs for macroblock andKostya Shishkov2010-02-23
| | | | | | block decoding at exit, so prevent that memory leak now. Originally committed as revision 21983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode alpha plane in Bink videoKostya Shishkov2010-02-23
| | | | Originally committed as revision 21982 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2010-02-23
| | | | Originally committed as revision 21981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move plane decoding code into separate function in Bink decoderKostya Shishkov2010-02-23
| | | | Originally committed as revision 21980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink video decoder now can use extradata to detect alpha plane presenceKostya Shishkov2010-02-23
| | | | Originally committed as revision 21979 to svn://svn.ffmpeg.org/ffmpeg/trunk