提交 7e4b3fb8 编写于 作者: B Baptiste Coudurier

enable fl32/64 le/be in mov with stsd audio v2

Originally committed as revision 14919 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 56523713
......@@ -680,10 +680,10 @@ static int mov_get_lpcm_codec_id(int bps, int flags)
if (flags & 1) { // floating point
if (flags & 2) { // big endian
if (bps == 32) return CODEC_ID_PCM_F32BE;
//else if (bps == 64) return CODEC_ID_PCM_F64BE;
else if (bps == 64) return CODEC_ID_PCM_F64BE;
} else {
//if (bps == 32) return CODEC_ID_PCM_F32LE;
//else if (bps == 64) return CODEC_ID_PCM_F64LE;
if (bps == 32) return CODEC_ID_PCM_F32LE;
else if (bps == 64) return CODEC_ID_PCM_F64LE;
}
} else {
if (flags & 2) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册