Commit 67a804b9 authored by Nicolas George's avatar Nicolas George

dvdsubenc: reindent after recent commit.

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