aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_ass.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2013-02-14 16:35:49 +0100
committerNicolas George <nicolas.george@normalesup.org>2013-02-14 16:36:03 +0100
commitc557a5b08efe0ee311dc056ef32e67c481d5aa56 (patch)
treef31421d7a39e2150a40482b34c5adfa82bac4115 /libavfilter/vf_ass.c
parentbb3303b94c1c3f29116d096f5a51c23dbb8f577a (diff)
downloadffmpeg-c557a5b08efe0ee311dc056ef32e67c481d5aa56.tar.gz
lavfi/vf_ass: reindent after last commit.
Diffstat (limited to 'libavfilter/vf_ass.c')
-rw-r--r--libavfilter/vf_ass.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/libavfilter/vf_ass.c b/libavfilter/vf_ass.c
index 85dd5ce1ee..c64d940c3d 100644
--- a/libavfilter/vf_ass.c
+++ b/libavfilter/vf_ass.c
@@ -322,13 +322,12 @@ static av_cold int init_subtitles(AVFilterContext *ctx, const char *args)
av_log(ctx, AV_LOG_WARNING, "Error decoding: %s (ignored)\n",
av_err2str(ret));
} else if (got_subtitle) {
- /* TODO reindent */
- for (i = 0; i < sub.num_rects; i++) {
- char *ass_line = sub.rects[i]->ass;
- if (!ass_line)
- break;
- ass_process_data(ass->track, ass_line, strlen(ass_line));
- }
+ for (i = 0; i < sub.num_rects; i++) {
+ char *ass_line = sub.rects[i]->ass;
+ if (!ass_line)
+ break;
+ ass_process_data(ass->track, ass_line, strlen(ass_line));
+ }
}
}
av_free_packet(&pkt);