summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | swresample: Try to handle cases with input channel count and layout mismatching.Michael Niedermayer2011-10-061-0/+5
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | bintext: fix warning message wording.Clément Bœsch2011-10-061-1/+1
| | |
* | | vaapi: fix VC-1 decoding (reconstruct bitstream TTFRM correctly).Gwenole Beauchesne2011-10-061-1/+13
| | |
* | | mpegps: drop incorrect line of sofdec detectionMichael Niedermayer2011-10-061-1/+0
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | mpeg1dec: More complete sofdec supportMichael Niedermayer2011-10-061-0/+19
| | | | | | | | | | | | | | | | | | Fixes Ticket517 Signed-off-by: Michael Niedermayer <[email protected]>
* | | libmodplug: free file content buffer in read_close() callback.Clément Bœsch2011-10-061-0/+1
| | |
* | | libmodplug: add TODO entry for probing.Clément Bœsch2011-10-061-0/+1
| | |
* | | libmodplug: add metadata support.Clément Bœsch2011-10-061-2/+56
| | |
* | | libmodplug: add an option to enlarge the max supported file size.Clément Bœsch2011-10-061-3/+23
| | |
* | | libmodplug: support options (noise reduction, reverb, bass boost, ...)Clément Bœsch2011-10-061-1/+55
| | |
* | | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-067-32/+57
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: Fix 'heigth' vs. 'height' typos. lavc/lavf: use unique private classes. lavc: use designated initializers for av_codec_context_class Conflicts: libavdevice/fbdev.c Merged-by: Michael Niedermayer <[email protected]>
| * | Fix 'heigth' vs. 'height' typos.Diego Biurrun2011-10-053-15/+15
| | |
| * | lavc/lavf: use unique private classes.Anton Khirnov2011-10-053-16/+34
| | | | | | | | | | | | This is needed by the new AVOptions API.
| * | lavc: use designated initializers for av_codec_context_classAnton Khirnov2011-10-051-1/+8
| | |
* | | ffmpeg: fix forced key frames.Nicolas George2011-10-061-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that the option was moved in the per-stream context, the parsing is done before the time_base for the stream is decided. This patch does the parsing in AV_TIME_BASE units and rescales the timestamps later when the correct time base is known. Signed-off-by: Nicolas George <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* | | flvenc: Ignore metadata that has special values and is stored already based onMichael Niedermayer2011-10-061-0/+16
| | | | | | | | | | | | | | | | | | more correct values. Signed-off-by: Michael Niedermayer <[email protected]>
* | | swr-docs: update due to last change to swresampleMichael Niedermayer2011-10-061-0/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | libswresample: support directly converting sampleformats and packed/planar ↵Michael Niedermayer2011-10-062-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | in a single pass. Previously a intermediate planar format was used when both input and output where packed. Signed-off-by: Michael Niedermayer <[email protected]>
* | | update_stream_timings: Remove redundant check.Michael Niedermayer2011-10-061-1/+1
| | | | | | | | | | | | | | | Found-by:Nicolas Signed-off-by: Michael Niedermayer <[email protected]>
* | | libmodplug: handle EOF correctly.Clément Bœsch2011-10-051-1/+1
| | |
* | | Use WMAv2 as default audio codec for asf.Carl Eugen Hoyos2011-10-051-1/+1
| | |
* | | Use M4S2 as default video tag for MPEG-4 ASP in asf.Carl Eugen Hoyos2011-10-051-1/+1
| | |
* | | libmodplug: simplify and fix read_packet() callback.Clément Bœsch2011-10-051-11/+7
| | | | | | | | | | | | | | | | | | In case of av_new_packet() error, a correct return error code is raised, the data memcpy is avoided, and pkt dts/pts are not assigned anymore (since the defaults are good).
* | | libmodplug: consistent use of sizeof.Clément Bœsch2011-10-051-2/+2
| | |
* | | generic seeking: fail if there are 1000 non keyframes found with no keyframe.Michael Niedermayer2011-10-051-2/+7
| | | | | | | | | | | | | | | | | | This avoids scanning through a whole file just to fail. Signed-off-by: Michael Niedermayer <[email protected]>
* | | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-056-139/+94
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: qcelpdec: cosmetics: do not add line break before opening bracket in 'for', 'while', 'if/else', and 'switch' statements. qcelp: check output buffer size before decoding qcelpdec: fix the return value of qcelp_decode_frame(). sipr: fix the output data size check and only calculate it once. Synchronize various 4CCs and codec tags from FFmpeg. qdm2: check output buffer size before decoding Fix out of bound reads in the QDM2 decoder. Check for out of bound writes in the QDM2 decoder. ogg/celt: do not set sample_fmt in the demuxer Conflicts: libavcodec/avcodec.h libavcodec/qdm2.c libavformat/oggparsecelt.c Merged-by: Michael Niedermayer <[email protected]>
| * | qcelpdec: cosmetics: do not add line break before opening bracket in 'for',Justin Ruggles2011-10-041-120/+60
| | | | | | | | | | | | | | | | | | 'while', 'if/else', and 'switch' statements. also fixes some spacing, but only if already changing a line
| * | qcelp: check output buffer size before decodingJustin Ruggles2011-10-041-2/+8
| | |
| * | qcelpdec: fix the return value of qcelp_decode_frame().Chris Rankin2011-10-041-1/+1
| | | | | | | | | | | | Signed-off-by: Justin Ruggles <[email protected]>
| * | sipr: fix the output data size check and only calculate it once.Justin Ruggles2011-10-041-4/+7
| | |
| * | Synchronize various 4CCs and codec tags from FFmpeg.Diego Biurrun2011-10-044-1/+17
| | |
| * | qdm2: check output buffer size before decodingJustin Ruggles2011-10-031-2/+9
| | |
| * | Fix out of bound reads in the QDM2 decoder.Laurent Aimar2011-10-031-0/+2
| | | | | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Justin Ruggles <[email protected]>
| * | Check for out of bound writes in the QDM2 decoder.Laurent Aimar2011-10-031-1/+6
| | | | | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Justin Ruggles <[email protected]>
| * | ogg/celt: do not set sample_fmt in the demuxerJustin Ruggles2011-10-031-1/+0
| | |
* | | h264: remove assert() on ref_frame_count.Michael Niedermayer2011-10-051-2/+1
| | | | | | | | | | | | | | | | | | | | | This assert can fail if a SPS with a smaller value becomes active. Fixes Ticket532 Signed-off-by: Michael Niedermayer <[email protected]>
* | | configure: fix compilation without libmodplugMichael Niedermayer2011-10-051-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | h264: do not let invalid values in h->ref_count after a decoder reset.Laurent Aimar2011-10-051-0/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | h264: bit depth/chroma idc changes must go through a full format negociation.Laurent Aimar2011-10-051-18/+20
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | h254: explicitly initialize bit depth/chroma idcLaurent Aimar2011-10-051-2/+8
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | libx264: Fix loop failure due to bufsize becoming 0Michael Niedermayer2011-10-041-1/+3
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | Add libmodplug support.Clément Bœsch2011-10-047-1/+122
| | |
* | | deshake: simplify filename check.Clément Bœsch2011-10-041-1/+1
| | |
* | | configure: remove bashism equality check for target_os.Clément Bœsch2011-10-041-1/+1
| | |
* | | deshake: misc style fixes.Clément Bœsch2011-10-041-7/+7
| | |
* | | deshake: move angles from stack to heap.Michael Niedermayer2011-10-041-1/+2
| | | | | | | | | | | | | | | | | | Fixes Ticket530 Signed-off-by: Michael Niedermayer <[email protected]>
* | | deshake: Allow specifying the filename for statistics and disable them by ↵Michael Niedermayer2011-10-041-7/+14
| | | | | | | | | | | | | | | | | | default. Signed-off-by: Michael Niedermayer <[email protected]>
* | | deshake: remove non const staticMichael Niedermayer2011-10-041-18/+11
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | | doxygen: remove a few @file parameters.Clément Bœsch2011-10-045-5/+5
| | | | | | | | | | | | It is not mandatory and prevents breakage on rename.
* | | lavfi: remove align tabs in Makefile.Clément Bœsch2011-10-041-1/+1
| | |