[Ffmpeg-cvslog] r8212 - trunk/libavformat/movenc.c
Baptiste Coudurier
baptiste.coudurier
Sun Mar 4 15:34:14 CET 2007
Alex Beregszaszi wrote:
> Hi,
>
>>>> - put_be16(pb, track->mode == MODE_MOV ? track->enc->channels : 2); /* Number of channels */
>>>> - /* FIXME 8 bit for 'raw ' in mov */
>>>> - put_be16(pb, 16); /* Reserved */
>>>> + if (track->mode == MODE_MOV) {
>>>> + put_be16(pb, track->enc->channels);
>>>> + put_be16(pb, 16); /* FIXME 8 bit for 'raw ' in mov */
>>>> + put_be16(pb, track->audio_vbr ? -2 : 0); /* compression ID */
>>>> + } else { /* reserved for mp4/3gp */
>>>> + put_be16(pb, 2);
>>> I think this should be changed to track->enc->channels and the next
>>> field to track->enc->bits_per_sample.
>> NO !!! these fields are reserved for mp4/3gp.
>
> Reserved to be set to 2 or zero? If the former, what happens in a mono
> 3gp file? Thats just plain broken.
That's ISO specs period. ISO media is derivated from and NOT mov that's
all.
Reserved to be 2. I already spent some time looking at specs.
Information is somewhere else, like in decoder specific atom (esds, or damr)
--
Baptiste COUDURIER GnuPG Key Id: 0x5C1ABAAA
SMARTJOG S.A. http://www.smartjog.com
Key fingerprint 8D77134D20CC9220201FC5DB0AC9325C5C1ABAAA
Phone: +33 1 49966312
More information about the ffmpeg-cvslog
mailing list