Commit eb91e6af authored by bcoudurier's avatar bcoudurier

sampleSize field to 16, reserved for mp4 and 3gp

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5948 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 75500063
......@@ -361,9 +361,8 @@ static int mov_write_audio_tag(ByteIOContext *pb, MOVTrack* track)
put_be32(pb, 0); /* Reserved */
put_be16(pb, track->mode == MODE_MOV ? track->enc->channels : 2); /* Number of channels */
/* TODO: Currently hard-coded to 16-bit, there doesn't seem
to be a good way to get number of bits of audio */
put_be16(pb, 0x10); /* Reserved */
/* FIXME 8 bit for 'raw ' in mov */
put_be16(pb, 16); /* Reserved */
put_be16(pb, vbr ? 0xfffe : 0); /* compression ID */
put_be16(pb, 0); /* packet size (= 0) */
......
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