1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Fix indentation.

Originally committed as revision 25683 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2010-11-06 16:48:41 +00:00
parent 931856a267
commit c4d5ee233a

View File

@ -277,42 +277,42 @@ static void parse_presentation_segment(AVCodecContext *avctx,
ctx->presentation.id_number = bytestream_get_be16(&buf); ctx->presentation.id_number = bytestream_get_be16(&buf);
/* /*
* Skip 3 bytes of unknown: * Skip 3 bytes of unknown:
* state * state
* palette_update_flag (0x80), * palette_update_flag (0x80),
* palette_id_to_use, * palette_id_to_use,
*/ */
buf += 3; buf += 3;
ctx->presentation.object_number = bytestream_get_byte(&buf); ctx->presentation.object_number = bytestream_get_byte(&buf);
if (!ctx->presentation.object_number) if (!ctx->presentation.object_number)
return; return;
/* /*
* Skip 4 bytes of unknown: * Skip 4 bytes of unknown:
* object_id_ref (2 bytes), * object_id_ref (2 bytes),
* window_id_ref, * window_id_ref,
* composition_flag (0x80 - object cropped, 0x40 - object forced) * composition_flag (0x80 - object cropped, 0x40 - object forced)
*/ */
buf += 4; buf += 4;
x = bytestream_get_be16(&buf); x = bytestream_get_be16(&buf);
y = bytestream_get_be16(&buf); y = bytestream_get_be16(&buf);
/* TODO If cropping, cropping_x, cropping_y, cropping_width, cropping_height (all 2 bytes).*/ /* TODO If cropping, cropping_x, cropping_y, cropping_width, cropping_height (all 2 bytes).*/
dprintf(avctx, "Subtitle Placement x=%d, y=%d\n", x, y); dprintf(avctx, "Subtitle Placement x=%d, y=%d\n", x, y);
if (x > avctx->width || y > avctx->height) { if (x > avctx->width || y > avctx->height) {
av_log(avctx, AV_LOG_ERROR, "Subtitle out of video bounds. x = %d, y = %d, video width = %d, video height = %d.\n", av_log(avctx, AV_LOG_ERROR, "Subtitle out of video bounds. x = %d, y = %d, video width = %d, video height = %d.\n",
x, y, avctx->width, avctx->height); x, y, avctx->width, avctx->height);
x = 0; y = 0; x = 0; y = 0;
} }
/* Fill in dimensions */ /* Fill in dimensions */
ctx->presentation.x = x; ctx->presentation.x = x;
ctx->presentation.y = y; ctx->presentation.y = y;
} }
/** /**