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
2013-10-31ivi_common: stop using deprecated avcodec_set_dimensionsAnton Khirnov
2013-09-17ivi_common: Make sure color planes have been initializedMartin Storsjö
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
2013-08-15ivi_common: Make some tables only used within the file staticDiego Biurrun
2013-07-15indeo: Reject impossible FRAMETYPE_NULLLuca Barbato
A frame marked FRAMETYPE_NULL cannot be scalable and requires a previous frame successfully decoded. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-15indeo: Do not reference mismatched tilesLuca Barbato
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-15indeo: Sanitize ff_ivi_init_planes fail pathsLuca Barbato
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-15indeo: Bound-check before applying motion compensationLuca Barbato
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-13indeo: Bound-check before applying transformLuca Barbato
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-04indeo: reject negative array indexesLuca Barbato
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-04indeo: Cosmetic formattingLuca Barbato
Trim some overly long lines.
2013-07-04indeo: Refactor ff_ivi_init_tiles and ivi_decode_blocksLuca Barbato
Spin large and mostly self contained blocks into stand alone functions.
2013-07-04indeo: Refactor ff_ivi_dec_huff_descLuca Barbato
Spare an indentation level.
2013-07-04indeo: use a typedef for the mc function pointerLuca Barbato
2013-07-01indeo: check for reference when inheriting mvsLuca Barbato
The same is done already for qdelta. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-07-01indeo: use proper error codeLuca Barbato
2013-07-01indeo: Properly forward the error codesLuca Barbato
If the tile data size does not match the buffer size it did not return an AVERROR_INVALIDDATA causing futher corruption later. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-06-01indeo4: expand allowed quantiser rangeKostya Shishkov
Indeo 4 has quantiser range 0-31 instead of 0-23 for Indeo 5, and clipping quantiser leads to incorrect quantisation and DC prediction on low-quality videos. This fixes bug 259.
2013-05-04avcodec: Add av_cold attributes to init functions missing themDiego Biurrun
2013-03-08ivi_common: do not call MC for intra frames when dc_transform is unsetAnton Khirnov
CC:libav-stable@libav.org
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2012-12-14ivi_common: check that scan pattern is set before using it.Anton Khirnov
Fixes CVE-2012-2791. CC: libav-stable@libav.org
2012-12-14ivi_common: use proper logging context in ivi_decode_blocks().Anton Khirnov
2012-12-14ivi_common: make some functions and tables static.Anton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
It's got_frame, not data size
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
It will be useful in the upcoming transition to refcounted AVFrames.
2012-10-26ivi_common: Drop unused function parameter from decode_band()Diego Biurrun
2012-10-12Move av_reverse table to libavcodecDiego Biurrun
It is only used in that library.
2012-10-10indeo4/5: remove constant parameter num_bands from wavelet recompositionJanne Grunau
Fixes bogus uninitialized value compiler and coverity warnings.
2012-09-29indeo4/5: check empty tile size in decode_mb_info().Anton Khirnov
This prevents writing into a too small array if some parameters changed without the tile being reallocated. Based on a patch by Michael Niedermayer <michaelni@gmx.at> Fixes CVE-2012-2800 CC:libav-stable@libav.org Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
2012-09-29ivi_common: make ff_ivi_process_empty_tile() static.Anton Khirnov
It's not used outside of ivi_common.c
2012-09-29indeo4: update AVCodecContext width/height on size changeMichael Niedermayer
Fixes CVE-2012-2787 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-09-29indeo5dec: Make sure we have had a valid gop header.Michael Niedermayer
This prevents decoding happening on a half initialized context. Fixes CVE-2012-2779 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-05-20indeo: Make ivi_calc_band_checksum() static, it is only used in one file.Diego Biurrun
2012-05-20indeo: Drop unused debug function ivi_check_band().Diego Biurrun
2012-05-20indeo: check for invalid motion vectorsKostya Shishkov
2012-05-20indeo: check that band output buffer existsKostya Shishkov
2012-05-20indeo: clear allocated band buffersKostya Shishkov
2012-05-20indeo: track tile macroblock sizeKostya Shishkov
2012-05-20indeo: check custom Huffman tables for errorsKostya Shishkov
2012-05-20factor out common decoding code for Indeo 4 and Indeo 5Kostya Shishkov
2012-04-20ivi_common: Initialize a variable at declaration in ff_ivi_decode_blocks().Diego Biurrun
This simplifies the code a bit and avoids an uninitialized variable warning.
2012-04-04cosmetics: Consistently place static, inline and av_cold attributes/keywords.Diego Biurrun
2012-02-16vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-07indeo5: Fix null pointer dereference.Michael Niedermayer
Bug found by: Oana Stratulat Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-12-22Drop ALT_ prefix from BITSTREAM_READER_LE name.Diego Biurrun
The prefix is a historic remnant that probably meant "alternative". Now that the A32 bitstream reader has been dropped it makes no sense anymore.
2011-06-03Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun
2011-06-03Replace #ifdef + av_log() combinations by av_dlog().Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-15Check symbol validity to avoid a crash, fixes issue 2523.Daniel Kang
Patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26360 to svn://svn.ffmpeg.org/ffmpeg/trunk