cosmetics: Move static and inline attributes to more standard places.

Fixes several "‘static’ is not at beginning of declaration" warnings.
This commit is contained in:
Diego Biurrun
2012-01-13 16:35:54 +01:00
parent b5c2b5af6a
commit e44c11e9fa
4 changed files with 46 additions and 11 deletions

View File

@@ -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 },