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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-10Quant changes only once per MB so move the corresponding scale factor assignmentMaxim Poliakovski
out of the block decoding loop. Indeo4 doesn't use any scale table but the quant level itself as scale. Therefore access scale table only if its pointer != NULL. Originally committed as revision 23569 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-31Make dequantization equation use less registers on some CPUs.Maxim Poliakovski
Originally committed as revision 23391 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-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-03-08Scale tile dimensions in case both local decoding and scalability modeMaxim Poliakovski
are used in Indeo 5 stream. Patch by Maxim ($indeo5dec_author) Originally committed as revision 22318 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07When tracking non-zero coefficients during Indeo 5 decoding, make sureMaxim Poliakovski
it does not ignore coefficient value = 256. Patch by Maxim ((!min)_pole \at gmx dot/ de) Originally committed as revision 22275 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-2310l trocadero: Indeo 5 decoder did not free custom VLCs for macroblock andKostya Shishkov
block decoding at exit, so prevent that memory leak now. Originally committed as revision 21983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Declare indeo VLC table storage with correct typeMåns Rullgård
Originally committed as revision 21977 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-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