Use spaces after commas for improving readability.

Originally committed as revision 20446 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-11-03 22:46:15 +00:00
parent bc37ec923d
commit 198d56533e
1 changed files with 6 additions and 6 deletions

View File

@ -34,10 +34,10 @@ void avfilter_register_all(void)
return;
initialized = 1;
REGISTER_FILTER (CROP,crop,vf);
REGISTER_FILTER (FORMAT,format,vf);
REGISTER_FILTER (NOFORMAT,noformat,vf);
REGISTER_FILTER (NULL,null,vf);
REGISTER_FILTER (SLICIFY,slicify,vf);
REGISTER_FILTER (VFLIP,vflip,vf);
REGISTER_FILTER (CROP, crop, vf);
REGISTER_FILTER (FORMAT, format, vf);
REGISTER_FILTER (NOFORMAT, noformat, vf);
REGISTER_FILTER (NULL, null, vf);
REGISTER_FILTER (SLICIFY, slicify, vf);
REGISTER_FILTER (VFLIP, vflip, vf);
}