diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-31 13:41:47 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-09 17:48:54 -0500 |
commit | f1f6d3615f3f9a81f41905ea0c8116b4985870e4 (patch) | |
tree | a2c084fff5df8db3f227bd060bd09d272d5fbf56 /libavcodec/avcodec.h | |
parent | fed5ca255feacb03500a22f3fcd920cc98e9dcee (diff) | |
download | ffmpeg-f1f6d3615f3f9a81f41905ea0c8116b4985870e4.tar.gz |
avcodec: add support for planar signed 8-bit PCM.
It is found in some 8svx files (e.g. ones created by SoX).
Currently the decoder reuses the 8svx functions because we already have
handling of a single large planar packet for the compressed 8svx codecs.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f169bec37e..76562834ed 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -250,6 +250,7 @@ enum CodecID { CODEC_ID_PCM_BLURAY, CODEC_ID_PCM_LXF, CODEC_ID_S302M, + CODEC_ID_PCM_S8_PLANAR, /* various ADPCM codecs */ CODEC_ID_ADPCM_IMA_QT = 0x11000, |