diff options
author | Clément Bœsch <u@pkh.me> | 2016-02-26 22:15:20 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-02-26 22:15:20 +0100 |
commit | b5451d88cf8b0e165ae357f49254a66828351a56 (patch) | |
tree | b9f5d2927b17883a1114f2059cb0b64fb9587bb4 /libavcodec/movtextenc.c | |
parent | 22ebbda637257a432c99330ca4c6024665418f0e (diff) | |
download | ffmpeg-b5451d88cf8b0e165ae357f49254a66828351a56.tar.gz |
lavc: reindent a few decoders after previous commits
Diffstat (limited to 'libavcodec/movtextenc.c')
-rw-r--r-- | libavcodec/movtextenc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/movtextenc.c b/libavcodec/movtextenc.c index 791132ae1a..20e01e206e 100644 --- a/libavcodec/movtextenc.c +++ b/libavcodec/movtextenc.c @@ -343,10 +343,9 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf, if (!strncmp(ass, "Dialogue: ", 10)) { int num; dialog = ff_ass_split_dialog(s->ass_ctx, ass, 0, &num); - // TODO reindent - for (; dialog && num--; dialog++) { - ff_ass_split_override_codes(&mov_text_callbacks, s, dialog->text); - } + for (; dialog && num--; dialog++) { + ff_ass_split_override_codes(&mov_text_callbacks, s, dialog->text); + } } else { #endif dialog = ff_ass_split_dialog2(s->ass_ctx, ass); |