Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-07mpc8: Fix return value on EOFLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07shorten: Prevent block size from increasingLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07xan: Prevent out of bound accessesLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07H264: Only wait before triggering ff_thread_setup_complete() until the next ↵Michael Niedermayer
slice that contains a start-of-field/frame macroblock This allows concurrent decoding of the last field/frame, rather than only the last slice, of data packets with multiple NAL units packed together. This will fix the slowdown reported in e.g. bug 52. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-07vp6: Reset the internal state when aborting key frames header parsingLaurent Aimar
It prevents leaving the state only half initialized. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07vp56: Release old pictures after a resolution changesLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07vp6: Check for huffman tree build errorsLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07vp56: Check for missing reference frame dataLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07cinepak: Fix invalid read access on extra dataLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07vmd: fix segfaults on corruped streamsLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07cook: Fix js_vlc_bits value validation for joint stereoLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07segafilm: Check for memory allocation failures in segafilm demuxer.Laurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07segafilm: Fix potential division by 0 on corrupted streams in the demuxerLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07Fixed segfault on corrupted sega streams in the demuxer.Laurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07Fixed deference of NULL pointer in motionpixels decoder.Laurent Aimar
Some of the arguments given to init_vlc() come from the stream and can be corrupted. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-06libx264: support 9- and 10-bit output.Anton Khirnov
2011-10-05h264: correct implicit_weight for field-interlaced pictures.Ronald S. Bultje
2011-10-05mpegvideo: set correct offset for edge emulation buffer.Ronald S. Bultje
Using the old code, half of it was unused and the other half was too small for e.g. >8bpp interlaced data, causing random buffer overruns.
2011-10-05mpegvideo: fix position of bottom edge.Ronald S. Bultje
It was wrong in colorspaces where horizontal and vertical chroma subsampling are not the same, e.g. 422.
2011-10-05Fix 'heigth' vs. 'height' typos.Diego Biurrun
2011-10-05lavc/lavf: use unique private classes.Anton Khirnov
This is needed by the new AVOptions API.
2011-10-05lavc: use designated initializers for av_codec_context_classAnton Khirnov
2011-10-05qcelpdec: cosmetics: do not add line break before opening bracket in 'for',Justin Ruggles
'while', 'if/else', and 'switch' statements. also fixes some spacing, but only if already changing a line
2011-10-05qcelp: check output buffer size before decodingJustin Ruggles
2011-10-05qcelpdec: fix the return value of qcelp_decode_frame().Chris Rankin
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-10-05sipr: fix the output data size check and only calculate it once.Justin Ruggles
2011-10-04Synchronize various 4CCs and codec tags from FFmpeg.Diego Biurrun
2011-10-04qdm2: check output buffer size before decodingJustin Ruggles
2011-10-04Fix out of bound reads in the QDM2 decoder.Laurent Aimar
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-10-04Check for out of bound writes in the QDM2 decoder.Laurent Aimar
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-10-04ogg/celt: do not set sample_fmt in the demuxerJustin Ruggles
2011-10-03id3v2: remove pointless castsAnton Khirnov
2011-10-03id3v2: read TXXX frames with two calls to decode_str() instead of one.Anton Khirnov
Read the key in the first, value in the second. This allows to avoid pointless strdups and simplify decode_str() by dropping two of its parameters.
2011-10-03id3v2: don't discard the whole tag when encountering empty frames.Anton Khirnov
While they're technically invalid, it's better to skip them and try to read the rest of the tag.
2011-10-03libvpx: fix build with older libvpx versions.Anton Khirnov
VPX_ERROR_RESILIENT_DEFAULT and VPX_ERROR_RESILIENT_PARTITIONS weren't defined before 4cb0ebe5b27d35ccc2a78c1d16f2622ddef21f74 (CommitDate: Tue Jun 28 11:10:17 2011)
2011-10-03ARM: check for inline asm 'y' operand modifier supportMans Rullgard
The inline asm added in bf5d46d uses the 'y' modifier which is only supported from gcc 4.5. This check allows building with older compilers. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-10-02mpc8: check output buffer size before decodingJustin Ruggles
2011-10-02mpc7: return error if packet is too small.Justin Ruggles
2011-10-02mpc7: check output buffer size before decodingJustin Ruggles
2011-10-02nellymoserdec: allocate float_buf only when decoding to int16Justin Ruggles
2011-10-02nellymoserdec: use NELLY_BUF_LEN instead of 128Justin Ruggles
2011-10-02nellymoserdec: use NELLY_BLOCK_LEN instead of 64 when appropriate.Justin Ruggles
2011-10-02nellymoserdec: allow user to request SAMPLE_FMT_FLT for output samples.Justin Ruggles
2011-10-02nellymoser: check output buffer size before decodingJustin Ruggles
2011-10-02win32: improve threading algorithm warningLuca Barbato
If no threading is requested do not issue warning about unsupported threading algorithm.
2011-10-01lavc: add video/audio/encoding flags to global_quality optionAnton Khirnov
2011-10-01libvpxenc: use libvpx's own defaults for some parametersLuca Barbato
Specifically, qmin/qmax, gop_size and keyint_min. Fixes bug 47. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-01vpxenc: add private optionsLuca Barbato
Make libvpx support close to the libx264 one. Thanks to Jan Gerber <j@v2v.cc> for the support. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-01dpcm: return error if packet is too smallJustin Ruggles
2011-10-01dpcm: use smaller data types for static tablesJustin Ruggles