summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* ratecontrol: update last_qscale_for soonerLuca Barbato2011-09-22
| | | | | | | | In order to make ratecontrol converge properly update the last_qscale_for values when populating the qscale array. It fixes the issue reported on http://lists.libav.org/pipermail/libav-tools/2011-September/000050.html
* prores: return more meaningful error valuesDiego Biurrun2011-09-23
|
* prores: improve error message wordingDiego Biurrun2011-09-23
|
* prores: cosmetics: prettyprinting, drop useless parenthesesDiego Biurrun2011-09-23
|
* prores: lowercase AVCodec name entryDiego Biurrun2011-09-23
| | | | All other codecs use lowercase names in that field.
* 8svx/iff: fix decoding of compressed stereo 8svx files.Justin Ruggles2011-09-22
| | | | | | | | | | Make the iff demuxer send the whole audio chunk to the decoder as a single packet and move stereo interleaving from the iff demuxer to the decoder. Based on a patch by Stefano Sabatini. git.videolan.org/ffmpeg.git commit e280a4da2ae6fd44f0079358ecc5aa08e388a5ed
* 8svx: log an error message if output buffer is too smallJustin Ruggles2011-09-22
| | | | | | Based on a patch by Stefano Sabatini. git.videolan.org/ffmpeg.git commit e280a4da2ae6fd44f0079358ecc5aa08e388a5ed
* 8svx: check packet size before reading the initial sample value.Justin Ruggles2011-09-22
|
* 8svx: output 8-bit samples instead of 16-bit.Justin Ruggles2011-09-22
| | | | | | Based on a patch by Stefano Sabatini. git.videolan.org/ffmpeg.git commit e280a4da2ae6fd44f0079358ecc5aa08e388a5ed
* 8svx: split delta decoding into a separate function.Justin Ruggles2011-09-22
| | | | | | Based on a patch by Stefano Sabatini. git.videolan.org/ffmpeg.git commit e280a4da2ae6fd44f0079358ecc5aa08e388a5ed
* Apple ProRes decoderMaxim Poliakovski2011-09-22
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rv34: Check for invalid slices offsetsLaurent Aimar2011-09-22
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* dct-test: factor out some common code and do whas was likely intendedMans Rullgard2011-09-21
| | | | | | | This fixes some nonsensical code by moving some should-be-shared code to separate functions and using these. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove some forgotten AVCodecContext.palctrl usage.Anton Khirnov2011-09-21
|
* lavc/utils: move avcodec_init() higher in the file.Anton Khirnov2011-09-21
| | | | Fixes build on next major bump.
* lavc: replace some deprecated FF_*_TYPE with AV_PICTURE_TYPE_*Anton Khirnov2011-09-21
|
* ac3dec: actually use drc_scale private optionAnton Khirnov2011-09-21
|
* lavc: undeprecate AVPALETTE_SIZE and AVPALETTE_COUNT macrosAnton Khirnov2011-09-21
| | | | They are still being used and shouldn't be removed.
* msmpeg4: remove leftover unused debug variable declarationDiego Biurrun2011-09-21
|
* Fix assert() calls that need updates after FF_COMMON_FRAME macro elimination.Diego Biurrun2011-09-21
| | | | This fixes build failures with -DDEBUG in CPPFLAGS.
* Fix av_dlog invocations with wrong or missing logging context.Diego Biurrun2011-09-21
| | | | This fixes build failures with -DDEBUG in CPPFLAGS.
* rv34: Check for invalid slice offsetsLaurent Aimar2011-09-20
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rv34: Fix potential overreadsLaurent Aimar2011-09-19
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rv34: Fix buffer size used for MC of B frames after a resolution changeLaurent Aimar2011-09-19
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rv34: Avoid NULL dereference on corrupted bitstreamLaurent Aimar2011-09-19
| | | | | | rv34_decode_slice() can return without allocating any pictures. Signed-off-by: Martin Storsjö <martin@martin.st>
* rv10: Reject slices that does not have the same type as the first oneLaurent Aimar2011-09-19
| | | | | | This prevents crashes with some corrupted bitstreams. Signed-off-by: Martin Storsjö <martin@martin.st>
* libx264: introduce slice-max-size optionLuca Barbato2011-09-16
| | | | Yet another option useful for low latency streaming.
* Fixed size given to init_get_bits().Laurent Aimar2011-09-15
| | | | | | | init_get_bits() takes a number of bits and not a number of bytes as its size argument. Signed-off-by: Alex Converse <alex.converse@gmail.com>
* smacker: fix a few off by 1 errorsMichael Niedermayer2011-09-14
| | | | | | stereo & 16bit is untested due to lack of samples Signed-off-by: Martin Storsjö <martin@martin.st>
* Check for invalid VLC value in smacker decoder.Laurent Aimar2011-09-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Check and propagate errors when VLC trees cannot be built in smacker decoder.Laurent Aimar2011-09-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* include stdint.h in adpcm_data.hJustin Ruggles2011-09-13
| | | | fixes make checkheaders
* mpeg12: reorder functions to avoid ugly forward declarationsDiego Biurrun2011-09-13
|
* xan: Add some buffer checksAlex Converse2011-09-12
|
* xan: Remove extra trailing newlineAlex Converse2011-09-12
|
* Fixed size given to init_get_bits() in xan decoder.Laurent Aimar2011-09-12
|
* adpcm: split ADPCM encoders and decoders into separate files.Justin Ruggles2011-09-12
| | | | Move shared tables to a separate file as well.
* rv34: check that subsequent slices have the same type as first one.Kostya Shishkov2011-09-12
| | | | | | | | This prevents some crashes when corrupted bitstream reports e.g. P-type slice in I-frame. Official RealVideo decoder demands all slices to be of the same type too. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* libxavs: add private options corresponding to deprecated global optionsAnton Khirnov2011-09-12
| | | | Code mostly copied from libx264 wrapper.
* avconv: remove me_threshold option.Anton Khirnov2011-09-11
| | | | It's only shadowing the AVOption with the same name.
* Fixed segfault with wavpack decoder on corrupted decorrelation terms sub-blocks.Laurent Aimar2011-09-10
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* cljr: init_get_bits size in bits instead of bytesAlex Converse2011-09-09
|
* indeo2: fail if input buffer too smallAlex Converse2011-09-09
|
* indeo2: init_get_bits size in bits instead of bytesAlex Converse2011-09-09
|
* ffv1: Fixed size given to init_get_bits() in decoder.Laurent Aimar2011-09-09
| | | | | | | init_get_bits() takes a number of bits and not a number of bytes as its size argument. Signed-off-by: Alex Converse <alex.converse@gmail.com>
* wavpack: Check error codes rather than working around error conditions.Alex Converse2011-09-08
|
* Fixed invalid access in wavpack decoder on corrupted bitstream.Laurent Aimar2011-09-08
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Fixed invalid writes in wavpack decoder on corrupted bitstreams.Laurent Aimar2011-09-08
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Fixed invalid access in wavpack decoder on corrupted extra bits sub-blocks.Laurent Aimar2011-09-08
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Add LATM muxerKieran Kunhya2011-09-07
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>