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-07-25cosmetics: Add '0' to float constants ending in '.'.Diego Biurrun
2013-03-14avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()Diego Biurrun
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-02-12qcelp: decode directly to the user-provided AVFrameJustin Ruggles
2013-01-22floatdsp: move scalarproduct_float from dsputil to avfloatdsp.Ronald S. Bultje
This makes the aac decoder and all voice codecs independent of dsputil.
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
It will be useful in the upcoming transition to refcounted AVFrames.
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-11-01qcelpdec: set channel layoutJustin Ruggles
2012-08-27celp_math: Replace duplicate ff_dot_productf() by ff_scalarproduct_c()Diego Biurrun
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2011-12-19qcelpdec: K&R formatting cosmeticsAsen Lekov
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-12-19qcelpdec: cosmetics: drop some pointless parenthesesDiego Biurrun
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-10-05qcelpdec: cosmetics: do not add line break before opening bracket in 'for',Justin Ruggles
'while', 'if/else', and 'switch' statements. also fixes some spacing, but only if already changing a line
2011-10-05qcelp: check output buffer size before decodingJustin Ruggles
2011-10-05qcelpdec: fix the return value of qcelp_decode_frame().Chris Rankin
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-06-24doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun
Signed-off-by: Diego Biurrun <diego@biurrun.de>
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-07-02Grammar fixesMåns Rullgård
Originally committed as revision 23961 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-21Implement QCELP postfilter.Ronald S. Bultje
Originally committed as revision 22935 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
2010-01-04Reindent after last commitVitor Sessak
Originally committed as revision 21019 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-04Add missing "static" qualifierVitor Sessak
Originally committed as revision 21018 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-09Do not hardcode filter order in ff_acelp_lspd2lpc()Vitor Sessak
Originally committed as revision 20485 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-04Implement ff_scale_vector_to_given_sum_of_squares()Reynaldo H. Verdejo Pinochet
to aid generic gain control routines. Changes for qcelp are included. Patch Collin McQuillan. Originally committed as revision 20450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-03Expose QCELP's floating-point LSP-to-LPC functionColin McQuillan
qcelp_lsp exported a single function, ff_acelp_lspd2lpc, which was not specific to qcelp. It can be kept with its fixed-point version ff_acelp_lsp2lpc in lpc.c. Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19571 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-03Make the LSP naming more consistentColin McQuillan
Use the convention from lsp.c: an LSF is a frequency, an LSP is the cosine of an LSF, and LSP functions should have an ff_acelp prefix. Use a "d" suffix to specify doubles. Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19570 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-29Rename ff_log_missing_feature() to av_log_missing_feature().Ronald S. Bultje
Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-13Fix bandwith vs. bandwiDth typo.Diego Biurrun
Originally committed as revision 18804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-04Properly handle SILENCE frame. Patch by Kenan Gillet.Kenan Gillet
Originally committed as revision 18734 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-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Move scale factor computation to its own function. Patch by KenanKenan Gillet
Gillet. Originally committed as revision 18345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-04Add missing static qualifier from function declaration. Patch by KenanKenan Gillet
Gillet. Originally committed as revision 18331 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-10Cosmetics from Kenan Gillet's 'extract and share weighted_vector_sumf'Reynaldo H. Verdejo Pinochet
patchset. Just a reindent. Originally committed as revision 17917 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-10Functional part Kenan Gillet's 'extract and share weighted_vector_sumf'Reynaldo H. Verdejo Pinochet
patchset. Idea is to share this common code between the AMR and QCELP decoders. Originally committed as revision 17916 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-04Part 2 of 2 of Kenan Gillet's 'make ff_qcelp_lspf2lpcReynaldo H. Verdejo Pinochet
more general' changeset. This one relocates the QCELP especific code to the qcelpdec.* files. Originally committed as revision 17800 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-16Split ff_log_missing_feature into ff_log_missing_featureKenan Gillet
and ff_log_ask_for_sample. Patch by Kenan Gillet: gmail_adress(author) Originally committed as revision 16637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-28Silence one warning when compiling with icc:Carl Eugen Hoyos
warning #188: enumerated type mixed with another type if((q->bitrate = determine_bitrate(avctx, buf_size, &buf)) == I_F_Q) ^ Originally committed as revision 16374 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-26COSMETICS Part 3 and final of Kenan Gillet's QCELP silence handling patch.Reynaldo H. Verdejo Pinochet
Originally committed as revision 16338 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-26Part 2 of Kenan Gillet's QCELP silence handling patch.Reynaldo H. Verdejo Pinochet
Originally committed as revision 16337 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-20Cosmetics by Kenan Gillet. Part 1 of 3 of his 'qcelp: silence handling'Reynaldo H. Verdejo Pinochet
changeset. Originally committed as revision 16244 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11Avoid the 'Claimed bitrate and buffer size mismatch' warning storm.Kenan Gillet
- Patch by Kenan Gillet Originally committed as revision 16046 to svn://svn.ffmpeg.org/ffmpeg/trunk