blob: c414324785bb185f7329d38a1f5017e9f89615a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/common.c
+++ b/common.c
@@ -19,6 +19,8 @@
*
***********************************************************************/
+options glopts;
+
char *mode_names[4] = { "stereo", "j-stereo", "dual-ch", "single-ch" };
char *version_names[2] = { "MPEG-2 LSF", "MPEG-1" };
--- a/options.h
+++ b/options.h
@@ -19,5 +19,5 @@
}
options;
-options glopts;
+extern options glopts;
#endif
|