Skip to content
Snippets Groups Projects
Commit 4d2a4dfd authored by Reimar Döffinger's avatar Reimar Döffinger
Browse files

100l, all avlanguage tables should be both static and const.

Originally committed as revision 19780 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b8791583
No related branches found
No related tags found
No related merge requests found
...@@ -29,10 +29,10 @@ typedef struct LangEntry { ...@@ -29,10 +29,10 @@ typedef struct LangEntry {
uint16_t next_equivalent; uint16_t next_equivalent;
} LangEntry; } LangEntry;
const uint16_t lang_table_counts[] = { 484, 20, 184 }; static const uint16_t lang_table_counts[] = { 484, 20, 184 };
const uint16_t lang_table_offsets[] = { 0, 484, 504 }; static const uint16_t lang_table_offsets[] = { 0, 484, 504 };
static LangEntry lang_table[] = { static const LangEntry lang_table[] = {
/*----- AV_LANG_ISO639_2_BIBL entries (484) -----*/ /*----- AV_LANG_ISO639_2_BIBL entries (484) -----*/
/*0000*/ { "aar", 504 }, /*0000*/ { "aar", 504 },
/*0001*/ { "abk", 505 }, /*0001*/ { "abk", 505 },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment