summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2008-07-26 07:08:15 +0000
committerPeter Ross <pross@xvid.org>2008-07-26 07:08:15 +0000
commitaa29709ec8f42616ccc6ef0fda95a1a134c21ca5 (patch)
treec6155ff3cc6ff0a02feaf79e6dd25adf1af44183 /ffmpeg.c
parentfef744d4042403fdecb436e9c72279624d21200a (diff)
add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)
Originally committed as revision 14409 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 57ec83fc1c..ba615b3481 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -639,6 +639,7 @@ static void do_audio_out(AVFormatContext *s,
case CODEC_ID_PCM_S32BE:
case CODEC_ID_PCM_U32LE:
case CODEC_ID_PCM_U32BE:
+ case CODEC_ID_PCM_F32BE:
size_out = size_out << 1;
break;
case CODEC_ID_PCM_S24LE: