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 (Collapse)Author
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
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-12cook: decode directly to the user-provided AVFrameJustin Ruggles
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
It will be useful in the upcoming transition to refcounted AVFrames.
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-11-01cook: use av_dlog() for debug logging instead of av_log() with AV_LOG_ERRORJustin Ruggles
2012-11-01cook: move samples_per_frame from COOKSubpacket to where it is usedJustin Ruggles
2012-11-01cook: use av_get_channel_layout_nb_channels() instead of cook_count_channels()Justin Ruggles
2012-11-01cook: reverse a condition so that the code makes more senseJustin Ruggles
2012-11-01cook: remove unneeded COOKContext variable, sample_rateJustin Ruggles
2012-11-01cook: remove unneeded COOKContext variable, bit_rateJustin Ruggles
2012-11-01cook: use AVCodecContext.channels instead of keeping a private copyJustin Ruggles
2012-10-26cook: Remove some silly Doxygen commentsDiego Biurrun
2012-10-26cook: Remove senseless maybe_reformat_buffer32() functionDiego Biurrun
2012-10-26cook: cosmetics: Better names for joint_decode() function parametersDiego Biurrun
2012-10-26cook: cosmetics: Better name for ccpl COOKSubpacket memberDiego Biurrun
2012-10-01cook: use planar sample formatJustin Ruggles
2012-10-01avcodec: Drop some silly commented-out av_log() invocationsDiego Biurrun
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-30Improve descriptiveness of a number of codec and container long namesDiego Biurrun
2012-04-18cook: Make constants passed to AV_BE2NE32C() unsigned to avoid signed overflow.Alex Converse
2012-03-28Replace memset(0) by zero initializations.Diego Biurrun
Also remove one pointless zero initialization in rangecoder.c.
2012-03-11cook: error out on quant_index values outside [-63, 63] range.Ronald S. Bultje
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2012-03-11cook: expand dither_tab[], and make sure indexes into it don't overflow.Ronald S. Bultje
Fixes overflows in accessing dither_tab[]. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2012-03-07cook: extend channel uncoupling tables so the full bit range is covered.Ronald S. Bultje
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2012-02-18cook: prevent div-by-zero if channels is zero.Ronald S. Bultje
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2012-02-16vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-12-31cook: K&R formatting cosmeticsShitiz Garg
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-12-03Add avcodec_decode_audio4().Justin Ruggles
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
2011-11-26cook: use a table for xor key rotationMans Rullgard
This is simpler and avoids an invalid shift by 32 in the aligned case. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-11-26cook: fix apparent typo in extradata parsingK.Y.H
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-10-29cook: return AVERROR_PATCHWELCOME instead of ENOTSUPJustin Ruggles
ENOTSUP is not defined on some systems
2011-10-29cook: check output buffer size before decodingJustin Ruggles
2011-10-29cook: do not needlessly set *data_size to 0Justin Ruggles
2011-10-29cook: remove pointless return statementsJustin Ruggles
2011-10-29cook: simplify decouple_info()Justin Ruggles
2011-10-29cook: return appropriate error codes instead of -1Justin Ruggles
2011-10-29cook: avoid hardcoded sizes in sizeof()Justin Ruggles
2011-10-29cook: remove unneeded #includesJustin Ruggles
2011-10-29cook: output float samples instead of converting to int16Justin Ruggles
2011-10-07cook: Fix js_vlc_bits value validation for joint stereoLaurent Aimar
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-07-03doxygen: Drop array size declarations from Doxygen parameter names.Diego Biurrun
Adding [] to a Doxygen parameter name clashes with Doxygen syntax.
2011-07-03Remove statements immediately following unconditional jumpsMans Rullgard
This removes a number of compiler warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-03Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun
2011-06-03cook: Remove non-compiling debug output.Diego Biurrun
random_state was changed from an int to a struct and can no longer be printed as easily as before.
2011-06-03cook: Remove unused debug functions.Diego Biurrun
2011-04-26Add AVX FFT implementation.Vitor Sessak
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-04-23cook: Fix small typo in av_log_ask_for_sample message.Diego Biurrun
2011-04-22Use av_log_ask_for_sample() to request samples from users.Diego Biurrun