summaryrefslogtreecommitdiff
path: root/libavcodec/g726.c
Commit message (Expand)AuthorAge
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-29
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
* Set a constant frame size for encoding G.726 audio.Justin Ruggles2010-09-11
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-24
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
* Replace generic CONFIG_ENCODERS preprocessor conditionals by more specificDiego Biurrun2008-09-03
* Prevent a division by 0 in the g726 decoder when the configured samplerate is 0.Laurent Aimar2008-09-02
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
* Do not shift F[I] twice, it is also clearer and smaller now.Michael Niedermayer2008-06-19
* Factorize c->ap += (-c->ap) >> 4 outMichael Niedermayer2008-06-19
* Get rid of G726Tables.bits.Michael Niedermayer2008-06-19
* Copy 4 pointers to avid dozends of ptr dereferences.Michael Niedermayer2008-06-19
* Does not need to be int16.Michael Niedermayer2008-06-19
* Factorize I >> (c->tbls->bits - 1) out.Michael Niedermayer2008-06-19
* 1 abs() lessMichael Niedermayer2008-06-19
* simplifyMichael Niedermayer2008-06-18
* useless ()Michael Niedermayer2008-06-18
* remove unneeded tr == 0Michael Niedermayer2008-06-18
* simplifyMichael Niedermayer2008-06-18
* Get rid of the redundant AVG726Context.Michael Niedermayer2008-06-18
* Remove the truncated bitstream handling from our g726 decoder.Michael Niedermayer2008-06-18
* Change iquant tables to int16.Michael Niedermayer2008-06-17
* simplifyMichael Niedermayer2008-06-17
* Get rid of useless wrapper function.Michael Niedermayer2008-06-17
* Do not inline g726_iterate() the function is big so its inlining willMichael Niedermayer2008-06-17
* Replace i2f(0) by the actual thing done, gcc is not an optimizing compiler.Michael Niedermayer2008-06-16
* Remove redundant zeroing (the context is memset(0)).Michael Niedermayer2008-06-16
* Use smaller data types for tables.Michael Niedermayer2008-06-16
* Float11 does not need int, .o file becomes smaller and the code mightMichael Niedermayer2008-06-16
* simplifyMichael Niedermayer2008-06-16
* Correct validity checks.Michael Niedermayer2008-06-16
* Print sane error message for channels != 1.Michael Niedermayer2008-06-16
* Check number of bits so we do not try to use table entries which do not exist.Michael Niedermayer2008-06-16
* Support decoding of sample_g726.asf.Michael Niedermayer2008-06-16
* get_bits() outputs exactly as many bits as requested no need to mask them.Michael Niedermayer2008-06-16
* Remove dead code.Michael Niedermayer2008-06-16
* -0x8000 == 0x8000 with int16Michael Niedermayer2008-06-13
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
* Fix ;;Michael Niedermayer2008-02-19
* constMichael Niedermayer2008-02-01