mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-29 20:36:47 +08:00
In mov demuxer, read alac sample from extradata, fix #2406
Originally committed as revision 25901 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -1230,6 +1230,7 @@ int ff_mov_read_stsd_entries(MOVContext *c, ByteIOContext *pb, int entries)
|
|||||||
if (st->codec->extradata_size == 36) {
|
if (st->codec->extradata_size == 36) {
|
||||||
st->codec->frame_size = AV_RB32(st->codec->extradata+12);
|
st->codec->frame_size = AV_RB32(st->codec->extradata+12);
|
||||||
st->codec->channels = AV_RB8 (st->codec->extradata+21);
|
st->codec->channels = AV_RB8 (st->codec->extradata+21);
|
||||||
|
st->codec->sample_rate = AV_RB32(st->codec->extradata+32);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user