| Commit message (Expand) | Author | Age | Files | Lines |
* | cosmetics: Align codec declarations | Martin Storsjö | 2012-04-06 | 1 | -4/+5 |
* | g726enc: use AVCodec.encode2() | Justin Ruggles | 2012-03-20 | 1 | -8/+21 |
* | Add avcodec_decode_audio4(). | Justin Ruggles | 2011-12-02 | 1 | -10/+19 |
* | g726dec: add flush() function to reset state when seeking | Justin Ruggles | 2011-11-01 | 1 | -0/+7 |
* | g726: don't pass index to g726_reset() | Justin Ruggles | 2011-11-01 | 1 | -4/+4 |
* | g726enc: add private option for setting code size directly. | Justin Ruggles | 2011-11-01 | 1 | -9/+29 |
* | g726: wrap the decoder functions with a CONFIG_ADPCM_G726_DECODER check | Justin Ruggles | 2011-11-01 | 1 | -0/+2 |
* | g726: group the g726_encoder AVCodec with the other encoding functions | Justin Ruggles | 2011-11-01 | 1 | -15/+13 |
* | g726: return AVERROR(EINVAL) instead of -1 for invalid channel count | Justin Ruggles | 2011-11-01 | 1 | -2/+2 |
* | g726enc: use av_assert0() for sample_rate validation | Justin Ruggles | 2011-11-01 | 1 | -4/+2 |
* | g726: treat sample rates other than 8kHz as unofficial. | Justin Ruggles | 2011-11-01 | 1 | -0/+15 |
* | g726dec: remove the sample_rate validation | Justin Ruggles | 2011-11-01 | 1 | -5/+0 |
* | g726: use bits_per_coded_sample instead of bitrate to determine mode | Justin Ruggles | 2011-11-01 | 1 | -21/+19 |
* | g726: split the init function for the encoder and decoder | Justin Ruggles | 2011-11-01 | 1 | -14/+35 |
* | g726: pre-calculate the number of output samples. | Justin Ruggles | 2011-11-01 | 1 | -3/+11 |
* | g726: use int16_t instead of short | Justin Ruggles | 2011-11-01 | 1 | -2/+2 |
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -16/+14 |
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
* | Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf. | Diego Elio Pettenò | 2011-01-26 | 1 | -2/+2 |
* | Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enum | Stefano Sabatini | 2010-11-12 | 1 | -2/+2 |
* | Set a constant frame size for encoding G.726 audio. | Justin Ruggles | 2010-09-11 | 1 | -1/+8 |
* | Use "const" qualifier for pointers that point to input data of | Reimar Döffinger | 2010-07-24 | 1 | -1/+1 |
* | Define AVMediaType enum, and use it instead of enum CodecType, which | Stefano Sabatini | 2010-03-30 | 1 | -2/+2 |
* | Make sample_fmts and channel_layouts compound literals const to reduce size of | Reimar Döffinger | 2009-09-06 | 1 | -1/+1 |
* | Rename bitstream.h to get_bits.h. | Stefano Sabatini | 2009-04-13 | 1 | -1/+1 |
* | Split bitstream.h, put the bitstream writer stuff in the new file | Stefano Sabatini | 2009-04-12 | 1 | -0/+1 |
* | Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an | Thilo Borgmann | 2009-04-07 | 1 | -1/+3 |
* | cosmetics: Remove pointless period after copyright statement non-sentences. | Diego Biurrun | 2009-01-19 | 1 | -1/+1 |
* | Change semantic of CONFIG_*, HAVE_* and ARCH_*. | Aurelien Jacobs | 2009-01-13 | 1 | -3/+3 |
* | Replace generic CONFIG_ENCODERS preprocessor conditionals by more specific | Diego Biurrun | 2008-09-03 | 1 | -4/+4 |
* | Prevent a division by 0 in the g726 decoder when the configured samplerate is 0. | Laurent Aimar | 2008-09-02 | 1 | -1/+8 |
* | Modify all codecs to report their supported input and output sample format(s). | Peter Ross | 2008-07-31 | 1 | -0/+4 |
* | Do not shift F[I] twice, it is also clearer and smaller now. | Michael Niedermayer | 2008-06-19 | 1 | -2/+2 |
* | Factorize c->ap += (-c->ap) >> 4 out | Michael Niedermayer | 2008-06-19 | 1 | -3/+4 |
* | Get rid of G726Tables.bits. | Michael Niedermayer | 2008-06-19 | 1 | -9/+8 |
* | Copy 4 pointers to avid dozends of ptr dereferences. | Michael Niedermayer | 2008-06-19 | 1 | -11/+11 |
* | Does not need to be int16. | Michael Niedermayer | 2008-06-19 | 1 | -1/+1 |
* | Factorize I >> (c->tbls->bits - 1) out. | Michael Niedermayer | 2008-06-19 | 1 | -2/+3 |
* | 1 abs() less | Michael Niedermayer | 2008-06-19 | 1 | -4/+5 |
* | simplify | Michael Niedermayer | 2008-06-18 | 1 | -1/+1 |
* | useless () | Michael Niedermayer | 2008-06-18 | 1 | -1/+1 |
* | remove unneeded tr == 0 | Michael Niedermayer | 2008-06-18 | 1 | -2/+1 |
* | simplify | Michael Niedermayer | 2008-06-18 | 1 | -4/+1 |
* | Get rid of the redundant AVG726Context. | Michael Niedermayer | 2008-06-18 | 1 | -14/+10 |
* | Remove the truncated bitstream handling from our g726 decoder. | Michael Niedermayer | 2008-06-18 | 1 | -14/+2 |
* | Change iquant tables to int16. | Michael Niedermayer | 2008-06-17 | 1 | -10/+10 |
* | simplify | Michael Niedermayer | 2008-06-17 | 1 | -1/+1 |
* | Get rid of useless wrapper function. | Michael Niedermayer | 2008-06-17 | 1 | -7/+2 |
* | Do not inline g726_iterate() the function is big so its inlining will | Michael Niedermayer | 2008-06-17 | 1 | -1/+1 |
* | Replace i2f(0) by the actual thing done, gcc is not an optimizing compiler. | Michael Niedermayer | 2008-06-16 | 1 | -2/+2 |