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-07-13indeo: Bound-check before applying transformLuca Barbato
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-02-23Remove pointless av_cold attributes in header filesDiego Biurrun
The init functions marked as av_cold have to be executed in any case, so there is no gain from trying to mark paths leading to such functions as unlikely.
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-10-06Give all anonymously typedeffed structs in headers a nameDiego Biurrun
Anonymous structs cannot be forward declared and have no benefit.
2012-09-29ivi_common: make ff_ivi_process_empty_tile() static.Anton Khirnov
It's not used outside of ivi_common.c
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-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: track tile macroblock sizeKostya Shishkov
2012-05-20factor out common decoding code for Indeo 4 and Indeo 5Kostya Shishkov
2011-12-31cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun
2011-12-05doxygen: eliminate Qt-style doxygen syntaxDiego Biurrun
2011-06-03Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun
2011-06-03Remove pointless #ifdefs around function declarations in a header.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-07-17Fix Doxygen @param command attribute syntax.Diego Biurrun
The [in] and [out] attributes have to be appended to the @param command. Originally committed as revision 24283 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-11Move transform declarations out of IVIBandDesc so indeo4 can use them as well.Maxim Poliakovski
Originally committed as revision 23577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-08Prepare Indeo4 (step 1): upscale indeo5 base tables by 2 and convert those ↵Maxim Poliakovski
into uint16_t. Originally committed as revision 23523 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-30Remove unused variables.Maxim Poliakovski
Originally committed as revision 23389 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-27Add the forgotten ff_ prefix to the shareable scan patterns.Maxim Poliakovski
Originally committed as revision 23341 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-26move indeo5 scan patterns into ivi_common.cMaxim Poliakovski
so those can be shared by indeo4. Originally committed as revision 23335 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-19Fix signedness of q_delta field of the IVIMbInfo.Maxim Poliakovski
Patch by Maxim max_pole () gmx * de Originally committed as revision 23170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-27Encapsulate VLC information needed for decoding blocks and macroblocks inKostya Shishkov
Indeo 5 into single structure IVIHuffTab and factorize code using it. Based on patch by Maxim (max_pole at German GMX) Originally committed as revision 22092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-27Make it clear that ff_ivi_init_static_vlc() does not need argumentsKostya Shishkov
Originally committed as revision 22091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-22Macroblock and block Huffman code sets are to be used by both Indeo 4 andKostya Shishkov
Indeo 5, so make them global and move their initialization to the common place as well. And fix static VLC initialization, as ff_ivi_create_huff_from_desc() used old way to do so. Originally committed as revision 21962 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-15Remove outdated comment.Maxim Poliakovski
Patch by Maxim, max_pole gmx de Originally committed as revision 21837 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30Indeo Video Interactive 4 and 5 common code and DSP functions.Kostya Shishkov
Reviewed and corrected by myself because there were no other volunteers in the last weeks. Originally committed as revision 21531 to svn://svn.ffmpeg.org/ffmpeg/trunk