summaryrefslogtreecommitdiff
path: root/libavcodec/cook.c
Commit message (Collapse)AuthorAge
* cosmetics: Fix spelling mistakesVittorio Giovara2016-05-04
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavc: Consistently prefix input buffer definesVittorio Giovara2015-07-27
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* lavc: AV-prefix all codec capabilitiesVittorio Giovara2015-07-27
| | | | | | Express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* lavc: Replace av_dlog and tprintf with internal macrosVittorio Giovara2015-04-19
|
* avcodec: Don't anonymously typedef structsDiego Biurrun2015-02-14
|
* cook: Make sure there is enough extradataLuca Barbato2014-11-24
| | | | | | | At least 8 bytes are needed (Mono audio). Bug-Id: CID 741418 CC: libav-stable@libav.org
* cosmetics: Write NULL pointer equality checks more compactlyGabriel Dume2014-08-15
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* dsputil: Split audio operations off into a separate contextDiego Biurrun2014-06-22
|
* cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-03
|
* avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()Diego Biurrun2013-03-13
|
* lavc decoders: work with refcounted frames.Anton Khirnov2013-03-08
|
* cook: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov2012-12-04
| | | | It will be useful in the upcoming transition to refcounted AVFrames.
* Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles2012-11-11
| | | | Also reorder some other #include when applicable.
* cook: use av_dlog() for debug logging instead of av_log() with AV_LOG_ERRORJustin Ruggles2012-11-01
|
* cook: move samples_per_frame from COOKSubpacket to where it is usedJustin Ruggles2012-11-01
|
* cook: use av_get_channel_layout_nb_channels() instead of cook_count_channels()Justin Ruggles2012-11-01
|
* cook: reverse a condition so that the code makes more senseJustin Ruggles2012-11-01
|
* cook: remove unneeded COOKContext variable, sample_rateJustin Ruggles2012-11-01
|
* cook: remove unneeded COOKContext variable, bit_rateJustin Ruggles2012-11-01
|
* cook: use AVCodecContext.channels instead of keeping a private copyJustin Ruggles2012-11-01
|
* cook: Remove some silly Doxygen commentsDiego Biurrun2012-10-26
|
* cook: Remove senseless maybe_reformat_buffer32() functionDiego Biurrun2012-10-26
|
* cook: cosmetics: Better names for joint_decode() function parametersDiego Biurrun2012-10-26
|
* cook: cosmetics: Better name for ccpl COOKSubpacket memberDiego Biurrun2012-10-26
|
* cook: use planar sample formatJustin Ruggles2012-10-01
|
* avcodec: Drop some silly commented-out av_log() invocationsDiego Biurrun2012-10-01
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* Improve descriptiveness of a number of codec and container long namesDiego Biurrun2012-07-30
|
* cook: Make constants passed to AV_BE2NE32C() unsigned to avoid signed overflow.Alex Converse2012-04-17
|
* Replace memset(0) by zero initializations.Diego Biurrun2012-03-28
| | | | Also remove one pointless zero initialization in rangecoder.c.
* cook: error out on quant_index values outside [-63, 63] range.Ronald S. Bultje2012-03-10
| | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
* cook: expand dither_tab[], and make sure indexes into it don't overflow.Ronald S. Bultje2012-03-10
| | | | | | | Fixes overflows in accessing dither_tab[]. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
* cook: extend channel uncoupling tables so the full bit range is covered.Ronald S. Bultje2012-03-07
| | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
* cook: prevent div-by-zero if channels is zero.Ronald S. Bultje2012-02-17
| | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
* vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö2012-02-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* cook: K&R formatting cosmeticsShitiz Garg2011-12-31
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Add avcodec_decode_audio4().Justin Ruggles2011-12-02
| | | | | | Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
* cook: use a table for xor key rotationMans Rullgard2011-11-26
| | | | | | | This is simpler and avoids an invalid shift by 32 in the aligned case. Signed-off-by: Mans Rullgard <mans@mansr.com>
* cook: fix apparent typo in extradata parsingK.Y.H2011-11-26
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* cook: return AVERROR_PATCHWELCOME instead of ENOTSUPJustin Ruggles2011-10-29
| | | | ENOTSUP is not defined on some systems
* cook: check output buffer size before decodingJustin Ruggles2011-10-29
|
* cook: do not needlessly set *data_size to 0Justin Ruggles2011-10-29
|
* cook: remove pointless return statementsJustin Ruggles2011-10-29
|
* cook: simplify decouple_info()Justin Ruggles2011-10-29
|
* cook: return appropriate error codes instead of -1Justin Ruggles2011-10-29
|
* cook: avoid hardcoded sizes in sizeof()Justin Ruggles2011-10-29
|
* cook: remove unneeded #includesJustin Ruggles2011-10-29
|
* cook: output float samples instead of converting to int16Justin Ruggles2011-10-29
|
* cook: Fix js_vlc_bits value validation for joint stereoLaurent Aimar2011-10-06
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>