Commit 42d3d277 authored by bcoudurier's avatar bcoudurier

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

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14919 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1651c4cd
......@@ -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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment