diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-27 12:59:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-27 13:05:05 +0200 |
commit | b654aa6beb41366f8771525b4f2d864e992d48c1 (patch) | |
tree | 4ced9ec120908e390d885b9b0ec2e947ef240fd9 /libavcodec/avcodec.h | |
parent | e82071e7279ab8d8ec138753822222a6cff26f35 (diff) | |
parent | 7e52080cb18332cb1da9fe133498750b6b4b0fb3 (diff) | |
download | ffmpeg-b654aa6beb41366f8771525b4f2d864e992d48c1.tar.gz |
Merge commit '7e52080cb18332cb1da9fe133498750b6b4b0fb3'
* commit '7e52080cb18332cb1da9fe133498750b6b4b0fb3':
pcm: support 24-bit/32-bit little-endian planar
Conflicts:
doc/general.texi
libavcodec/Makefile
libavcodec/allcodecs.c
libavcodec/avcodec.h
libavcodec/pcm.c
libavcodec/version.h
libavformat/nut.c
See: 467dfd5dfae7cc435a2b2e7cf012a0de2fea5848
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7b1f5ce948..1ae89d5aed 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -334,6 +334,8 @@ enum AVCodecID { AV_CODEC_ID_PCM_LXF, AV_CODEC_ID_S302M, AV_CODEC_ID_PCM_S8_PLANAR, + AV_CODEC_ID_PCM_S24LE_PLANAR_DEPRECATED, + AV_CODEC_ID_PCM_S32LE_PLANAR_DEPRECATED, AV_CODEC_ID_PCM_S24LE_PLANAR = MKBETAG(24,'P','S','P'), AV_CODEC_ID_PCM_S32LE_PLANAR = MKBETAG(32,'P','S','P'), AV_CODEC_ID_PCM_S16BE_PLANAR = MKBETAG('P','S','P',16), |