]> git.sesse.net Git - ffmpeg/commitdiff
Reindent after the last commit.
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sun, 27 Jun 2010 22:35:39 +0000 (22:35 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sun, 27 Jun 2010 22:35:39 +0000 (22:35 +0000)
Originally committed as revision 23836 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/parseutils.c

index 71fb70ea34960b8d0e77c5dc7eed906426d32be5..f87d9084cf3420782af34d5c9829450b047a34c9 100644 (file)
@@ -253,10 +253,10 @@ int av_parse_color(uint8_t *rgba_color, const char *color_string, void *log_ctx)
         rgba_color[2] = rgba;
     } else {
         entry = bsearch(color_string2,
-                                          color_table,
-                                          FF_ARRAY_ELEMS(color_table),
-                                          sizeof(ColorEntry),
-                                          color_table_compare);
+                        color_table,
+                        FF_ARRAY_ELEMS(color_table),
+                        sizeof(ColorEntry),
+                        color_table_compare);
         if (!entry) {
             av_log(log_ctx, AV_LOG_ERROR, "Cannot find color '%s'\n", color_string2);
             return AVERROR(EINVAL);