cosmetics: remove useless whitespaces and put braces correctly

Originally committed as revision 12942 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier
2008-04-24 17:22:39 +00:00
parent 3f78a3a955
commit 287d6cfad7

View File

@ -290,14 +290,12 @@ static int mov_write_esds_tag(ByteIOContext *pb, MOVTrack* track) // Basic
else
put_be32(pb, track->enc->rc_max_rate); // avg bitrate
if (track->vosLen)
{
if (track->vosLen) {
// DecoderSpecific info descriptor
putDescr(pb, 0x05, track->vosLen);
put_buffer(pb, track->vosData, track->vosLen);
}
// SL descriptor
putDescr(pb, 0x06, 1);
put_byte(pb, 0x02);