Commit 287d6cfa authored by Baptiste Coudurier's avatar Baptiste Coudurier

cosmetics: remove useless whitespaces and put braces correctly

Originally committed as revision 12942 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3f78a3a9
...@@ -290,14 +290,12 @@ static int mov_write_esds_tag(ByteIOContext *pb, MOVTrack* track) // Basic ...@@ -290,14 +290,12 @@ static int mov_write_esds_tag(ByteIOContext *pb, MOVTrack* track) // Basic
else else
put_be32(pb, track->enc->rc_max_rate); // avg bitrate put_be32(pb, track->enc->rc_max_rate); // avg bitrate
if (track->vosLen) if (track->vosLen) {
{
// DecoderSpecific info descriptor // DecoderSpecific info descriptor
putDescr(pb, 0x05, track->vosLen); putDescr(pb, 0x05, track->vosLen);
put_buffer(pb, track->vosData, track->vosLen); put_buffer(pb, track->vosData, track->vosLen);
} }
// SL descriptor // SL descriptor
putDescr(pb, 0x06, 1); putDescr(pb, 0x06, 1);
put_byte(pb, 0x02); put_byte(pb, 0x02);
......
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