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-11-16xan: use the AVFrame API properly.Anton Khirnov
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-09-29xan: Only read within the data that actually was initializedMartin Storsjö
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
2013-09-29xan: Use bytestream2 to limit reading to within the bufferMartin Storsjö
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-01-09xan: Convert to bytestream2Alexandra Khirnova
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-01-06xan: return a meaningful error code.Anton Khirnov
2012-12-24xan: remove a trivially true if().Anton Khirnov
This function used to be shared with the xxan decoder, but that is not true anymore.
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-25avutil: Move memcpy_backptr() to mem.cDiego Biurrun
The function is used elsewhere and does not belong with the LZO code.
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
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-12-04xan.c: coding style clean-up.Nathan Adil Maxson
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-10-07xan: Prevent NULL dereference with missing paletteLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07xan: Check for out of bound reads in xan_huffman_decode()Laurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07xan: Fixed out of bound accesses in xan_unpack()Laurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-10-07xan: Prevent NULL dereferences with missing reference frameLaurent 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-09-12xan: Add some buffer checksAlex Converse
2011-09-12xan: Remove extra trailing newlineAlex Converse
2011-09-12Fixed size given to init_get_bits() in xan decoder.Laurent Aimar
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-07Remove Xan WC4 cruft from xan.cKostya
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-11-23Fix memleak: free palette data on close.Reimar Döffinger
Originally committed as revision 25816 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-21Fix indentation.Reimar Döffinger
Originally committed as revision 25780 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-21Add explanation and alternative implementation for strange xanReimar Döffinger
gamma correction. Originally committed as revision 25779 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-21WC3/xan: move palette handling to decoder, avoiding need forReimar Döffinger
PaletteControl. This also fixes playback of some files with ffplay (images were corrupted for a short time after a palette change). Originally committed as revision 25778 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-18Remove redundant text in the log.Stefano Sabatini
Originally committed as revision 25517 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-18Make XAN decoder return meaningful error codes.Stefano Sabatini
Originally committed as revision 25516 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-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-19Add long_name for Xxan codec.Diego Biurrun
Originally committed as revision 20900 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-19Improve handling allocated buffers in Xan decoderKostya Shishkov
Originally committed as revision 20899 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-19cosmetics: reindent a bitKostya Shishkov
Originally committed as revision 20898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-14Remove unnecessary calls to avcodec_check_dimensions, the check is alreadyReimar Döffinger
done at a higher level. Originally committed as revision 20229 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-05Use memcpy to copy till end of line in one go instead of copying pixel by pixelReimar Döffinger
in xan_wc3_output_pixel_run and xan_wc3_copy_pixel_run Originally committed as revision 19774 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-05Slightly simplify detection of end of compressed data in xan_unpackReimar Döffinger
Originally committed as revision 19772 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-23Remove useless #include <unistd.h> from many filesMåns Rullgård
Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-18Avoid code duplication in xan_unpack for the final memcpy.Reimar Döffinger
Originally committed as revision 18608 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-18Use sign_extend function instead of reimplementing it.Reimar Döffinger
Originally committed as revision 18599 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-18Remove a useless "& 0xF"Reimar Döffinger
Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Use / and % operators instead of reimplementing them with a loop.Reimar Döffinger
Originally committed as revision 18597 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Change buffer check to avoid an unlikely pointer arithmetic overflow.Reimar Döffinger
Originally committed as revision 18596 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Simplify xan_huffman_decode by using get_bitsReimar Döffinger
Originally committed as revision 18595 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Cosmetics to improve xan_unpack readabilityReimar Döffinger
Originally committed as revision 18590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Fix buffer size check for xan_unpack which was broken by r18586Reimar Döffinger
Originally committed as revision 18589 to svn://svn.ffmpeg.org/ffmpeg/trunk