aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * cabac: use struct+offset instead of memory operand in BRANCHLESS_GET_CABAC().Ronald S. Bultje2012-03-282-20/+22
| |
| * h264: add overread protection to get_cabac_bypass_sign_x86().Ronald S. Bultje2012-03-281-3/+5
| |
| * h264: reindent get_cabac_bypass_sign_x86().Ronald S. Bultje2012-03-281-22/+22
| |
| * h264: use struct offsets in get_cabac_bypass_sign_x86().Ronald S. Bultje2012-03-281-8/+11
| |
| * h264: fix overreads in cabac reader.Ronald S. Bultje2012-03-281-2/+4
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
| * wmall: fix seeking.Ronald S. Bultje2012-03-281-0/+13
| |
| * lagarith: fix buffer overreads.Ronald S. Bultje2012-03-282-25/+54
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
| * dvdec: drop unnecessary dv_tablegen.h #includeDiego Biurrun2012-03-281-1/+0
| | | | | | | | | | dvdec.c uses nothing from dv_tablegen.h. As a welcome side-effect, this fixes compilation of that file with hardcoded tables enabled.
| * build: fix doc generation errors in parallel buildsMans Rullgard2012-03-281-1/+1
| | | | | | | | | | | | | | | | | | | | The $(dir) function used to construct OBJDIRS includes a trailing slash in the names returned, which GNU make 3.82 does not match to the slash-less 'doc' in the documentation dependencies, causing parallel build to fail. Adding a slash fixes this and still works with make 3.81. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * Replace memset(0) by zero initializations.Diego Biurrun2012-03-2839-144/+66
| | | | | | | | Also remove one pointless zero initialization in rangecoder.c.
| * faandct: Remove FAAN_POSTSCALE define and related code.Diego Biurrun2012-03-284-50/+22
| | | | | | | | It is not a user-accessible option and unlikely to ever be changed.
| * dvenc: print allowed profiles if the video doesn't conform to any of them.Anton Khirnov2012-03-283-2/+21
| |
| * avcodec_encode_{audio,video}: only reallocate output packet when it has ↵Anton Khirnov2012-03-281-2/+2
| | | | | | | | | | | | | | non-zero size. Otherwise realloc would free it, which would result in double free later.
| * FATE: add a test for vp8 with changing frame size.Anton Khirnov2012-03-282-0/+35
| |
| * fate: add kgv1 fate test.Ronald S. Bultje2012-03-272-0/+317
| | | | | | | | Tested to be bit-exact across x86-64, x86-32 and ppc.
| * oggdec: calculate correct timestamps in Ogg/FLACJustin Ruggles2012-03-271-0/+1
| | | | | | | | | | We need to parse the individual packet durations when there is more than one packet in a page.
* | doc/ffmpeg: update and extend documentation for -copytbStefano Sabatini2012-03-282-3/+25
| | | | | | | | Address trac ticket #1120.
* | ass: fix aspect ratio computation.Nicolas George2012-03-283-16/+16
| |
* | indeo4: Dont leave tables in random state on errors.Michael Niedermayer2012-03-281-2/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo4: apply correction to eob/esc indexes tooMichael Niedermayer2012-03-281-0/+8
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo4: Check for mismatching scan tablesMichael Niedermayer2012-03-281-0/+4
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: Fix global array overread.Michael Niedermayer2012-03-281-2/+2
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | apedec: fix global array overreadMichael Niedermayer2012-03-281-1/+1
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | apedec: check bits <= 32Michael Niedermayer2012-03-281-1/+4
| | | | | | | | | | | | | | Fixes FPE Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | tm2dec: check total_frames and extradata_size.Michael Niedermayer2012-03-281-1/+4
| | | | | | | | | | | | | | Fixes overread Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix compilation with hardcoded tables.Carl Eugen Hoyos2012-03-281-0/+1
| |
* | tm2: Fix overread of token array.Michael Niedermayer2012-03-281-1/+6
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lzw(gif): Fix overreadMichael Niedermayer2012-03-281-1/+1
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lagarith: Fix various issues that lead to out of array reads.Michael Niedermayer2012-03-281-9/+27
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lagarith: fix flipped return valueMichael Niedermayer2012-03-281-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lagarithrac: fix length used in ff_lag_rac_init()Michael Niedermayer2012-03-281-2/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-03-288-401/+448
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: westwood_vqa: fix SND0 chunk handling westwood_vqa: set video stream duration raw: forward avpicture_fill() error code in raw_decode(). build: Do not explicitly add the doc directory to the OBJDIRS list. dv: Split off DV video decoder into its own file. build: fix RALF decoder standalone compilation, which depends on Golomb code configure: Drop stray duplicate entry for --disable-fft from help output. Conflicts: libavcodec/dv.c libavcodec/rawdec.c libavformat/westwood_vqa.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * westwood_vqa: fix SND0 chunk handlingPaul B Mahol2012-03-272-64/+72
| | | | | | | | | | | | | | | | Version from vqa header does not dictate which sound chunks may appear in file. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * westwood_vqa: set video stream durationPaul B Mahol2012-03-271-0/+2
| | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
| * raw: forward avpicture_fill() error code in raw_decode().Ronald S. Bultje2012-03-271-1/+4
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
| * build: Do not explicitly add the doc directory to the OBJDIRS list.Diego Biurrun2012-03-271-1/+0
| | | | | | | | | | | | Now that a documentation generator is built in the doc directory, this is no longer necessary. Fixes the Make warning: Makefile:188: target `doc' given more than once in the same rule.
| * dv: Split off DV video decoder into its own file.Diego Biurrun2012-03-275-397/+442
| |
| * build: fix RALF decoder standalone compilation, which depends on Golomb codeDiego Biurrun2012-03-271-0/+1
| |
| * configure: Drop stray duplicate entry for --disable-fft from help output.Diego Biurrun2012-03-271-1/+0
| |
* | h263dec: Restore w/h values to a consistent state if a change is rejected.Michael Niedermayer2012-03-281-0/+2
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | id3v2: support JPEG APIC with incorrect (image/jpg) MIME typePiotr Bandurski2012-03-281-0/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Support FLIC in AVI.Paul B Mahol2012-03-282-5/+15
| | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'cus/stable'Michael Niedermayer2012-03-281-1/+2
|\ \ | | | | | | | | | | | | | | | | | | * cus/stable: ffplay: pause rdft column when ffplay is paused Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | ffplay: pause rdft column when ffplay is pausedMichael Niedermayer2012-03-271-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Marton Balint <cus@passwd.hu>
* | | XBM decoderPaul B Mahol2012-03-275-3/+134
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | j2kdec: move ff_j2k_init_tier1_luts() to j2kdec_init()Paul B Mahol2012-03-271-2/+3
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Clarify the use of the interl=1|-1 option of the scale filter.Tim Nicholson2012-03-271-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is not entirely clear that whilst for width and height only an expression needs to be provided, for interlace the option must also be given. It is also unclear that the default is non interlaced aware scaling. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | alsdec: check return values.Thilo Borgmann2012-03-271-3/+3
|/ /
* | h264: dont mess with chroma planes for grayscale h264.Michael Niedermayer2012-03-274-4/+8
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | alsdec: make sure no invalid opt_order stays in the context.Michael Niedermayer2012-03-271-0/+1
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>