1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-10 09:31:06 +02:00

dvdsubenc: reindent after recent commit.

This commit is contained in:
Nicolas George 2012-08-14 11:58:32 +02:00
parent 2d3acbfe8c
commit 67a804b9ac

View File

@ -314,7 +314,6 @@ static int encode_dvd_subtitles(AVCodecContext *avctx,
// encode data block
q = outbuf + 4;
/* TODO reindent */
offset1 = q - outbuf;
// worst case memory requirement: 1 nibble per pixel..
if ((q - outbuf) + vrect.w * vrect.h / 2 + 17 + 21 > outbuf_size) {
@ -343,7 +342,6 @@ static int encode_dvd_subtitles(AVCodecContext *avctx,
*q++ = (out_alpha[1] & 0xF0) | (out_alpha[0] >> 4);
// 12 bytes per rect
/* TODO reindent */
x2 = vrect.x + vrect.w - 1;
y2 = vrect.y + vrect.h - 1;