Commit ce4d1d30 authored by michael's avatar michael

fix sound of SampleVideo.mov (mp2 in mov)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6191 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bb4ed1e0
...@@ -1065,6 +1065,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) ...@@ -1065,6 +1065,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
st->codec->sample_rate= 8000; st->codec->sample_rate= 8000;
st->codec->channels= 1; /* really needed */ st->codec->channels= 1; /* really needed */
break; break;
case CODEC_ID_MP2:
st->need_parsing = 1;
break;
default: default:
break; break;
} }
......
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