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-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-03-09lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov
2013-02-12adxenc: alloc/free coded_frame instead of keeping it in the ADXContextJustin Ruggles
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-03-21adxenc: use AVCodec.encode2()Justin Ruggles
2012-03-21adxenc: Use the AVFrame in ADXContext for coded_frameJustin Ruggles
2012-01-04adxenc: check output buffer size before writingJustin Ruggles
2012-01-04adxenc: use bytestream functions for header writing.Justin Ruggles
also add more documentation about the header structure
2012-01-04adxenc: use BLOCK_SIZE and BLOCK_SAMPLES macrosJustin Ruggles
2012-01-04adxenc: use a loop to encode each channelJustin Ruggles
2012-01-04adxenc: remove unneeded loopsJustin Ruggles
avctx->frame_size is 32, so that is how many samples we process per call.
2012-01-04adxenc: avoid stereo deinterleavingJustin Ruggles
2012-01-04adxenc: remove unnecessary setting of coded_frame->key_frame.Justin Ruggles
It is already set by avcodec_alloc_frame().
2012-01-04adxenc: log an error message and return AVERROR(EINVAL) for invalid channelsJustin Ruggles
2012-01-04adxenc: cosmetics: pretty-printingJustin Ruggles
2012-01-04adxenc: change some data typesJustin Ruggles
2012-01-04adxenc: remove unneeded log messageJustin Ruggles
2012-01-04adxenc: remove unneeded commentsJustin Ruggles
2011-11-27adx: simplify encoding by using put_sbits()Justin Ruggles
2011-11-27adx: calculate correct LPC coeffsJustin Ruggles
Instead of using fixed coefficients, the correct way is to calculate the coefficients using the highpass cutoff frequency from the ADX stream header and the sample rate.
2011-11-27adx: use 12-bit coefficients instead of 14-bit to avoid integer overflowJustin Ruggles
2011-11-27adx: rename struct PREV to ADXChannelStateJustin Ruggles
2011-11-02Replace outdated references to ffmpeg tool with avconv.Diego Biurrun
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-11-12Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini
SampleFormat with AVSampleFormat. Originally committed as revision 25730 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-09-06Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger
.data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-02Change a bunch of codec long_names to be more consistent and descriptive.Diego Biurrun
Originally committed as revision 17716 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-27Fix filenames in Doxygen comments.Diego Biurrun
Originally committed as revision 16811 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Modify all codecs to report their supported input and output sample format(s).Peter Ross
Originally committed as revision 14482 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-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-11-01split adx encoder in its own fileAurelien Jacobs
Originally committed as revision 10903 to svn://svn.ffmpeg.org/ffmpeg/trunk