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
2012-12-14g729dec: check pitch_delay_int.Michael Niedermayer
Fix out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-12-05Merge commit '594d4d5df3c70404168701dd5c90b7e6e5587793'Michael Niedermayer
* commit '594d4d5df3c70404168701dd5c90b7e6e5587793': lavc: add a wrapper for AVCodecContext.get_buffer(). Conflicts: libavcodec/4xm.c libavcodec/8svx.c libavcodec/bmv.c libavcodec/cljr.c libavcodec/cscd.c libavcodec/dnxhddec.c libavcodec/dpcm.c libavcodec/dpx.c libavcodec/eacmv.c libavcodec/eamad.c libavcodec/frwu.c libavcodec/g723_1.c libavcodec/gifdec.c libavcodec/idcinvideo.c libavcodec/iff.c libavcodec/indeo3.c libavcodec/internal.h libavcodec/interplayvideo.c libavcodec/kmvc.c libavcodec/mpc7.c libavcodec/mpegaudiodec.c libavcodec/pcx.c libavcodec/pngdec.c libavcodec/pnmdec.c libavcodec/rl2.c libavcodec/snow.c libavcodec/targa.c libavcodec/tscc.c libavcodec/txd.c libavcodec/utils.c libavcodec/v210dec.c libavcodec/vb.c libavcodec/vmdav.c libavcodec/vp56.c libavcodec/vqavideo.c libavcodec/wavpack.c libavcodec/wnv1.c libavcodec/xl.c libavcodec/yop.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-11-22use correct doxygen parameter direction syntaxPeter Ross
Signed-off-by: Peter Ross <pross@xvid.org> Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-11-22ensure comment blocks that contain doxygen commands start with double asterixPeter Ross
Reveiwed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-08Merge commit '36ef5369ee9b336febc2c270f8718cec4476cb85'Michael Niedermayer
* commit '36ef5369ee9b336febc2c270f8718cec4476cb85': Replace all CODEC_ID_* with AV_CODEC_ID_* lavc: add AV prefix to codec ids. Conflicts: doc/APIchanges doc/examples/decoding_encoding.c doc/examples/muxing.c ffmpeg.c ffprobe.c ffserver.c libavcodec/8svx.c libavcodec/avcodec.h libavcodec/dnxhd_parser.c libavcodec/dvdsubdec.c libavcodec/error_resilience.c libavcodec/h263dec.c libavcodec/libvorbisenc.c libavcodec/mjpeg_parser.c libavcodec/mjpegenc.c libavcodec/mpeg12.c libavcodec/mpeg4videodec.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/pcm.c libavcodec/r210dec.c libavcodec/utils.c libavcodec/v210dec.c libavcodec/version.h libavdevice/alsa-audio-dec.c libavdevice/bktr.c libavdevice/v4l2.c libavformat/asfdec.c libavformat/asfenc.c libavformat/avformat.h libavformat/avidec.c libavformat/caf.c libavformat/electronicarts.c libavformat/flacdec.c libavformat/flvdec.c libavformat/flvenc.c libavformat/framecrcenc.c libavformat/img2.c libavformat/img2dec.c libavformat/img2enc.c libavformat/ipmovie.c libavformat/isom.c libavformat/matroska.c libavformat/matroskadec.c libavformat/matroskaenc.c libavformat/mov.c libavformat/movenc.c libavformat/mp3dec.c libavformat/mpeg.c libavformat/mpegts.c libavformat/mxf.c libavformat/mxfdec.c libavformat/mxfenc.c libavformat/nsvdec.c libavformat/nut.c libavformat/oggenc.c libavformat/pmpdec.c libavformat/rawdec.c libavformat/rawenc.c libavformat/riff.c libavformat/sdp.c libavformat/utils.c libavformat/vocenc.c libavformat/wtv.c libavformat/xmv.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-29cosmetics: minor libavcodec spelling errorsLou Logan
Also update some common misspelled words in patcheck Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-14g729dec: align codec declarationsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-04-16g729dec: initialize pitch_delay_int_prev to the minimum valid value.Michael Niedermayer
This prevents an out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-03-14g729dec: fix scalarproduct_int16 after API changeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-03-13cosmetics: fix some typosLou Logan
Patch attached. From 2d4094fc0dcb4ccd0735eb7e1719e228ebb56bb9 Mon Sep 17 00:00:00 2001 From: Lou Logan <lou@lrcd.com> Date: Mon, 12 Mar 2012 14:13:44 -0800 Subject: [PATCH] cosmetics: fix some typos Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-02-17g729dec: fix 'warning: assignment from incompatible pointer type'Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-02-17g729dec: fix use of deprecated functions.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-30Use more designated initializers.Paul B Mahol
Also remove some pointless NULL/0 assigments. C++ code must be left as it is because named struct initializers are not supported by C++ standard.
2011-12-03g729dec: update to the new APIMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-01g729dec: initialize bit reader with the correct buffer sizeVitor Sessak
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-30g729: dont force all cpu optims to off but override just the one that doesnt ↵Michael Niedermayer
work. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-29Add a shift parameter to celp_lp_synthesis_filter for reuse by the G.723.1 ↵Mohamed Naufal Basheer
decoder
2011-09-26g729dec: avoid unnecessary struct copyingVitor Sessak
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-26g729dec: remove useless headersVitor Sessak
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-25g729dec: Add ff_ prefix to g729_postfilter() and g729_adaptive_gain_control()Vitor Sessak
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-24g729dec: disable all cpu acceleration, the code does not provide any alignment.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-24g729dec: set sample format.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-24Disable MMXVladimir Voroshilov
2011-09-24Fix comments about implemented codecsVladimir Voroshilov
2011-09-24Adaptive gain controlVladimir Voroshilov
2011-09-24G.729 postfilterVladimir Voroshilov
2011-09-24Replace pitch_delay_int with arrayVladimir Voroshilov
2011-09-24g729dec: Make 2 functions static that are not used outside g729dec.cMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-24High-pass filterVladimir Voroshilov
2011-09-24Add G.729D decoderVladimir Voroshilov
2011-09-24Synthesis filterVladimir Voroshilov
2011-09-24Indentation fix after gain codes decoding2Vladimir Voroshilov
2011-09-24Gain pitch and gain code for G729DVladimir Voroshilov
2011-09-24Indentation fix 2Vladimir Voroshilov
2011-09-24Convert gain pitch and gain code to arraysVladimir Voroshilov
2011-09-24Interolate excitation signalVladimir Voroshilov
2011-09-24Fixed- and adaptive-codebook gainsVladimir Voroshilov
2011-09-24Frame erasure support for fixed-codebook vectorsVladimir Voroshilov
2011-09-24Fixed-codebook vector decodingVladimir Voroshilov
2011-09-24Add packet_typeVladimir Voroshilov
2011-09-24Frame erasure support for pitch delay decodingVladimir Voroshilov
2011-09-24Doxy for LSF erasure caseVladimir Voroshilov
2011-09-24doxy comments for LSF arrayVladimir Voroshilov
2011-09-24Indentation fix in LSFVladimir Voroshilov
2011-09-24Frame erasure support for LSF decodingVladimir Voroshilov
2011-09-24Revert "g729: Merge g729.h into g729dec.c."Michael Niedermayer
This reverts commit a2077b85da5bf71167b11925aabbb738558a134d.
2011-09-24Restore WIP g729 code that has been remvoed by diego biurrun.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-07-20Remove unused and non-compiling vestigial g729 decoderDiego Biurrun
2011-06-24doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-05-19g729: Merge g729.h into g729dec.c.Diego Biurrun
The header contains just a single define that is only used in g729dec.c.