summaryrefslogtreecommitdiffstats
path: root/libavcodec/g729dec.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-06-241-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: doxygen: Consistently use '@' instead of '\' for Doxygen markup. Use av_printf_format to check the usage of printf style functions Add av_printf_format, for marking printf style format strings and their parameters ARM: enable thumb for Cortex-M* CPUs nsvdec: Propagate error values instead of returning 0 in nsv_read_header(). build: remove SRC_PATH_BARE variable build: move basic rules and variables to main Makefile build: move special targets to end of main Makefile lavdev: improve feedback in case of invalid frame rate/size vfwcap: prefer "framerate_q" over "fps" in vfw_read_header() v4l2: prefer "framerate_q" over "fps" in v4l2_set_parameters() fbdev: prefer "framerate_q" over "fps" in device context bktr: prefer "framerate" over "fps" for grab_read_header() ALSA: implement channel layout for playback. alsa: support unsigned variants of already supported signed formats. alsa: add support for more formats. ARM: allow building in Thumb2 mode Conflicts: common.mak doc/APIchanges libavcodec/vdpau.h libavdevice/alsa-audio-common.c libavdevice/fbdev.c libavdevice/libdc1394.c libavutil/avutil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun2011-06-241-1/+1
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-05-191-1/+6
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | This early morning merge should fix --disable-yasm * qatar/master: Clean up #includes in cmdutils.h. g729: Merge g729.h into g729dec.c. 10l: wrap float_interleave functions in HAVE_YASM. Conflicts: libavcodec/g729.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * g729: Merge g729.h into g729dec.c.Diego Biurrun2011-05-191-1/+6
| | | | | | | | The header contains just a single define that is only used in g729dec.c.
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | | | | | 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-261-1/+1
| | | | | | | | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. 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-281-1/+1
|/ | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f6902b1217beda576aa18abf7eb72b03c)
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1
| | | | | | 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-211-1/+1
| | | | | | AVERROR_NOFMT in case of invalid / unknown packet size. Originally committed as revision 22624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make g729dec.c:decoder_init() return AVERROR(EINVAL) rather thanStefano Sabatini2010-03-181-1/+1
| | | | | | | AVERROR(NOFMT) if one channel if the number of channels specified is different than 1. Originally committed as revision 22591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pitch delay decodingVladimir Voroshilov2009-06-261-0/+25
| | | | Originally committed as revision 19281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace pitch_delay_int array with single variable.Vladimir Voroshilov2009-06-261-3/+3
| | | | Originally committed as revision 19280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LSF (Line Spectral Frequencies) decoding routine.Vladimir Voroshilov2009-06-241-0/+56
| | | | Originally committed as revision 19260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convertion of LSF values to coefficients of linear prediction filterVladimir Voroshilov2009-06-201-0/+17
| | | | Originally committed as revision 19240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* G.729 decoding routine (skeleton, including parameters decoding).Vladimir Voroshilov2009-06-181-21/+92
| | | | Originally committed as revision 19218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* G.729 decoder initialization routine (skeleton)Vladimir Voroshilov2009-06-141-0/+8
| | | | Originally committed as revision 19188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace MAX_SUBFRAME_SIZE and ctx->subframe_size with SUBFRAME_SIZE,Vladimir Voroshilov2009-06-141-4/+4
| | | | | | since subframe length is the same in all G.729 modes. Originally committed as revision 19187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* K&R formatting of already submitted G.729 codeVladimir Voroshilov2009-06-061-35/+21
| | | | Originally committed as revision 19127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert structure names to FFmpeg styleVladimir Voroshilov2009-06-061-2/+2
| | | | Originally committed as revision 19123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Internal routine should not use name of standard function.Vladimir Voroshilov2009-06-061-1/+1
| | | | | | Use g729_prng instead. Originally committed as revision 19120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ff_g729_ and g729_ prefixes from static routines.Vladimir Voroshilov2009-06-051-4/+4
| | | | Originally committed as revision 19118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-131-1/+1
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename acelp_math.[ch] to celp_math.[ch] to prepare for QCELP decoder merge.Kenan Gillet2008-10-241-1/+1
| | | | | | patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another set of approved changes for G.729: includes, formats structure,Vladimir Voroshilov2008-09-171-0/+45
| | | | | | several parts of main decoding routine and initialization code. Originally committed as revision 15341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove not approved parts.Vladimir Voroshilov2008-09-061-18/+0
| | | | Originally committed as revision 15224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another set of approved G.729 chunks (from decoder core)Vladimir Voroshilov2008-09-031-0/+43
| | | | Originally committed as revision 15168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parity bit calculation routine for G.729Vladimir Voroshilov2008-09-021-0/+8
| | | | Originally committed as revision 15154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another set of definitions for G.729Vladimir Voroshilov2008-08-261-0/+15
| | | | Originally committed as revision 14973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move from g729.h all definitions which are used only in g729dec.cVladimir Voroshilov2008-08-231-0/+18
| | | | Originally committed as revision 14915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* G.729 decoder main codeVladimir Voroshilov2008-08-171-0/+52
(just skeleton, contains only parts, explicitly ok'ed by Michael) Originally committed as revision 14800 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud