aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | indeo3: add parens around some macro argumentsMans Rullgard2012-04-161-2/+2
| | | | | | | | | | | | | | | | | | | | | Without these, the expansion contains things like --1 with some compilers resulting in build errors. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * | h264: use proper PROLOGUE statement for a function using 8 registers.Ronald S. Bultje2012-04-161-4/+4
| | | | | | | | | | | | Fixes crashes when using biweight on win64.
| * | doc: Update sample Vim config with suitable (function) indentation settings.Diego Biurrun2012-04-161-0/+2
| | |
| * | dv: Merge dvquant.h into dvdata.c where all other DV tables reside.Diego Biurrun2012-04-165-136/+112
| | |
| * | dv: Move static tables only used in one place to where they are used.Diego Biurrun2012-04-163-32/+33
| | |
| * | graphparser: set next to NULL on an entry extracted from inputs listAnton Khirnov2012-04-161-2/+3
| | | | | | | | | | | | Prevents it from referring to the rest of the list.
| * | doc/filters: update documentation.Anton Khirnov2012-04-151-10/+8
| | |
| * | avconv: flush decoders immediately after an EOF.Anton Khirnov2012-04-151-1/+8
| | | | | | | | | | | | Prevents extensive buffering when overlaying a single picture.
| * | avconv: send EOF to vsrc_buffer.Anton Khirnov2012-04-151-0/+3
| | |
| * | avconv: reindent.Anton Khirnov2012-04-151-50/+50
| | |
* | | fate: libavutil tests do not require SAMPLES.Nicolas George2012-04-172-1/+1
| | |
* | | parseutils: include errors in test output.Nicolas George2012-04-171-0/+2
| | |
* | | ffmpeg: make max frames work again, after mergeMichael Niedermayer2012-04-172-2/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | vf_thumbnail: colorspace changed from yv12 to rgbMichael Niedermayer2012-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | Not fully investigated but thumbnail supports rgb and not yv12 so this is better ... Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | fate: fix vp8 size change regressionMichael Niedermayer2012-04-171-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | vsrc_buffer: fix null ptr segfaultMichael Niedermayer2012-04-171-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | avfiltergraph: More advanced heuristic to select colorspace.Michael Niedermayer2012-04-171-7/+31
| | | | | | | | | | | | | | | | | | This fixes regressions caused by switching from ffmpegs system to avfilters. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | fate: gif: change checksum to bgr8 from rgb8 as thats what gets selected nowMichael Niedermayer2012-04-171-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | imgconvert: fix regression with fate-gif colorspaces.Michael Niedermayer2012-04-171-0/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | ffmpeg: fix regression with jpeg pix fmtsMichael Niedermayer2012-04-171-2/+10
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | ffmpeg: fix regression with pngMichael Niedermayer2012-04-171-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | ffmpeg: choose_pix_fmt: pass target fmt inMichael Niedermayer2012-04-171-8/+9
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Merge commit '3b266da3d35f3f7a61258b78384dfe920d875d29'Michael Niedermayer2012-04-1711-415/+924
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '3b266da3d35f3f7a61258b78384dfe920d875d29': avconv: add support for complex filtergraphs. avconv: make filtergraphs global. avconv: move filtered_frame from InputStream to OutputStream. avconv: don't set output width/height directly from input value. avconv: move resample_{width,height,pix_fmt} to InputStream. avconv: remove a useless variable from OutputStream. avconv: get output pixel format from lavfi. graphparser: fix the order in which unlabeled input links are returned. avconv: change {input,output}_{streams,files} into arrays of pointers. avconv: don't pass input/output streams to some functions. Conflicts: cmdutils.c cmdutils.h doc/ffmpeg.texi ffmpeg.c ffplay.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | avconv: add support for complex filtergraphs.Anton Khirnov2012-04-153-57/+467
| | |
| * | avconv: make filtergraphs global.Anton Khirnov2012-04-151-68/+169
| | | | | | | | | | | | | | | This is the first step towards supporting complex filtergraphs with more than one input and/or output.
| * | avconv: move filtered_frame from InputStream to OutputStream.Anton Khirnov2012-04-151-5/+5
| | | | | | | | | | | | It more properly belongs to output, not input.
| * | avconv: don't set output width/height directly from input value.Anton Khirnov2012-04-151-7/+1
| | | | | | | | | | | | | | | Always take it from lavfi. This way we don't need a clearly defined corresponding input stream.
| * | avconv: move resample_{width,height,pix_fmt} to InputStream.Anton Khirnov2012-04-151-22/+25
| | | | | | | | | | | | | | | This is a more proper place for them, since they store parameters of the input, not output, stream.
| * | avconv: remove a useless variable from OutputStream.Anton Khirnov2012-04-151-5/+3
| | |
| * | avconv: get output pixel format from lavfi.Anton Khirnov2012-04-155-56/+40
| | | | | | | | | | | | | | | | | | | | | This way we don't require a clearly defined corresponding input stream. The result for the xwd test changes because rgb24 is now chosen instead of bgra.
| * | graphparser: fix the order in which unlabeled input links are returned.Anton Khirnov2012-04-151-1/+1
| | |
| * | avconv: change {input,output}_{streams,files} into arrays of pointers.Anton Khirnov2012-04-151-126/+143
| | | | | | | | | | | | | | | | | | Right now, they are arrays of structs, reallocated when new streams/files are added. This makes storing pointers to those structs harder than necessary.
| * | avconv: don't pass input/output streams to some functions.Anton Khirnov2012-04-151-36/+25
| | | | | | | | | | | | They are globals, no point in pretending they are not.
* | | matroskadec: use av_grow_packet in merge_packets.Nicolas George2012-04-161-6/+4
| | | | | | | | | | | | | | | | | | | | | It ensures that the packet is properly padded and makes the code simpler. Fixes trac ticket #1223.
* | | mem.c: fix wrong comment.Reimar Döffinger2012-04-161-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | Overwriting the av_malloc etc. functions is not easily possible anymore, even for systems that support overriding symbols in shared libraries in principle. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* | | Respect -copyinkf for subtitles.Reimar Döffinger2012-04-161-0/+2
| | | | | | | | | | | | | | | | | | | | | Necessary to make it possible to copy teletext streams (trac issue #531). Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* | | Add skip_to_keyframe stream variable.Reimar Döffinger2012-04-163-2/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the matroskadec one with the same name. The advantage is not only easier reuse in other demuxers but also that we can make the decisions after the parser. This fixes seeking in files that mark the keyframes incorrectly, for example the file in track ticket #1003. The matroska variable is still kept to be able to complain about such broken files. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* | | svq3: check the watermark height.Michael Niedermayer2012-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | Fixes division by 0 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | diracdec: check lowdelay bytes.Michael Niedermayer2012-04-161-0/+5
| | | | | | | | | | | | | | | | | | | | | Fixes division by zero Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | omadec: make sample rate table large enough to prevent out of array reading.Michael Niedermayer2012-04-162-2/+2
| | | | | | | | | | | | | | | | | | | | | The new values lead to error messages when used Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | g729dec: initialize pitch_delay_int_prev to the minimum valid value.Michael Niedermayer2012-04-161-0/+2
| | | | | | | | | | | | | | | | | | | | | This prevents an out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | loco: fix 10l typo (missing case)Michael Niedermayer2012-04-161-1/+1
| | | | | | | | | | | | | | | Found-by: Clément Bœsch <ubitux@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | dsicinav: Check for overread in RLE decode.Michael Niedermayer2012-04-161-2/+7
| | | | | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | smacker: Check get_vlc() return values.Michael Niedermayer2012-04-161-0/+24
| | | | | | | | | | | | | | | | | | | | | Fixes out of array reads Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | dcadec: fix global array overread.Michael Niedermayer2012-04-161-1/+1
| | | | | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Support decoding LOCO_CRGBA.Carl Eugen Hoyos2012-04-161-1/+1
| | | | | | | | | | | | Fixes a part of ticket #1222.
* | | indeo4: avoid storing invalid values in quant_mat.Michael Niedermayer2012-04-161-3/+5
| | | | | | | | | | | | | | | | | | | | | Fixes a global array overread Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | 4xmdemux: Check chunk sizeMichael Niedermayer2012-04-161-0/+4
| | | | | | | | | | | | | | | | | | | | | Fixes over reading the header array Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | omadec: check GEOB sizes against buffer sizeMichael Niedermayer2012-04-161-0/+4
| | | | | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | vc1dec: add missing terminating element to mpeg4_video_profilesMichael Niedermayer2012-04-161-0/+1
| | | | | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>