diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-10-26 23:24:30 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2015-10-26 23:24:30 -0700 |
commit | 852c4b3d42c716bd380112a7db56a2e6e3c62b70 (patch) | |
tree | f29deab82148f6b94b1812dbfa15bc68c7c3cb73 | |
parent | 87d55092611f42a9816e65fbbb6fde412db407eb (diff) | |
download | ffmpeg-852c4b3d42c716bd380112a7db56a2e6e3c62b70.tar.gz |
drawutils: Reindent
-rw-r--r-- | libavfilter/drawutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c index 1724a82221..32571924a9 100644 --- a/libavfilter/drawutils.c +++ b/libavfilter/drawutils.c @@ -210,8 +210,8 @@ void ff_draw_color(FFDrawContext *draw, FFDrawColor *color, const uint8_t rgba[4 if ((draw->desc->flags & AV_PIX_FMT_FLAG_RGB) && ff_fill_rgba_map(rgba_map, draw->format) >= 0) { if (draw->nb_planes == 1) { - for (i = 0; i < 4; i++) - color->comp[0].u8[rgba_map[i]] = rgba[i]; + for (i = 0; i < 4; i++) + color->comp[0].u8[rgba_map[i]] = rgba[i]; } else { for (i = 0; i < 4; i++) color->comp[rgba_map[i]].u8[0] = rgba[i]; |