summaryrefslogtreecommitdiff
path: root/libavcodec/movtextenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/movtextenc.c')
-rw-r--r--libavcodec/movtextenc.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libavcodec/movtextenc.c b/libavcodec/movtextenc.c
index eecadaf503..52e51503d6 100644
--- a/libavcodec/movtextenc.c
+++ b/libavcodec/movtextenc.c
@@ -640,7 +640,6 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
MovTextContext *s = avctx->priv_data;
ASSDialog *dialog;
int i, length;
- size_t j;
s->byte_count = 0;
s->text_pos = 0;
@@ -661,10 +660,6 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
mov_text_dialog(s, dialog);
ff_ass_split_override_codes(&mov_text_callbacks, s, dialog->text);
ff_ass_free_dialog(&dialog);
-
- for (j = 0; j < box_count; j++) {
- box_types[j].encode(s);
- }
}
if (s->byte_count > UINT16_MAX)
@@ -672,6 +667,9 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
AV_WB16(buf, s->byte_count);
buf += 2;
+ for (size_t j = 0; j < box_count; j++)
+ box_types[j].encode(s);
+
if (!av_bprint_is_complete(&s->buffer))
return AVERROR(ENOMEM);