Commit 533c3c84 authored by David Conrad's avatar David Conrad

Set speex frame_size in ogg demuxer

Originally committed as revision 18895 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 607694c7
...@@ -45,6 +45,7 @@ static int speex_header(AVFormatContext *s, int idx) { ...@@ -45,6 +45,7 @@ static int speex_header(AVFormatContext *s, int idx) {
st->codec->sample_rate = AV_RL32(p + 36); st->codec->sample_rate = AV_RL32(p + 36);
st->codec->channels = AV_RL32(p + 48); st->codec->channels = AV_RL32(p + 48);
st->codec->frame_size = AV_RL32(p + 56);
st->codec->extradata_size = os->psize; st->codec->extradata_size = os->psize;
st->codec->extradata = av_malloc(st->codec->extradata_size); st->codec->extradata = av_malloc(st->codec->extradata_size);
memcpy(st->codec->extradata, p, st->codec->extradata_size); memcpy(st->codec->extradata, p, st->codec->extradata_size);
......
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