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
2009-07-05Add a check to vp6_parse_coeff_huffman to ensure it does not overread the ↵Reimar Döffinger
input buffer. Originally committed as revision 19349 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-10move vp6_filter_diag4() to a new vp6dsp.c file and use it throught dsputilAurelien Jacobs
Originally committed as revision 17111 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-15vp56: don't reset dimensions to 0 in codec initAurelien Jacobs
Originally committed as revision 16140 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-12rename Vp56Model to VP56Model for consistencyAurelien Jacobs
Originally committed as revision 16073 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-12avoid POSIX reserved _t suffixAurelien Jacobs
Originally committed as revision 16068 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-13vp6dec: ensure we don't try to use a buffer with negative sizeAurelien Jacobs
this should never happen in valid vp6 bitstream fix issue684 Originally committed as revision 15610 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-22vp6: ensure that huffman decoding table is sorted with descending symbol orderPeter Ross
Previous code worked by pure luck with glibc qsort implementation. patch by Peter Ross pross _at_ xvid _dot_ org Originally committed as revision 13887 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-28Add long names to AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08huffman: pass hnode_first as a flag instead of as an argument on its ownAurelien Jacobs
Originally committed as revision 12373 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-05remove #include "mpegvideo.h" where it is not neededAurelien Jacobs
Originally committed as revision 12321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11791 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-2810l: init_get_bits want size in bits, not bytesAurelien Jacobs
Originally committed as revision 11099 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-15add support for VP6 with huffman encoded blocksAurelien Jacobs
closes issue 104 Originally committed as revision 10737 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-25add a new vp6a codec (add alpha plan support to vp6)Aurelien Jacobs
Originally committed as revision 10574 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-25move all model related tables into their own structAurelien Jacobs
Originally committed as revision 10571 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-25some simplifications and uniformisationAurelien Jacobs
Originally committed as revision 10568 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-01add a warning message for unsupported kind of encodingAurelien Jacobs
Originally committed as revision 10277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05Group all copyright and author notices together.Diego Biurrun
Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-06simplifyLoren Merritt
Originally committed as revision 8911 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-06simplifyLoren Merritt
Originally committed as revision 8908 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-06faster and simpler vp6 bilinear mcLoren Merritt
Originally committed as revision 8907 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-05set CODEC_CAP_DR1 for vp5 and vp6 decodersAurelien Jacobs
Originally committed as revision 8896 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-25Use pointers to avoid copying AVFrame.Aurelien Jacobs
This ensure get_buffer() won't be confused with an AVFrame pointer which looks like it wasn't released. Originally committed as revision 8124 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-25Add av_ prefix to clip functionsReimar Döffinger
Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-20rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi
Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-14cosmetics: reindentAurelien Jacobs
Originally committed as revision 7486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-14add support for another variant of vp6Aurelien Jacobs
with block coeffs coded separatly from other parts of the frame Originally committed as revision 7484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-18Add support for VP60 and VP61.Aurelien Jacobs
Originally committed as revision 7329 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-17small optimizationAurelien Jacobs
Originally committed as revision 7327 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-24Don't include inttypes.h/stdint.h directly, there is an abstraction inSteve L'Homme
libavutil/common.h for platforms with no inttypes.h. patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6790 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-23document the extradata protocol for VP6FAurelien Jacobs
Originally committed as revision 6772 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-23use the adjustment value present in FLV to crop VP6 videoAurelien Jacobs
Originally committed as revision 6770 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-12Rename ABS macro to FFABS.Diego Biurrun
Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-10rename vector to vect to avoid clash with Apple gccAurelien Jacobs
Originally committed as revision 6217 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-09VP5 and VP6 video decoderAurelien Jacobs
Originally committed as revision 6213 to svn://svn.ffmpeg.org/ffmpeg/trunk