summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 3rd and hopefully last 100l fix.Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix doxy and assert().Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to fix 100l compilation failure on some systems.Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael Niedermayer2010-02-24
| | | | | | | for high resolution videos. about 20cycles faster per MB for cathederal. Originally committed as revision 22038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AV_COPY16() & AV_ZERO16()Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend fill_rectangle() support for 16bitMichael Niedermayer2010-02-24
| | | | Originally committed as revision 22036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate mvd without abs()Michael Niedermayer2010-02-24
| | | | | | same speed (ask gcc why, i dont know) Originally committed as revision 22035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read ASF metadata as proper UTF-16 and spit it out as proper UTF-8 in ourAnton Khirnov2010-02-24
| | | | | | | | metadata system. Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't add WM prefixes to all written ASF tags.Anton Khirnov2010-02-24
| | | | | | Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* switch back to (amvd>2)+(amvd>32), its 5 cpu cycles faster now.Michael Niedermayer2010-02-24
| | | | Originally committed as revision 22032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Eliminate put_str16().Anton Khirnov2010-02-24
| | | | | | Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add PUT_UTF16() macro.Anton Khirnov2010-02-24
| | | | | | Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize common code from the top of decode_cabac_mb_mvd()Michael Niedermayer2010-02-24
| | | | | | 10-15 cpu cycles faster. Originally committed as revision 22029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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