Commit 4a09a7f9 authored by bcoudurier's avatar bcoudurier

cosmetics: remove useless whitespaces and put braces correctly

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12942 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent adcab7e5
...@@ -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