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
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-03Add avcodec_decode_audio4().Justin Ruggles
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
2011-11-09sipr: use a function pointer to select the decode_frame functionJustin Ruggles
2011-11-09sipr: set mode based on block_align instead of bit_rateJustin Ruggles
the user is not required to set bit_rate
2011-11-09sipr: do not needlessly set *data_size to 0 when returning an errorJustin Ruggles
2011-10-11sipr: fix get_bits(0) callsMans Rullgard
Zero-length get_bits() is undefined, must check before calling. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-10-05sipr: fix the output data size check and only calculate it once.Justin Ruggles
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-06-19sipr: Drop unused DSPContextAlex Converse
2011-06-19sipr: include string.h for mem*()Alex Converse
2011-06-19sipr: Use memmove() to copy overlapped buffers.Alex Converse
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-09-17Remove pointless semicolonVitor Sessak
Originally committed as revision 25141 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-08Move lsp2lpc_sipr() function to common code so it can be reused in aMarcelo Galvăo Póvoa
AMRWB decoder. Patch by Marcelo Galvăo Póvoa. Originally committed as revision 25062 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-04-21Move clipping of audio samples (for those codecs outputting float) from decoderRonald S. Bultje
to the audio conversion routines. Originally committed as revision 22937 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21Split input/output data arguments to ff_acelp_apply_order_2_transfer_function().Ronald S. Bultje
Originally committed as revision 22933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21Split the input/output data arguments to ff_adaptive_gain_control().Ronald S. Bultje
Originally committed as revision 22932 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
2010-03-11Fix spelling.Ronald S. Bultje
Originally committed as revision 22470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16SIPR16k decoderVitor Sessak
Originally committed as revision 21234 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Allow a SIPR table to be used by the upcoming SIPR16k decoderVitor Sessak
Originally committed as revision 21233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Split some SIPR structs to a header file for the upcoming SIPR16k commitVitor Sessak
Originally committed as revision 21232 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13Remove needless use of log2f()Vitor Sessak
Originally committed as revision 21185 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13Remove the struct SiprModeParam of the context. This will simplify splittingVitor Sessak
the file for future 16k mode decoder code. Originally committed as revision 21184 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13SIPR: kill variable-length arraysMåns Rullgård
Two of these are in fact constant size, so use the constant instead of a variable in the declarations. The remaining one is small enough that always using the maximum size is acceptable. Originally committed as revision 21183 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11SIPR decoder for modes 8k5, 6k5 and 5k0.Vladimir Voroshilov
Patch by Vladimir Voroshilov and myself. Originally committed as revision 21125 to svn://svn.ffmpeg.org/ffmpeg/trunk