diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-13 16:35:54 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-14 17:32:36 +0100 |
commit | e44c11e9fa505da3c54738ae2d21123338a28ca6 (patch) | |
tree | d4fee42ad9ff17bb923e3ac96ce525cb635a6019 /libswscale | |
parent | b5c2b5af6a2f5baade1d0688703b3e46fa2f6cf2 (diff) | |
download | ffmpeg-e44c11e9fa505da3c54738ae2d21123338a28ca6.tar.gz |
cosmetics: Move static and inline attributes to more standard places.
Fixes several "‘static’ is not at beginning of declaration" warnings.
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index d252f2e32d..b49f924244 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -69,7 +69,7 @@ typedef struct FormatEntry { int is_supported_in, is_supported_out; } FormatEntry; -const static FormatEntry format_entries[PIX_FMT_NB] = { +static const FormatEntry format_entries[PIX_FMT_NB] = { [PIX_FMT_YUV420P] = { 1 , 1 }, [PIX_FMT_YUYV422] = { 1 , 1 }, [PIX_FMT_RGB24] = { 1 , 1 }, |