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
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
2008-12-09Make av_log_missing_feature an internal function, and change its nameStefano Sabatini
to ff_log_missing_feature. Originally committed as revision 16037 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-04Silence some ICC warnings. Patch by Vitor Sessak.Vitor Sessak
Originally committed as revision 16006 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-04Add expected const qualifier on 'buf' to match AVCodec.decode's declaration.Reynaldo H. Verdejo Pinochet
This change gets rid of another compiler warning. Originally committed as revision 16005 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-04COSMETICS, add missing remarks crediting Ben and KenanReynaldo H. Verdejo Pinochet
Originally committed as revision 16003 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-04Removes misleading const qualifier, gets rid of two compiler warningsReynaldo H. Verdejo Pinochet
Originally committed as revision 15997 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-02Trivial rephrasing, avoids too long lineReynaldo H. Verdejo Pinochet
Originally committed as revision 15985 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-02Trivial, Cosmetics, mostly brace placement changesReynaldo H. Verdejo Pinochet
Originally committed as revision 15984 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-02Commit last ok'ed parts of QCELP decoder and enable it.Kenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15978 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-02More OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15975 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-30More OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15961 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-22Trivial, CosmeticsReynaldo H. Verdejo Pinochet
Originally committed as revision 15905 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-22Trivial, CosmeticsReynaldo H. Verdejo Pinochet
Originally committed as revision 15904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-21More OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15901 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-16Credit Kenan Gillet for his contributions towards merging the SoC QCELP decoder.Reynaldo H. Verdejo Pinochet
Originally committed as revision 15839 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-16CosmeticsReynaldo H. Verdejo Pinochet
Originally committed as revision 15838 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-14More OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15822 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-11More OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15802 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-09More OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15797 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-31OKed parts of the QCELP decoderKenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15759 to svn://svn.ffmpeg.org/ffmpeg/trunk