projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba83c4b
)
remove declaration inside for(), i is already declared
author
Aurelien Jacobs
<aurel@gnuage.org>
Thu, 11 Nov 2010 21:29:37 +0000
(21:29 +0000)
committer
Aurelien Jacobs
<aurel@gnuage.org>
Thu, 11 Nov 2010 21:29:37 +0000
(21:29 +0000)
Originally committed as revision 25722 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavfilter/parseutils.c
patch
|
blob
|
history
diff --git
a/libavfilter/parseutils.c
b/libavfilter/parseutils.c
index 6609f083eeb045e7015d07862cf3e166a8e1e8f6..c78b64a5efe791a3a5a4c11a7ba103d0d6df3e89 100644
(file)
--- a/
libavfilter/parseutils.c
+++ b/
libavfilter/parseutils.c
@@
-295,7
+295,7
@@
int main(void)
av_log_set_level(AV_LOG_DEBUG);
- for (i
nt i
= 0; i < FF_ARRAY_ELEMS(color_names); i++) {
+ for (i = 0; i < FF_ARRAY_ELEMS(color_names); i++) {
if (av_parse_color(rgba, color_names[i], NULL) >= 0)
printf("%s -> R(%d) G(%d) B(%d) A(%d)\n", color_names[i], rgba[0], rgba[1], rgba[2], rgba[3]);
}