summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Show configuration and library version with AV_LOG_INFO.Carl Eugen Hoyos2011-09-29
| | | | | | | This partly reverts 1c5e9551bca12e040270e0cd3d71440f83e9f8ae, a change of behaviour that was not discussed. The reason for the revert is that FFmpeg cares about bugreports.
* Check for unsupported parameters in ff_j2k_dwt_init()Laurent Aimar2011-09-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Check for out of bound reads in jpeg 2000 decoder.Laurent Aimar2011-09-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Prevent calling init_vlc() with invalid parameters in motionpixels decoder.Laurent Aimar2011-09-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Prevent NULL dereference when the palette is missing in the xan decoder.Laurent Aimar2011-09-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Fixed out of bound accesses in xan_unpack() of the xan decoder.Laurent Aimar2011-09-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* swr_test: dont test samples that have not been writtenMichael Niedermayer2011-09-29
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-09-29
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (23 commits) avconv: Reformat s16 volume adjustment. ARM: NEON optimised vector_fmac_scalar() dca: use vector_fmac_scalar from dsputil dsputil: add vector_fmac_scalar() latmenc: Fix private options vf_unsharp: store hsub/vsub in the filter context vf_unsharp: adopt a more natural order of params in apply_unsharp() vf_unsharp: rename method "unsharpen" to "apply_unsharp" vf_scale: apply the same transform to the aspect during init that is applied per frame vf_pad: fix "vsub" variable value computation vf_scale: add a "sar" variable lavfi: fix realloc size computation in avfilter_add_format() vsrc_color: use internal timebase lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config() graphparser: prefer void * over AVClass * for log contexts avfiltergraph: use meaningful error codes avconv: Initialize return value for codec copy path. fate: use 'run' helper for seek-test fate: remove seek-mpeg2reuse test Fix memory (re)allocation in matroskadec.c, related to MSVR-11-0080. ... Conflicts: doc/filters.texi libavfilter/avfilter.h libavfilter/avfiltergraph.c libavfilter/avfiltergraph.h libavfilter/graphparser.c libavfilter/vf_scale.c libavfilter/vsrc_color.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avconv: Reformat s16 volume adjustment.Alex Converse2011-09-28
| |
| * ARM: NEON optimised vector_fmac_scalar()Mans Rullgard2011-09-28
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * dca: use vector_fmac_scalar from dsputilMans Rullgard2011-09-28
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * dsputil: add vector_fmac_scalar()Mans Rullgard2011-09-28
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * latmenc: Fix private optionsKieran Kunhya2011-09-28
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * vf_unsharp: store hsub/vsub in the filter contextStefano Sabatini2011-09-28
| | | | | | | | | | | | Also drop obfuscating CHROMA_WIDTH/HEIGHT macros. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vf_unsharp: adopt a more natural order of params in apply_unsharp()Stefano Sabatini2011-09-28
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vf_unsharp: rename method "unsharpen" to "apply_unsharp"Stefano Sabatini2011-09-28
| | | | | | | | | | | | | | More consistent with the original libmpcodecs code, and the name "unsharpen" was confusing. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vf_scale: apply the same transform to the aspect during init that is applied ↵Michael Niedermayer2011-09-28
| | | | | | | | | | | | per frame Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vf_pad: fix "vsub" variable value computationStefano Sabatini2011-09-28
| | | | | | | | | | | | It was shifting 2 rather than 1, +10l. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vf_scale: add a "sar" variableStefano Sabatini2011-09-28
| | | | | | | | | | | | | | Also create a "dar" alias for the "a" variable, for avoiding possible confusion between dar/sar. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: fix realloc size computation in avfilter_add_format()Stefano Sabatini2011-09-28
| | | | | | | | | | | | | | | | | | | | | | | | | | Replace sizeof((*avff)->formats) with sizeof(*(*avff)->formats) as the size of the array element is given by the pointed element rather than by its pointer. In particular fix computation with the pending patch when sizeof(int64_t) != sizeof(int64_t *). Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vsrc_color: use internal timebaseStefano Sabatini2011-09-28
| | | | | | | | | | | | Avoid timescale conversion, simplify. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config()Stefano Sabatini2011-09-28
| | | | | | | | | | | | Require "void *" rather than "AVClass *" for the log context type. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * graphparser: prefer void * over AVClass * for log contextsStefano Sabatini2011-09-28
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * avfiltergraph: use meaningful error codesStefano Sabatini2011-09-28
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * avconv: Initialize return value for codec copy path.Alex Converse2011-09-27
| |
| * fate: use 'run' helper for seek-testMans Rullgard2011-09-28
| | | | | | | | | | | | This is simpler, and the actual seek-test command is printed with V=1. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * fate: remove seek-mpeg2reuse testMans Rullgard2011-09-28
| | | | | | | | | | | | The input file for this test is no longer generated. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * Fix memory (re)allocation in matroskadec.c, related to MSVR-11-0080.Michael Niedermayer2011-09-27
| | | | | | | | | | | | | | | | | | | | | | | | | | Whitespace of the patch cleaned up by Aurel Some of the issues have been reported by Steve Manzuik / Microsoft Vulnerability Research (MSVR) Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 956c901c68eff78288f40e3c8f41ee2fa081d4a8) Further suggestions from Kostya <kostya.shishkov@gmail.com> have been implemented by Reinhard Tartler <siretart@tauware.de> Signed-off-by: Reinhard Tartler <siretart@tauware.de>
| * avconv: Fix volume adjustment for non-s16 sample formatsAlex Converse2011-09-27
| |
| * avconv: Make samples void*.Alex Converse2011-09-27
| | | | | | | | Different sample formats are different sizes.
| * avconv: Use the size of the decode sample format when allocating the audio ↵Alex Converse2011-09-27
| | | | | | | | samples buffer.
* | 2/4 bpp png is supported.Carl Eugen Hoyos2011-09-28
| |
* | h264: fix FIXME and use list_count in ff_h264_fill_mbaff_ref_list()Michael Niedermayer2011-09-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: More correct ref_count check in decode_slice_header()Michael Niedermayer2011-09-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | sink_buffer: fix typoMichael Niedermayer2011-09-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Use "JPEG 2000" as long name for j2k.Carl Eugen Hoyos2011-09-28
| |
* | Encoding speex via libspeex is supported.Carl Eugen Hoyos2011-09-28
| |
* | movenc: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | gxfenc: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | aviobuf: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avienc: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avidec: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | 4xm: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libvpxenc: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | bitstream: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: Replace av_realloc by av_realloc_f when relevant.Nicolas George2011-09-28
| | | | | | | | | | | | | | | | Also mark with a visible comment "FIXME realloc failure" places where av_realloc seems to lack a proper test for failure. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Introduce av_realloc_f.Nicolas George2011-09-28
| | | | | | | | | | | | | | av_realloc_f helps avoiding memory-leaks in typical uses of realloc. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Introduce av_size_mult.Nicolas George2011-09-28
| | | | | | | | | | | | | | | | av_size_mult helps checking for overflow when computing the size of a memory area. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libx264: remove check_default_settings()Michael Niedermayer2011-09-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffprobe: fix trailing '=' in stream id.Clément Bœsch2011-09-28
| |