summaryrefslogtreecommitdiff
path: root/libavcodec/g729dec.c
Commit message (Collapse)AuthorAge
* Merge commit '36ef5369ee9b336febc2c270f8718cec4476cb85'Michael Niedermayer2012-08-07
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | cosmetics: minor libavcodec spelling errorsLou Logan2012-06-29
| | | | | | | | | | | | Also update some common misspelled words in patcheck Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: align codec declarationsPaul B Mahol2012-06-14
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | g729dec: initialize pitch_delay_int_prev to the minimum valid value.Michael Niedermayer2012-04-16
| | | | | | | | | | | | | | This prevents an out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: fix scalarproduct_int16 after API changeMichael Niedermayer2012-03-13
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | cosmetics: fix some typosLou Logan2012-03-13
| | | | | | | | | | | | | | | | | | | | 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>
* | g729dec: fix 'warning: assignment from incompatible pointer type'Michael Niedermayer2012-02-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: fix use of deprecated functions.Michael Niedermayer2012-02-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Use more designated initializers.Paul B Mahol2011-12-30
| | | | | | | | | | | | | | 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.
* | g729dec: update to the new APIMichael Niedermayer2011-12-03
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: initialize bit reader with the correct buffer sizeVitor Sessak2011-10-01
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729: dont force all cpu optims to off but override just the one that doesnt ↵Michael Niedermayer2011-09-30
| | | | | | | | | | | | work. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Add a shift parameter to celp_lp_synthesis_filter for reuse by the G.723.1 ↵Mohamed Naufal Basheer2011-09-29
| | | | | | | | decoder
* | g729dec: avoid unnecessary struct copyingVitor Sessak2011-09-25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: remove useless headersVitor Sessak2011-09-25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: Add ff_ prefix to g729_postfilter() and g729_adaptive_gain_control()Vitor Sessak2011-09-25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: disable all cpu acceleration, the code does not provide any alignment.Michael Niedermayer2011-09-24
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: set sample format.Michael Niedermayer2011-09-24
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Disable MMXVladimir Voroshilov2011-09-24
| |
* | Fix comments about implemented codecsVladimir Voroshilov2011-09-24
| |
* | Adaptive gain controlVladimir Voroshilov2011-09-24
| |
* | G.729 postfilterVladimir Voroshilov2011-09-24
| |
* | Replace pitch_delay_int with arrayVladimir Voroshilov2011-09-24
| |
* | g729dec: Make 2 functions static that are not used outside g729dec.cMichael Niedermayer2011-09-24
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | High-pass filterVladimir Voroshilov2011-09-24
| |
* | Add G.729D decoderVladimir Voroshilov2011-09-24
| |
* | Synthesis filterVladimir Voroshilov2011-09-24
| |
* | Indentation fix after gain codes decoding2Vladimir Voroshilov2011-09-24
| |
* | Gain pitch and gain code for G729DVladimir Voroshilov2011-09-24
| |
* | Indentation fix 2Vladimir Voroshilov2011-09-24
| |
* | Convert gain pitch and gain code to arraysVladimir Voroshilov2011-09-24
| |
* | Interolate excitation signalVladimir Voroshilov2011-09-24
| |
* | Fixed- and adaptive-codebook gainsVladimir Voroshilov2011-09-24
| |
* | Frame erasure support for fixed-codebook vectorsVladimir Voroshilov2011-09-24
| |
* | Fixed-codebook vector decodingVladimir Voroshilov2011-09-24
| |
* | Add packet_typeVladimir Voroshilov2011-09-24
| |
* | Frame erasure support for pitch delay decodingVladimir Voroshilov2011-09-24
| |
* | Doxy for LSF erasure caseVladimir Voroshilov2011-09-24
| |
* | doxy comments for LSF arrayVladimir Voroshilov2011-09-24
| |
* | Indentation fix in LSFVladimir Voroshilov2011-09-24
| |
* | Frame erasure support for LSF decodingVladimir Voroshilov2011-09-24
| |
* | Revert "g729: Merge g729.h into g729dec.c."Michael Niedermayer2011-09-24
| | | | | | | | This reverts commit a2077b85da5bf71167b11925aabbb738558a134d.
* | Restore WIP g729 code that has been remvoed by diego biurrun.Michael Niedermayer2011-09-24
|/ | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Remove unused and non-compiling vestigial g729 decoderDiego Biurrun2011-07-20
|
* doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun2011-06-24
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* g729: Merge g729.h into g729dec.c.Diego Biurrun2011-05-19
| | | | The header contains just a single define that is only used in g729dec.c.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make g729dec.c:decode_frame() return AVERROR_INVALIDDATA rather thanStefano Sabatini2010-03-21
| | | | | | AVERROR_NOFMT in case of invalid / unknown packet size. Originally committed as revision 22624 to svn://svn.ffmpeg.org/ffmpeg/trunk