summaryrefslogtreecommitdiff
path: root/libavcodec/adpcmenc.c
Commit message (Collapse)AuthorAge
* adpcmenc: Use correct frame_size for Yamaha ADPCM.Justin Ruggles2012-02-20
| | | | | | | | | | | 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
* adpcmenc: remove some unneeded castsJustin Ruggles2012-01-30
|
* adpcmenc: use int16_t and uint8_t instead of short and unsigned char.Justin Ruggles2012-01-30
|
* adpcmenc: fix adpcm_ms extradata allocationJustin Ruggles2012-01-30
| | | | | | Add FF_INPUT_BUFFER_PADDING_SIZE. If allocation fails, also free memory which was allocated previously in adpcm_encode_init().
* adpcmenc: return proper AVERROR codes instead of -1Justin Ruggles2012-01-30
|
* adpcmenc: check for coded_frame allocation failureJustin Ruggles2012-01-30
|
* adpcmenc: Do not set coded_frame->key_frame.Justin Ruggles2012-01-30
| | | | It is already set in avcodec_alloc_frame().
* adpcmenc: cosmetics: pretty-printingChris Berov2011-12-04
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* adpcm: update reference linksJustin Ruggles2011-09-29
| | | | | | | | 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.
* Use explicit struct initializers for AVCodec declarations.Diego Biurrun2011-09-24
|
* adpcmenc: Set bits_per_coded_sampleJustin Ruggles2011-09-23
|
* adpcmenc: fix QT IMA ADPCM encoderBaptiste Coudurier2011-09-23
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* adpcm: split ADPCM encoders and decoders into separate files.Justin Ruggles2011-09-12
Move shared tables to a separate file as well.