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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-11-02libgsmdec: check output buffer size before decodingJustin Ruggles
2011-11-02gsmdec: log error message when output buffer is too small.Justin Ruggles
2011-11-02gsm: use av_get_bytes_per_sample() in frame_bytes calculationJustin Ruggles
2011-11-02Replace some forgotten FFmpeg references by Libav.Diego Biurrun
2011-11-02Replace ffmpeg references with more accurate libav* references.Diego Biurrun
2011-11-02Replace outdated references to ffmpeg tool with avconv.Diego Biurrun
2011-11-02Remove some stray unnecessary ffmpeg references.Diego Biurrun
2011-11-02vp3: remove some pointless commentsDiego Biurrun
2011-11-02lavc: use designated initialisers for parsers.Anton Khirnov
2011-11-02g726dec: add flush() function to reset state when seekingJustin Ruggles
2011-11-02g726: don't pass index to g726_reset()Justin Ruggles
2011-11-02g726enc: add private option for setting code size directly.Justin Ruggles
2011-11-02g726: wrap the decoder functions with a CONFIG_ADPCM_G726_DECODER checkJustin Ruggles
2011-11-02g726: group the g726_encoder AVCodec with the other encoding functionsJustin Ruggles
2011-11-02g726: return AVERROR(EINVAL) instead of -1 for invalid channel countJustin Ruggles
2011-11-02g726enc: use av_assert0() for sample_rate validationJustin Ruggles
2011-11-02g726: treat sample rates other than 8kHz as unofficial.Justin Ruggles
2011-11-02g726dec: remove the sample_rate validationJustin Ruggles
2011-11-02g726: use bits_per_coded_sample instead of bitrate to determine modeJustin Ruggles
2011-11-02g726: split the init function for the encoder and decoderJustin Ruggles
2011-11-02g726: pre-calculate the number of output samples.Justin Ruggles
2011-11-02g726: use int16_t instead of shortJustin Ruggles
2011-10-31libdirac/libschroedinger: Drop unnecessary symbol prefixes.Diego Biurrun
2011-10-30cin audio: use sign_extend() instead of casting to int16_tJustin Ruggles
2011-10-30cin audio: restructure decoding loop to avoid a separate counter variableJustin Ruggles
2011-10-30cin audio: use local variable for delta valueJustin Ruggles
2011-10-30cin audio: remove unneeded cast from void*Justin Ruggles
2011-10-30cin audio: validate the channel countJustin Ruggles
2011-10-30cin audio: remove unneeded AVCodecContext pointer from CinAudioContextJustin Ruggles
2011-10-30flacdec: use av_get_bytes_per_sample() to get sample sizeJustin Ruggles
2011-10-30dca: handle errors from dca_decode_block()Justin Ruggles
2011-10-30dca: return error if the frame header is invalidJustin Ruggles
2011-10-30dca: return proper error codes instead of -1Justin Ruggles
2011-10-29utvideo: handle empty Huffman treesKostya Shishkov
2011-10-29binkaudio: change short to int16_tJustin Ruggles
2011-10-29binkaudio: only decode one block at a time.Justin Ruggles
2011-10-29binkaudio: store interleaved overlap samples in BinkAudioContext.Justin Ruggles
2011-10-29binkaudio: pre-calculate quantization factorsJustin Ruggles
2011-10-29binkaudio: add some buffer overread checks.Justin Ruggles
2011-10-29atrac3: support float or int16 output using request_sample_fmtJustin Ruggles
2011-10-29atrac3: add CODEC_CAP_SUBFRAMES capabilityJustin Ruggles
2011-10-29atrac3: return appropriate error codes instead of -1Justin Ruggles
2011-10-29atrac3: make sure all memory is freed on init failureJustin Ruggles
2011-10-29atrac3: add a couple macro constantsJustin Ruggles
2011-10-29atrac3: return error if packet is too smallJustin Ruggles
2011-10-29atrac3: check output buffer size before decodingJustin Ruggles
2011-10-29atrac3: use separate pointers for each channel in decodeFrame()Justin Ruggles
2011-10-29atrac3: use optimized float_interleave() function for stereo interleavingJustin Ruggles
2011-10-29atrac3: decode mono directly to the output bufferJustin Ruggles
2011-10-29atrac3: decode output to float samples instead of converting to s16Justin Ruggles