Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2016-01-15 00:55:07 +0300
committerClément Bœsch <u@pkh.me>2016-01-15 01:13:09 +0300
commit9027806e3cf6b8d2693f74c57abfd88c8c2a9008 (patch)
treed6a714e0b50848d86ed87ddedc287ca01dd6b12d /libavcodec/ccaption_dec.c
parentfdbe5cd5c5234772f1b7624a790439924a91ced2 (diff)
lavc/ccaption_dec: clean up whitespace
Diffstat (limited to 'libavcodec/ccaption_dec.c')
-rw-r--r--libavcodec/ccaption_dec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c
index ca08d48f8e..3e335804fa 100644
--- a/libavcodec/ccaption_dec.c
+++ b/libavcodec/ccaption_dec.c
@@ -297,7 +297,6 @@ static void roll_up(CCaptionSubContext *ctx)
for (i = 0; i < ctx->cursor_row - keep_lines; i++)
UNSET_FLAG(screen->row_used, i);
-
for (i = 0; i < keep_lines && screen->row_used; i++) {
const int i_row = ctx->cursor_row - keep_lines + i + 1;
@@ -306,8 +305,8 @@ static void roll_up(CCaptionSubContext *ctx)
memcpy(screen->fonts[i_row], screen->fonts[i_row+1], SCREEN_COLUMNS);
if (CHECK_FLAG(screen->row_used, i_row + 1))
SET_FLAG(screen->row_used, i_row);
-
}
+
UNSET_FLAG(screen->row_used, ctx->cursor_row);
}