summaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* kgv1dec: remove unused avctx from codec private contextPaul B Mahol2013-08-301-2/+0
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* kgv1dec: make decoder independent of sizeof(AVFrame)Paul B Mahol2013-08-301-8/+13
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* wnv1: remove unused avctx from codec private contextPaul B Mahol2013-08-301-4/+0
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/pngdec: fix last_row_size typeMichael Niedermayer2013-08-301-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/pngdec: Fix padded alloc code with threadsMichael Niedermayer2013-08-301-2/+5
| | | | | | | | Fixes Ticket2903 Fixes out of array write no releases should be affected by this Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Reinstate proper FFmpeg license for all files.Thilo Borgmann2013-08-3082-328/+328
|
* Fix compilation with --disable-mmx.Carl Eugen Hoyos2013-08-301-1/+1
|
* avcodec/mpegvideo: reduce log level for messages about allocating frames.Michael Niedermayer2013-08-301-2/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* ffv1dec: Check bits_per_raw_sample and colorspace for equality in ver 0/1 ↵Michael Niedermayer2013-08-301-7/+8
| | | | | | headers Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit 'e998b56362c711701b3daa34e7b956e7126336f4'Michael Niedermayer2013-08-307-197/+197
|\ | | | | | | | | | | | | * commit 'e998b56362c711701b3daa34e7b956e7126336f4': x86: avcodec: Consistently structure CPU extension initialization Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: avcodec: Consistently structure CPU extension initializationDiego Biurrun2013-08-297-197/+197
| |
* | avcodec/x86/lpc: Fix cpu flag checks so they workMichael Niedermayer2013-08-301-1/+1
| | | | | | | | | | | | Broken by 6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/x86/vp8dsp: Fix cpu flag checks so they workMichael Niedermayer2013-08-301-1/+1
| | | | | | | | | | | | Broken by 6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0'Michael Niedermayer2013-08-3012-48/+54
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | * commit '6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0': x86: avcodec: Use convenience macros to check for CPU flags Conflicts: libavcodec/x86/dsputil_init.c libavcodec/x86/hpeldsp_init.c libavcodec/x86/motion_est.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: avcodec: Use convenience macros to check for CPU flagsDiego Biurrun2013-08-2912-48/+54
| |
* | Merge commit 'a6b650118543e1580e872896d8976042b7c32d01'Michael Niedermayer2013-08-307-28/+35
|\ \ | |/ | | | | | | | | | | * commit 'a6b650118543e1580e872896d8976042b7c32d01': ppc: cosmetics: Consistently format CPU flag detection invocations Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * ppc: cosmetics: Consistently format CPU flag detection invocationsDiego Biurrun2013-08-297-28/+35
| |
* | ffv1dec: check that global parameters dont change in version 0/1Michael Niedermayer2013-08-301-4/+21
| | | | | | | | | | | | | | | | | | Such changes are not allowed nor supported Fixes Ticket2906 Found-by: ami_stuff Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/ffv1dec: check global header versionMichael Niedermayer2013-08-301-0/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/mpegvideo: Dont incorrectly warn about missing keyframesMichael Niedermayer2013-08-301-1/+4
| | | | | | | | | | | | | | | | Files starting with B frames in presentation order generated the "no keyframe" warning before this change. Based on patch by: Robert Krüger <krueger@lesspain.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | snow: Check av_frame_alloc() failuresMichael Niedermayer2013-08-292-0/+6
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/snow: gray supportMichael Niedermayer2013-08-294-46/+77
| | | | | | | | | | | | Fixes Ticket839 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/utils: support non edge emu for grayscaleMichael Niedermayer2013-08-291-1/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libavcodec/snow: change AVFrame to pointers to AVFrame for ABI stabilityMichael Niedermayer2013-08-294-86/+87
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/snowenc: remove now unneeded include <assert.h>Michael Niedermayer2013-08-291-3/+0
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/snowenc: convert all asserts to av_assertsMichael Niedermayer2013-08-291-9/+9
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | snowenc: remove disabled QUANTIZE2 codeMichael Niedermayer2013-08-291-123/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-08-295-17/+24
|\ \ | |/ | | | | | | | | | | * qatar/master: cosmetics: Place arch initialization calls in alphabetical order Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * cosmetics: Place arch initialization calls in alphabetical orderDiego Biurrun2013-08-295-17/+24
| |
* | Merge commit 'f0389eb777b1ab4291329d4f709098cdfa7384dc'Michael Niedermayer2013-08-294-63/+85
|\ \ | |/ | | | | | | | | | | * commit 'f0389eb777b1ab4291329d4f709098cdfa7384dc': arm: fmtconvert: Split armv6 fmtconvert code off from vfp code Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * arm: fmtconvert: Split armv6 fmtconvert code off from vfp codeDiego Biurrun2013-08-294-63/+85
| |
* | Merge commit 'bd549cbaacd33dfb7be81d0619c9b107b8a85be7'Michael Niedermayer2013-08-292-24/+22
|\ \ | |/ | | | | | | | | | | * commit 'bd549cbaacd33dfb7be81d0619c9b107b8a85be7': arm: dcadsp: Move synth filter initialization to dcadsp file Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * arm: dcadsp: Move synth filter initialization to dcadsp fileDiego Biurrun2013-08-292-24/+22
| |
* | Merge commit '6af2c351b3ae61e4478950ffddd0dfcad06188b8'Michael Niedermayer2013-08-293-0/+12
|\ \ | |/ | | | | | | | | | | * commit '6af2c351b3ae61e4478950ffddd0dfcad06188b8': ppc: Add missing AltiVec cpuflag detection invocations Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * ppc: Add missing AltiVec cpuflag detection invocationsDiego Biurrun2013-08-293-0/+12
| |
* | Merge commit 'de81b6ae4f38273ff27020f494cc46539110d34b'Michael Niedermayer2013-08-291-2/+0
|\ \ | |/ | | | | | | | | | | * commit 'de81b6ae4f38273ff27020f494cc46539110d34b': ppc: fdct: Remove vim editor settings comment Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * ppc: fdct: Remove vim editor settings commentDiego Biurrun2013-08-281-2/+0
| |
* | Merge commit '70dd8892bf00923af838756dfbb356a9b1e4e40d'Michael Niedermayer2013-08-291-11/+10
|\ \ | |/ | | | | | | | | | | * commit '70dd8892bf00923af838756dfbb356a9b1e4e40d': mpegvideo: Replace arch initialization ifdeffery by standard conditionals Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mpegvideo: Replace arch initialization ifdeffery by standard conditionalsDiego Biurrun2013-08-281-11/+10
| |
* | Merge commit 'cd529172377229f2e86987869ccc08f426bfe114'Michael Niedermayer2013-08-291-4/+7
|\ \ | |/ | | | | | | | | | | * commit 'cd529172377229f2e86987869ccc08f426bfe114': x86: rv40dsp: Move inline assembly optimizations out of YASM init section Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: rv40dsp: Move inline assembly optimizations out of YASM init sectionDiego Biurrun2013-08-281-4/+7
| |
* | Merge commit 'a64f6a04ac5773aeff2003897455dadb9609f18b'Michael Niedermayer2013-08-294-9/+8
|\ \ | |/ | | | | | | | | | | | | | | | | * commit 'a64f6a04ac5773aeff2003897455dadb9609f18b': dsputil: x86: Hide arch-specific initialization details Conflicts: libavcodec/x86/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * dsputil: x86: Hide arch-specific initialization detailsDiego Biurrun2013-08-284-9/+8
| | | | | | | | Also give consistent names to init functions.
* | Merge commit 'f61bece684d9685b07895508e6c1c733b5564ccf'Michael Niedermayer2013-08-291-3/+2
|\ \ | |/ | | | | | | | | | | | | | | | | * commit 'f61bece684d9685b07895508e6c1c733b5564ccf': ppc: Add and use convenience macro to check for AltiVec availability Conflicts: libavcodec/ppc/dsputil_ppc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * ppc: Add and use convenience macro to check for AltiVec availabilityDiego Biurrun2013-08-281-3/+2
| |
| * apedec: do not buffer decoded samples over AVPacketsRafaël Carré2013-08-281-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only consume an AVPacket when all the samples have been read. When the rate of samples output is limited (by the default value of max_samples), consuming the first packet immediately will cause timing problems: - The first packet with PTS 0 will output 4608 samples and be consumed entirely - The second packet with PTS 64 will output the remaining samples (typically, a lot, that's why max_samples exist) until the decoded samples of the first packet have been exhausted, at which point the samples of the second packet will be decoded and output when av_decode_frame is called with the next packet). That means there's a PTS jump since the first packet is 'decoded' immediately, which can be seen with avplay or mplayer: the timing jumps immediately to 6.2s (which is the size of a packet). Sample: http://streams.videolan.org/issues/6348/Goldwave-MAClib.ape Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* | truemotion2: check return value of av_malloc(z)Paul B Mahol2013-08-291-0/+10
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | snowenc: Fix memleak of the ratecontrol related memoryMichael Niedermayer2013-08-281-0/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/snow: check for malloc* failuresMichael Niedermayer2013-08-281-3/+13
| | | | | | | | | | | | Also return and pass on error codes where needed for this Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | snowenc: check for memory allocation failuresMichael Niedermayer2013-08-281-0/+8
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
OpenPOWER on IntegriCloud