diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-09 11:22:11 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-09 11:22:11 +0200 |
commit | e13df05fdbb3507d40b8c0e82a05ff67e90b8f3e (patch) | |
tree | 31cb6fc1da73bea2c06b0293427e5de30784cde0 /libavcodec | |
parent | aed032c25b08a1056c03bd2646d8482f5c0aba73 (diff) | |
download | ffmpeg-e13df05fdbb3507d40b8c0e82a05ff67e90b8f3e.tar.gz |
dvbsub: reindent after last commit.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dvbsub.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libavcodec/dvbsub.c b/libavcodec/dvbsub.c index a9f5e18151..37bb3e1ec0 100644 --- a/libavcodec/dvbsub.c +++ b/libavcodec/dvbsub.c @@ -362,12 +362,11 @@ static int encode_dvb_subtitles(DVBSubtitleContext *s, *q++ = 0; /* 8 bit fill colors */ *q++ = 0x03; /* 4 bit and 2 bit fill colors */ - /* TODO reindent */ - bytestream_put_be16(&q, region_id); /* object_id == region_id */ - *q++ = (0 << 6) | (0 << 4); - *q++ = 0; - *q++ = 0xf0; - *q++ = 0; + bytestream_put_be16(&q, region_id); /* object_id == region_id */ + *q++ = (0 << 6) | (0 << 4); + *q++ = 0; + *q++ = 0xf0; + *q++ = 0; bytestream_put_be16(&pseg_len, q - pseg_len - 2); } |