Commit a1532824 authored by Baptiste Coudurier's avatar Baptiste Coudurier

set alac channels from extradata, fix alac mono in m4a

Originally committed as revision 16212 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent efeb298e
...@@ -1033,8 +1033,10 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) ...@@ -1033,8 +1033,10 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
st->codec->block_align = sc->bytes_per_frame; st->codec->block_align = sc->bytes_per_frame;
break; break;
case CODEC_ID_ALAC: case CODEC_ID_ALAC:
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);
}
break; 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