aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | flicvideo: input buffer pointer checks.Michael Niedermayer2011-12-151-0/+25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | flicvideo: fix overread.Michael Niedermayer2011-12-151-2/+4
| | | | | | | | | | | | Bug Found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | aacsbr: Fix memory corruption.Michael Niedermayer2011-12-151-1/+1
| | | | | | | | | | | | | | Fixes Ticket760 and Ticket761 Bug Found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: check chroma_format_idc range.Michael Niedermayer2011-12-151-0/+4
| | | | | | | | | | | | | | Fixes Ticket758 Bug found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo3: check return values of allocate_frame_buffers()Michael Niedermayer2011-12-151-4/+3
| | | | | | | | | | | | Bug Found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mtv: Fix FPE with 0 dimensions.Michael Niedermayer2011-12-151-2/+12
| | | | | | | | | | | | | | Fixes Ticket755 Bug Found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Revert "mpegvideo: remove abort() in ff_find_unused_picture()"Michael Niedermayer2011-12-151-1/+15
| | | | | | | | | | | | | | | | | | | | This reverts commit 4f820131fa9fbb0a64d7cc469fa471905fc91944. It is better to abort() than to have remotly exploitable arbitrary code execution bugs. Even more so that this abort has never been triggered by any input people threw at it. If after more extensive testing its removial is found safe we can remove the abort() later.
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-12-1435-473/+718
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (23 commits) applehttp: Properly clean up if unable to probe a segment applehttp: Avoid reading uninitialized memory fate: Replace misleading "aac" in the name of an ADTS test with "adts". fate: Drop pointless "-an" from pictor test command. fate: split off image codec FATE tests into their own file fate: split off WMA codec FATE tests into their own file fate: split off lossless video and audio FATE tests into their own files fate: split off qtrle codec FATE tests into their own file fate: split off Ut Video codec FATE tests into their own file fate: split off screen codec FATE tests into their own file fate: split off Real Inc. codec FATE tests into their own file fate: split off AC-3 codec FATE tests into their own file mpegvideo: remove abort() in ff_find_unused_picture() rv40: NEON optimised loop filter strength selection rv40: rearrange loop filter functions configure: cosmetics: sort some lists where appropriate swscale_mmx: drop no longer required parameters from VSCALEX macros swscale: Mark yuv2planeX_8_mmx as MMX2; it contains MMX2 instructions. build: conditionally compile x86 H.264 chroma optimizations v410 encoder and decoder ... Conflicts: Changelog configure doc/developer.texi doc/general.texi libavcodec/arm/asm.S libavcodec/avcodec.h libavcodec/v410dec.c libavcodec/v410enc.c libavcodec/version.h libavcodec/x86/Makefile libavcodec/x86/dsputil_mmx.c libswscale/x86/swscale_mmx.c tests/Makefile tests/fate2.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * applehttp: Properly clean up if unable to probe a segmentMartin Storsjö2011-12-141-1/+8
| | | | | | | | | | | | | | | | | | This avoids a segfault if the probe function wasn't able to determine the format. The bug was found by Panagiotis H.M. Issaris. Signed-off-by: Martin Storsjö <martin@martin.st>
| * applehttp: Avoid reading uninitialized memoryMartin Storsjö2011-12-141-1/+1
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * fate: Replace misleading "aac" in the name of an ADTS test with "adts".Diego Biurrun2011-12-142-2/+2
| |
| * fate: Drop pointless "-an" from pictor test command.Diego Biurrun2011-12-141-1/+1
| |
| * fate: split off image codec FATE tests into their own fileDiego Biurrun2011-12-144-25/+33
| |
| * fate: split off WMA codec FATE tests into their own fileDiego Biurrun2011-12-143-28/+28
| |
| * fate: split off lossless video and audio FATE tests into their own filesDiego Biurrun2011-12-145-25/+36
| |
| * fate: split off qtrle codec FATE tests into their own fileDiego Biurrun2011-12-143-14/+21
| |
| * fate: split off Ut Video codec FATE tests into their own fileDiego Biurrun2011-12-143-24/+24
| |
| * fate: split off screen codec FATE tests into their own fileDiego Biurrun2011-12-143-30/+45
| |
| * fate: split off Real Inc. codec FATE tests into their own fileDiego Biurrun2011-12-144-38/+40
| |
| * fate: split off AC-3 codec FATE tests into their own fileDiego Biurrun2011-12-143-30/+30
| |
| * mpegvideo: remove abort() in ff_find_unused_picture()Andrey Utkin2011-12-145-15/+19
| | | | | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
| * rv40: NEON optimised loop filter strength selectionMans Rullgard2011-12-143-0/+102
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * rv40: rearrange loop filter functionsMans Rullgard2011-12-143-146/+240
| | | | | | | | | | | | | | This splits the loop filter functions into smaller, more SIMD-friendly functions. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * configure: cosmetics: sort some lists where appropriateDiego Biurrun2011-12-141-38/+40
| |
| * swscale_mmx: drop no longer required parameters from VSCALEX macrosDiego Biurrun2011-12-141-17/+17
| |
| * swscale: Mark yuv2planeX_8_mmx as MMX2; it contains MMX2 instructions.Diego Biurrun2011-12-142-3/+5
| |
| * build: conditionally compile x86 H.264 chroma optimizationsDiego Biurrun2011-12-143-17/+23
| |
| * v410 encoder and decoderDerek Buitenhuis2011-12-1310-2/+222
| | | | | | | | | | | | | | | | v410 is a packed 10-bit 4:4:4 YCbCr format used in QuickTime. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * doc: make developer.texi point to correct fate docDerek Buitenhuis2011-12-131-1/+1
| | | | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * build: rename subdir.mak ---> library.makDiego Biurrun2011-12-132-1/+1
| |
| * configure: do not manually enable protocolsDiego Biurrun2011-12-131-1/+0
| | | | | | | | | | Protocols are handled just like all other components groups such as muxers and are automatically enabled.
* | dnxhdenc: remove unused variable from contextJean First2011-12-141-2/+0
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ljpeg: Check that lowres is 0 as lowres is not possible with ljpeg.Michael Niedermayer2011-12-141-0/+5
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'cus/stable'Michael Niedermayer2011-12-142-6/+18
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | * cus/stable: ffplay: clear pkt_temp when pkt is freed. ffplay: Fix got_frame type. ffplay: add 10 minute seek support to ffplay ffplay: force setting video mode on fullscreen toggle Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | ffplay: clear pkt_temp when pkt is freed.Michael Niedermayer2011-12-141-0/+1
| | | | | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Marton Balint <cus@passwd.hu>
| * | ffplay: Fix got_frame type.Michael Niedermayer2011-12-141-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Marton Balint <cus@passwd.hu>
| * | ffplay: add 10 minute seek support to ffplayPanagiotis H.M. Issaris2011-12-142-0/+10
| | | | | | | | | | | | Signed-off-by: Marton Balint <cus@passwd.hu>
| * | ffplay: force setting video mode on fullscreen toggleMarton Balint2011-12-141-5/+5
| | | | | | | | | | | | | | | | | | Fixes ticket #736. Based on the patch by glangshaw. Signed-off-by: Marton Balint <cus@passwd.hu>
* | | 4xm: check if there are bits left in decode_i_block()Michael Niedermayer2011-12-141-0/+5
| | | | | | | | | | | | | | | | | | | | | Fixed Ticket753 Bug Found by: Diana Elena Muscalu Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | riff: Fix freeing of random value.Michael Niedermayer2011-12-141-2/+1
|/ / | | | | | | | | Fixes Ticket752 Bug-found-by: Diana Elena Muscalu
* | fate: split off map_channel tests.Clément Bœsch2011-12-143-12/+15
| | | | | | | | Also introduce a fate-mapchan rule for all of them.
* | Prevent segfault if iformat was not yet initialized.Panagiotis H.M. Issaris2011-12-141-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mpeg12enc: fix drop_frame_timecode valueMatthieu Bouron2011-12-141-0/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Cosmetics: Improve 'too short LIST' error message in wav.c.Carl Eugen Hoyos2011-12-141-1/+1
| |
* | Do not reject LIST tags in wav with size 4.Carl Eugen Hoyos2011-12-141-1/+1
| | | | | | | | Fixes ticket #745.
* | Detect 'yuv2' as rawvideo also in avi.Carl Eugen Hoyos2011-12-141-0/+1
| |
* | cosmetic: consistent spacing over the Changelog.Clément Bœsch2011-12-141-1/+2
| |
* | fate: fix v410 on big endianMichael Niedermayer2011-12-141-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | fate: Add FATE tests for v410 encoder and decoderDerek Buitenhuis2011-12-143-0/+9
| | | | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | v410 encoder and decoderDerek Buitenhuis2011-12-1411-2/+222
| | | | | | | | | | | | | | | | v410 is a packed 10-bit 4:4:4 YCbCr format used in QuickTime. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>