Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-08-28apedec: do not buffer decoded samples over AVPacketsRafaël Carré
2013-03-25ape: 3.80-3.92 decoding supportKostya Shishkov
2013-03-15add support for Monkey's Audio versions from 3.93Kostya Shishkov
2013-03-15ape: provide two additional bytes in buffer for old MAC versionsKostya Shishkov
2013-03-15ape: make version-dependent decoding functions called via pointersKostya Shishkov
2013-03-14avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()Diego Biurrun
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-02-12ape: decode directly to the user-provided AVFrameJustin Ruggles
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
2012-10-01apedec: output in planar sample formatJustin Ruggles
2012-09-05avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union memberMartin Storsjö
2012-09-05avopt: Store defaults for AV_OPT_TYPE_CONST in the i64 union memberMartin Storsjö
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-05-10ape: Use unsigned integer mathsChristophe Gisquet
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
2012-03-31apedec: check bits <= 32.Michael Niedermayer
2012-02-16dsputil: Add ff_ prefix to the dsputil*_init* functionsMartin Storsjö
2012-02-07apedec: allow the user to set the maximum number of output samples per callJustin Ruggles
2012-02-07apedec: do not unnecessarily zero output samples for mono framesJustin Ruggles
2012-02-07apedec: allocate a single flat buffer for decoded samplesJustin Ruggles
2012-02-07apedec: use sizeof(field) instead of sizeof(type)Justin Ruggles
2012-02-04apedec: 8bit and 24bit supportPaul B Mahol
2012-02-03apedec: remove unneeded #include of get_bits.h and associated macroJustin Ruggles
2012-02-03apedec: av_fast_malloc() instead of av_realloc()Justin Ruggles
2012-02-03apedec: fix handling of packet sizes that are not a multiple of 4 bytesJustin Ruggles
2011-12-22Drop ALT_ prefix from BITSTREAM_READER_LE name.Diego Biurrun
2011-12-03Add avcodec_decode_audio4().Justin Ruggles
2011-11-26apedec: fix signed integer overflowsMans Rullgard
2011-11-10apedec: consume the whole packet when copying to the decoder buffer.Justin Ruggles
2011-11-10apedec: do not needlessly copy s->samples to nblocks.Justin Ruggles
2011-11-10apedec: check output buffer size after calculating actual output sizeJustin Ruggles
2011-11-10apedec: remove unneeded entropy decoder normalization.Justin Ruggles
2011-10-28apedec: assert that s->samples is not negative before trying to decodeJustin Ruggles
2011-10-28apedec: use FFALIGN macro for internal data buffer sizeJustin Ruggles
2011-10-28apedec: do not keep incrementing the input data pointer past the end of theJustin Ruggles
2011-10-28apedec: check for input buffer overflow while reading frame headerJustin Ruggles
2011-10-28apedec: use unsigned int for offsetJustin Ruggles
2011-10-28apedec: remove pointless increment of 'buf'Justin Ruggles
2011-10-28apedec: set s->currentframeblocks after validating nblocksJustin Ruggles
2011-10-28apedec: use unsigned int for 'nblocks' and make sure that it's within int rangeJustin Ruggles
2011-10-28apedec: do not set s->samples until after validation.Justin Ruggles
2011-10-28apedec: check for data buffer realloc failureJustin Ruggles
2011-10-28apedec: return meaningful error values in ape_decode_frame()Justin Ruggles
2011-10-28apedec: correct an error messageJustin Ruggles
2011-10-28apedec: cosmeticsJustin Ruggles
2011-10-28apedec: return meaningful error codes from ape_decode_init()Justin Ruggles
2011-10-28apedec: check for filter buffer allocation failureJustin Ruggles
2011-10-28apedec: use memcpy for pseudo-stereo modeJustin Ruggles