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-04-11Move misplaced file author information where it belongsDiego Biurrun
2013-03-09lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov
2012-10-08adpcmenc: ensure calls to adpcm_ima_compress_sample() are in the right orderJustin Ruggles
Should fix fate-acodec-adpcm-ima_wav with several compilers.
2012-10-06adpcmenc: use planar sample format for adpcm_ima_wav and adpcm_ima_qtJustin Ruggles
2012-10-06adpcmenc: move 'ch' variable to higher scopeJustin Ruggles
It is used for multiple codecs.
2012-10-06adpcmenc: fix 3 instances of variable shadowingJustin Ruggles
2012-10-06adpcm_ima_wav: simplify encodingJustin Ruggles
2012-09-04adpcmenc: Calculate the IMA_QT predictor without overflowMichael Niedermayer
Previously, the value given to put_bits was 10 bits long for positive predictors, even though 9 bits were to be written. The extra bit could in some cases overwrite existing bits in the bitstream writer cache. This fixes a failed assert in put_bits.h, when running a version built with -DDEBUG. The fate test result gets slightly improved, thanks to getting rid of the overwritten bits in the bitstream writer cache. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-22adpcm_swf: Use correct sample offsets when using trellis.Justin Ruggles
Fixes invalid reads when encoding mono streams when trellis is used.
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-22adpcm: don't duplicate identical AVSampleFmt array for each encoder.Ronald S. Bultje
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-03-21adpcmenc: update to AVCodec.encode2()Justin Ruggles
2012-02-21adpcmenc: Use correct frame_size for Yamaha ADPCM.Justin Ruggles
Output packet size should match avctx->block_align. The target output packet size is 1024 bytes. Before: mono - 1024 samples -> 512 bytes stereo - 2048 samples -> 2048 bytes After: mono - 2048 samples -> 1024 bytes stereo - 1024 samples -> 1024 bytes
2012-01-31adpcmenc: remove some unneeded castsJustin Ruggles
2012-01-31adpcmenc: use int16_t and uint8_t instead of short and unsigned char.Justin Ruggles
2012-01-31adpcmenc: fix adpcm_ms extradata allocationJustin Ruggles
Add FF_INPUT_BUFFER_PADDING_SIZE. If allocation fails, also free memory which was allocated previously in adpcm_encode_init().
2012-01-31adpcmenc: return proper AVERROR codes instead of -1Justin Ruggles
2012-01-31adpcmenc: check for coded_frame allocation failureJustin Ruggles
2012-01-31adpcmenc: Do not set coded_frame->key_frame.Justin Ruggles
It is already set in avcodec_alloc_frame().
2011-12-05adpcmenc: cosmetics: pretty-printingChris Berov
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-09-30adpcm: update reference linksJustin Ruggles
Add Multimedia Wiki link. Mark dead links with [dead]. Some can still be accessed through archive.org. Update URLs for pages which have moved. Replace duplicated links in adpcmenc.c with a note to see the ADPCM decoder reference documents.
2011-09-24Use explicit struct initializers for AVCodec declarations.Diego Biurrun
2011-09-24adpcmenc: Set bits_per_coded_sampleJustin Ruggles
2011-09-24adpcmenc: fix QT IMA ADPCM encoderBaptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-12adpcm: split ADPCM encoders and decoders into separate files.Justin Ruggles
Move shared tables to a separate file as well.