summaryrefslogtreecommitdiff
path: root/libavcodec/apedec.c
Commit message (Expand)AuthorAgeFilesLines
* cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-031-1/+1
* apedec: do not buffer decoded samples over AVPacketsRafaël Carré2013-08-281-3/+1
* ape: 3.80-3.92 decoding supportKostya Shishkov2013-03-251-22/+455
* add support for Monkey's Audio versions from 3.93Kostya Shishkov2013-03-151-2/+89
* ape: provide two additional bytes in buffer for old MAC versionsKostya Shishkov2013-03-151-1/+3
* ape: make version-dependent decoding functions called via pointersKostya Shishkov2013-03-151-59/+123
* avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()Diego Biurrun2013-03-131-2/+2
* lavc decoders: work with refcounted frames.Anton Khirnov2013-03-081-1/+1
* ape: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-11/+7
* lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov2012-12-041-1/+2
* Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles2012-11-111-3/+3
* apedec: output in planar sample formatJustin Ruggles2012-10-011-19/+20
* avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union memberMartin Storsjö2012-09-041-1/+1
* avopt: Store defaults for AV_OPT_TYPE_CONST in the i64 union memberMartin Storsjö2012-09-041-1/+1
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-1/+1
* ape: Use unsigned integer mathsChristophe Gisquet2012-05-101-2/+2
* cosmetics: Align codec declarationsMartin Storsjö2012-04-061-2/+2
* apedec: check bits <= 32.Michael Niedermayer2012-03-311-1/+4
* dsputil: Add ff_ prefix to the dsputil*_init* functionsMartin Storsjö2012-02-151-1/+1
* apedec: allow the user to set the maximum number of output samples per callJustin Ruggles2012-02-071-2/+20
* apedec: do not unnecessarily zero output samples for mono framesJustin Ruggles2012-02-071-11/+4
* apedec: allocate a single flat buffer for decoded samplesJustin Ruggles2012-02-071-24/+29
* apedec: use sizeof(field) instead of sizeof(type)Justin Ruggles2012-02-071-8/+10
* apedec: 8bit and 24bit supportPaul B Mahol2012-02-041-11/+45
* apedec: remove unneeded #include of get_bits.h and associated macroJustin Ruggles2012-02-021-2/+0
* apedec: av_fast_malloc() instead of av_realloc()Justin Ruggles2012-02-021-4/+5
* apedec: fix handling of packet sizes that are not a multiple of 4 bytesJustin Ruggles2012-02-021-6/+11
* Drop ALT_ prefix from BITSTREAM_READER_LE name.Diego Biurrun2011-12-221-1/+1
* Add avcodec_decode_audio4().Justin Ruggles2011-12-021-15/+22
* apedec: fix signed integer overflowsMans Rullgard2011-11-261-1/+1
* apedec: consume the whole packet when copying to the decoder buffer.Justin Ruggles2011-11-101-7/+9
* apedec: do not needlessly copy s->samples to nblocks.Justin Ruggles2011-11-101-4/+2
* apedec: check output buffer size after calculating actual output sizeJustin Ruggles2011-11-101-8/+10
* apedec: remove unneeded entropy decoder normalization.Justin Ruggles2011-11-101-11/+1
* apedec: assert that s->samples is not negative before trying to decodeJustin Ruggles2011-10-281-0/+5
* apedec: use FFALIGN macro for internal data buffer sizeJustin Ruggles2011-10-281-1/+1
* apedec: do not keep incrementing the input data pointer past the end of theJustin Ruggles2011-10-281-3/+6
* apedec: check for input buffer overflow while reading frame headerJustin Ruggles2011-10-281-6/+28
* apedec: use unsigned int for offsetJustin Ruggles2011-10-281-4/+5
* apedec: remove pointless increment of 'buf'Justin Ruggles2011-10-281-1/+0
* apedec: set s->currentframeblocks after validating nblocksJustin Ruggles2011-10-281-2/+1
* apedec: use unsigned int for 'nblocks' and make sure that it's within int rangeJustin Ruggles2011-10-281-4/+4
* apedec: do not set s->samples until after validation.Justin Ruggles2011-10-281-2/+3
* apedec: check for data buffer realloc failureJustin Ruggles2011-10-281-1/+4
* apedec: return meaningful error values in ape_decode_frame()Justin Ruggles2011-10-281-3/+3
* apedec: correct an error messageJustin Ruggles2011-10-281-3/+1
* apedec: cosmeticsJustin Ruggles2011-10-281-36/+52
* apedec: return meaningful error codes from ape_decode_init()Justin Ruggles2011-10-281-4/+4
* apedec: check for filter buffer allocation failureJustin Ruggles2011-10-281-13/+18
* apedec: use memcpy for pseudo-stereo modeJustin Ruggles2011-10-281-5/+1