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-12-05ljpegenc: accept bgr24 instead of bgraAnton Khirnov
The alpha plane is not encoded.
2013-12-05mjpegenc: do not pass MpegEncContext to ff_mjpeg_encode_dc()Anton Khirnov
This will allow deMpegEncContextizing the LJPEG encoder.
2013-12-05mjpegenc: do not pass MpegEncContext to ff_mjpeg_encode_picture_trailer()Anton Khirnov
This will allow deMpegEncContextizing the LJPEG encoder.
2013-12-05mjpegenc: do not pass MpegEncContext to ff_mjpeg_encode_picture_header()Anton Khirnov
This will allow deMpegEncContextizing the LJPEG encoder.
2013-12-05mjpegenc: do not pass MpegEncContext to jpeg_table_header()Anton Khirnov
Pass the three needed fields from it directly. This will allow to deMpegEncContextize the LJPEG encoder.
2013-12-05mjpegenc: remove commented out never-to-be-finished WIP cruftAnton Khirnov
2013-12-05mjpegenc: do not pass MpegEncContext to put_huffman_table()Anton Khirnov
It only needs PutBitContext from it, so pass that directly.
2013-12-05mjpegenc: cosmetics, reformat jpeg_put_comments()Anton Khirnov
2013-12-05mjpegenc: write the JFIF header if the sample aspect ratio is setAnton Khirnov
MpegEncContext.aspect_ratio_info is never set for mjpeg, so this was never written before.
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-08-20avcodec: Remove some commented-out debug cruftDiego Biurrun
2013-02-26Remove unnecessary dsputil.h #includesDiego Biurrun
2013-01-23Drop DCTELEM typedefDiego Biurrun
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-10-01avcodec: Drop silly and/or broken printf debug outputDiego Biurrun
2012-09-09Rename ff_put_string to avpriv_put_stringMartin Storsjö
This allows using it from libavformat as well. This will be used by the RTP/JPEG depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-09mjpeg: Rename some symbols to avpriv_* instead of ff_*Samuel Pitoiset
These symbols will be used from the RTP/JPEG depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-19mpegvideo_enc: switch to encode2().Anton Khirnov
2012-02-16mpegvideo: Add ff_ prefix to nonstatic functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
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-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-12-04Count non-header data towards intra block bit count in MJPEG encoderBobby Bingham
Originally committed as revision 25873 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-10Lossless jpeg expects and uses BGRA not RGB32 (this probably caused a problem onMichael Niedermayer
big endian) Originally committed as revision 20789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Use skip_put_bytes in MJPEG encoder instead of filling all bytes with 0Reimar Döffinger
with put_bits. Originally committed as revision 20096 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger
Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini
The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 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
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-13bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla
throughout libavcodec. Originally committed as revision 14204 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25remove duplicate tablesStefan Gehrer
Originally committed as revision 13959 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-05-12Replace some occurrences of -1 with PIX_FMT_NONE.Carl Eugen Hoyos
Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 13130 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-27Add long names to many AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 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
2007-07-05Group all copyright and author notices together.Diego Biurrun
Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-02Use AV_xx throughout libavcodecRamiro Polla
Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-19move the mjpeg_encoder struct from mpegvideo.c to mjpegenc.cAurelien Jacobs
Originally committed as revision 9059 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-19add a proper prefix to all mjpeg encoder exported functionsAurelien Jacobs
Originally committed as revision 9058 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-19split ljpeg encoder out of mjpeg.cAurelien Jacobs
Originally committed as revision 9057 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-17add proper prefix to new mjpeg extern func/varAurelien Jacobs
Originally committed as revision 9049 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-17split mjpeg.c into an encoder and a decoder fileAurelien Jacobs
Originally committed as revision 9048 to svn://svn.ffmpeg.org/ffmpeg/trunk
2001-08-06added MJPEG decoder, renamed mjpegenc.c to mjpeg.cFabrice Bellard
Originally committed as revision 34 to svn://svn.ffmpeg.org/ffmpeg/trunk
2001-07-22Initial revisionFabrice Bellard
Originally committed as revision 5 to svn://svn.ffmpeg.org/ffmpeg/trunk