| Commit message (Expand) | Author | Age | Files | Lines |
* | cosmetics: Group .name and .long_name together in codec/format declarations | Diego Biurrun | 2013-10-03 | 1 | -2/+2 |
* | mace: Make sure that the channel count is set to a valid value | Martin Storsjö | 2013-09-17 | 1 | -2/+2 |
* | lavc decoders: work with refcounted frames. | Anton Khirnov | 2013-03-08 | 1 | -1/+1 |
* | mace: decode directly to the user-provided AVFrame | Justin Ruggles | 2013-02-12 | 1 | -11/+5 |
* | lavc: add a wrapper for AVCodecContext.get_buffer(). | Anton Khirnov | 2012-12-04 | 1 | -1/+2 |
* | mace: use planar sample format | Justin Ruggles | 2012-10-09 | 1 | -17/+15 |
* | Don't include common.h from avutil.h | Martin Storsjö | 2012-08-15 | 1 | -0/+1 |
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -3/+3 |
* | cosmetics: Align codec declarations | Martin Storsjö | 2012-04-06 | 1 | -2/+2 |
* | cosmetics: Remove extra newlines at EOF | Alex Converse | 2012-01-27 | 1 | -1/+0 |
* | Add avcodec_decode_audio4(). | Justin Ruggles | 2011-12-02 | 1 | -12/+21 |
* | mace: only calculate output buffer size once | Justin Ruggles | 2011-11-08 | 1 | -4/+7 |
* | Replace ffmpeg references with more accurate libav* references. | Diego Biurrun | 2011-11-02 | 1 | -1/+1 |
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -16/+12 |
* | 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 | -1/+1 |
* | Remove explicit filename from Doxygen @file commands. | Diego Biurrun | 2010-04-20 | 1 | -1/+1 |
* | Define AVMediaType enum, and use it instead of enum CodecType, which | Stefano Sabatini | 2010-03-30 | 1 | -2/+2 |
* | Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an | Thilo Borgmann | 2009-04-07 | 1 | -1/+3 |
* | Use full internal pathname in doxygen @file directives. | Diego Biurrun | 2009-02-01 | 1 | -1/+1 |
* | Cosmetics: rename mace3_decode_frame() to mace_decode_frame() | Vitor Sessak | 2008-10-05 | 1 | -3/+3 |
* | Avoid code duplication between mace3_decode_frame() and mace6_decode_frame() | Vitor Sessak | 2008-10-05 | 1 | -41/+19 |
* | Use a for() instead of triplicating code. | Vitor Sessak | 2008-10-05 | 1 | -32/+30 |
* | Factorize duplicate table reading code. | Vitor Sessak | 2008-10-05 | 1 | -15/+17 |
* | Convert two tables to signed decimal | Vitor Sessak | 2008-09-09 | 1 | -4/+4 |
* | Cosmetics: remove useless parentheses | Vitor Sessak | 2008-09-09 | 1 | -1/+1 |
* | Remove ChannelData.lev var and use ChannelData.level instead | Vitor Sessak | 2008-09-09 | 1 | -3/+3 |
* | Check output buffer size before decoding. | Vitor Sessak | 2008-09-07 | 1 | -0/+10 |
* | Cosmetics: rename vars s/ctx/chd/ | Vitor Sessak | 2008-09-07 | 1 | -25/+25 |
* | Exploit symmetry to reduce size of tables by half. | Vitor Sessak | 2008-09-07 | 1 | -202/+112 |
* | Cosmetics: s/short/int16_t/ | Vitor Sessak | 2008-09-07 | 1 | -5/+5 |
* | Remove cast, now tables are signed. | Vitor Sessak | 2008-09-07 | 1 | -4/+4 |
* | Convert tables to signed and decimal. | Vitor Sessak | 2008-09-07 | 1 | -194/+194 |
* | Remove unused table entries. | Vitor Sessak | 2008-09-07 | 1 | -75/+77 |
* | Remove commented out code. | Vitor Sessak | 2008-09-07 | 1 | -3/+0 |
* | Use FFMIN() instead of rewriting it. | Vitor Sessak | 2008-09-07 | 1 | -4/+1 |
* | Factorize broken clipping in its own function and document it. | Vitor Sessak | 2008-09-07 | 1 | -12/+16 |
* | Cosmetics: whitespace/linebreaks | Vitor Sessak | 2008-09-07 | 1 | -12/+18 |
* | Use the same 8 bit -> 16 bit conversion as QuickTime. | Vitor Sessak | 2008-09-07 | 1 | -3/+7 |
* | Do not share context variables between channels and do not zero them at | Vitor Sessak | 2008-09-07 | 1 | -11/+13 |
* | Remove output pointer from context | Vitor Sessak | 2008-09-07 | 1 | -19/+21 |
* | Cosmetics: indent after last commit and remove useless braces | Vitor Sessak | 2008-09-05 | 1 | -6/+5 |
* | Simplify: use a for instead of unrolling by hand | Vitor Sessak | 2008-09-05 | 1 | -7/+4 |
* | Functions mace{3,6}_decode_frame() are just wrappers to Exp1to{3,6}(). This c... | Vitor Sessak | 2008-09-04 | 1 | -90/+34 |
* | Simplify: use two distinct functions to decode MACE3 and MACE6, since the | Vitor Sessak | 2008-09-04 | 1 | -24/+26 |
* | Simplify mace_decode_frame() | Vitor Sessak | 2008-09-04 | 1 | -8/+11 |
* | Remove useless comments | Vitor Sessak | 2008-09-04 | 1 | -9/+0 |
* | Reindent mace.c, its indentation was completly inconsistent with the coding r... | Vitor Sessak | 2008-09-04 | 1 | -95/+95 |
* | Modify all codecs to report their supported input and output sample format(s). | Peter Ross | 2008-07-31 | 1 | -0/+1 |