Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-04-24Remove useless assignment during initialization for some decodersKostya Shishkov
Originally committed as revision 18680 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24indentMichael Niedermayer
Originally committed as revision 18679 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Change return type of opt_loglevel() from void to int.Wolfram Gloger
Patch by Wolfram Gloger: wmglo (your at here) dent med uni (minus) muenchen de Originally committed as revision 18678 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24TrueMotion 2 uses its own YUV-like colourspace, so convert output to proper RGB.Reimar Döffinger
Patch by Reimar Döffinger <latinize($name) at (MN's favourite mail provider).de> Originally committed as revision 18677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24cosmetics: remove extra space indentationKostya Shishkov
Originally committed as revision 18676 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Merge decoding functions for all bitdepths in WavPack decoderKostya Shishkov
Originally committed as revision 18675 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Support >8bit per component YUV in FFV1.Michael Niedermayer
decoding becomes slower, encoding becomes faster, with gcc on duron. some inlining overrides like av_flatten are added to keep inlining similar to before. Originally committed as revision 18674 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Force speed irrelevant calls to get/put_symbol() to be noinline.Michael Niedermayer
We need to change decode_line to always_inline because gcc decided not to inline it anymore once we force some calls to get/put_symbol() to be non inlined and this decision of gcc would lead to a 10% overall speed loss. 100k smaller object file, no speed change Originally committed as revision 18673 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Optimize sign handling in get_symbol().Michael Niedermayer
Originally committed as revision 18672 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Don't loose bits_per_raw_sample when transcoding.Michael Niedermayer
Originally committed as revision 18671 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Make avcodec_thread_init() set the thread count, even in the case whenStefano Sabatini
threads support is not enabled. This should avoid the need for thread_count explicit setting in applications. Originally committed as revision 18670 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Make reset_ptr() void.Carl Eugen Hoyos
Originally committed as revision 29229 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-23avoid possibly uninitialized return valueIvo van Poorten
(found by clang static analyzer) Originally committed as revision 18669 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Handle WavPack INT32INFO chunks with nonzero post shiftKostya Shishkov
Originally committed as revision 18668 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Add functions for decoding >16 bits WavPack files.Kostya Shishkov
Based on patches by Laurent Aimar (fenrir >whirlpool< videolan >dit< org) Originally committed as revision 18667 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Shift 9-15 bit samples to use full 16-bit range.Laurent Aimar
Patch by Laurent Aimar <fenrir at VLCsite> Thread: [PATCH] Fixed wavpack 9-15 bits support Originally committed as revision 18666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Display dimensions should not affect the real size of coded frame, thus setKostya Shishkov
only avctx->{width,height} and don't touch coded_{width,height} when parsing them. This fixes the case when coded and display dimensions differ by more than one macroblock. Originally committed as revision 18665 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Remove 2 useless FFMIN().Michael Niedermayer
Originally committed as revision 18664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Remove apparently redundant code.Michael Niedermayer
Originally committed as revision 18663 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22NSV : Add TOC2 parsing and seeking support.Jai Menon
Originally committed as revision 18662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Remove redundant code, found by CSABenjamin Larsson
Originally committed as revision 18661 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22configure: support Blackfin CPU names with --cpuMåns Rullgård
Originally committed as revision 18660 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22It should be #if, not #ifdefAndreas Öman
Originally committed as revision 18659 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Switch VLC tables in WMV3/VC-1 decoder to new static init methodKostya Shishkov
Originally committed as revision 18658 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Require 4 instead of 3 frames for detecting mp3,Michael Niedermayer
fixes misdetection of mpegps_mp3_unrecognized_format.mpg (issue997) Originally committed as revision 18657 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Fix 10l typo (usage of PIX_FMT_NE()).Michael Niedermayer
Should fix FATE, i forgot to commit this. Originally committed as revision 18656 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Update safety check as the maximum pixel size is no longer 4.Michael Niedermayer
New max size is 16bit * 4 samples (RGBA). Originally committed as revision 18655 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Support reading packed YUV422 10bit samples from Sveriges Television AB (SVT)Michael Niedermayer
which have AFAIK been created for the jvt: ftp://vqeg.its.bldrdoc.gov/HDTV/SVT_exports/SVT_YUV10_Exports_/NewMobCal_YUV10_720p5994_/ I have called the format v210x due to its similarity to v210, note though I have not confirmed that v210x is different from actual v210 samples it just is different from the description of v210 I am aware of. Originally committed as revision 18654 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Make read_line() do not depend on put_bits.h and speed up it.Stefano Sabatini
Originally committed as revision 18653 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Add raw MLP muxer.Ramiro Polla
Originally committed as revision 18652 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22mlpdec: Don't overallocate buffers.Ramiro Polla
Now that max channels and primitive matrices are properly validated, there is no need to be paranoid that random data will be overwritten. As a bonus this makes matrix_coeff 16-byte aligned between matrices. Originally committed as revision 18651 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22mlpdec: Validate num_primitive_matrices.Ramiro Polla
Originally committed as revision 18650 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22mlpdec: Validate max_channel and max_matrix_channel.Ramiro Polla
Originally committed as revision 18649 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22mlpdec: Restart header sync must be 0x31ea for MLP.Ramiro Polla
Originally committed as revision 18648 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-22Add missing header inclusion guard.Stefano Sabatini
Originally committed as revision 18647 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Implement a write_line() function.Stefano Sabatini
Originally committed as revision 18646 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Remove consume_whitespace() and replace it with direct calls toStefano Sabatini
strspn(). Originally committed as revision 18645 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Read extended channel configuration when extended AOT is BSAC.Jai Menon
Originally committed as revision 18644 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Make VLC tables in DCA decoder use INIT_VLC_USE_NEW_STATICKostya Shishkov
Originally committed as revision 18643 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21100l: VLC table array should not be constKostya Shishkov
Originally committed as revision 18642 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Remove redundant assignment. err is assigned in every switch case anyway. IssueRobert Swain
found by CSA. Originally committed as revision 18641 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Fix a possibly exploitable buffer overflow.Michael Niedermayer
Originally committed as revision 18640 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Set flag after VC-1 VLCs are initialized to avoid race conditionKostya Shishkov
Originally committed as revision 18639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Remove some useless assignments and variables found by ClangKostya Shishkov
Originally committed as revision 18638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Make RV3/4 VLC tables use new static initialization methodKostya Shishkov
Originally committed as revision 18637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Planar 16bit 420 422 444 YUV support (output is only supported in someMichael Niedermayer
unscaled convertions). This, like gray16 converts down to 8bit, which is a big FIXME & patch welcome, we should preserve more bits. Originally committed as revision 29217 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Add 420,422 and 444 planar 16bit per component pix formats.Michael Niedermayer
Originally committed as revision 18636 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Merge gray->gray converters into planarCopy(), this should also make ↵Michael Niedermayer
planarCopy() useable for other 16bit formats once we support them. Originally committed as revision 29216 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Add macro to check for 16bit per sample.Michael Niedermayer
Originally committed as revision 29215 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Make sure src/dst are NULL when they arent used, some code uses this toMichael Niedermayer
simpify checks. Originally committed as revision 29214 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale