summaryrefslogtreecommitdiff
path: root/src/libxineadec
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-06-02 22:13:45 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-06-02 22:13:45 +0000
commit11de71b0938af5b027b78b0e0db9617ab22a319f (patch)
treee765ba126df0bb5107eb1fe7f5e819b8f7e4aa07 /src/libxineadec
parent329d8f32349ce401eaf8b486e496b65f27cbd920 (diff)
downloadxine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.gz
xine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.bz2
More static/const fixes from Gentoo. These should probably go upstream.
CVS patchset: 8008 CVS date: 2006/06/02 22:13:45
Diffstat (limited to 'src/libxineadec')
-rw-r--r--src/libxineadec/fooaudio.c4
-rw-r--r--src/libxineadec/gsm610.c4
-rw-r--r--src/libxineadec/nsf.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/libxineadec/fooaudio.c b/src/libxineadec/fooaudio.c
index faa8b88b4..0d9b01c16 100644
--- a/src/libxineadec/fooaudio.c
+++ b/src/libxineadec/fooaudio.c
@@ -21,7 +21,7 @@
* player. It really works too! It will output a continuous sine wave in
* place of the data it should actually send.
*
- * $Id: fooaudio.c,v 1.16 2006/05/03 19:46:08 dsalt Exp $
+ * $Id: fooaudio.c,v 1.17 2006/06/02 22:13:45 dsalt Exp $
*/
#include <stdio.h>
@@ -335,7 +335,7 @@ static uint32_t audio_types[] = {
* the priority that the plugin should be given with respect to other
* plugins that handle the same buffer type. A plugin with priority (n+1)
* will be used instead of a plugin with priority (n). */
-static decoder_info_t dec_info_audio = {
+static const decoder_info_t dec_info_audio = {
audio_types, /* supported types */
5 /* priority */
};
diff --git a/src/libxineadec/gsm610.c b/src/libxineadec/gsm610.c
index c12271142..e8f566f84 100644
--- a/src/libxineadec/gsm610.c
+++ b/src/libxineadec/gsm610.c
@@ -44,7 +44,7 @@
* Carsten Bormann
* --------------------------------------------------------------------
*
- * $Id: gsm610.c,v 1.17 2006/05/03 19:46:08 dsalt Exp $
+ * $Id: gsm610.c,v 1.18 2006/06/02 22:13:45 dsalt Exp $
*
*/
@@ -284,7 +284,7 @@ static uint32_t audio_types[] = {
0
};
-static decoder_info_t dec_info_audio = {
+static const decoder_info_t dec_info_audio = {
audio_types, /* supported types */
9 /* priority */
};
diff --git a/src/libxineadec/nsf.c b/src/libxineadec/nsf.c
index 8e6ccd1b6..db906b087 100644
--- a/src/libxineadec/nsf.c
+++ b/src/libxineadec/nsf.c
@@ -20,7 +20,7 @@
* NSF Audio "Decoder" using the Nosefart NSF engine by Matt Conte
* http://www.baisoku.org/
*
- * $Id: nsf.c,v 1.10 2006/05/03 19:46:08 dsalt Exp $
+ * $Id: nsf.c,v 1.11 2006/06/02 22:13:45 dsalt Exp $
*/
#include <stdio.h>
@@ -279,7 +279,7 @@ static uint32_t audio_types[] = {
* the priority that the plugin should be given with respect to other
* plugins that handle the same buffer type. A plugin with priority (n+1)
* will be used instead of a plugin with priority (n). */
-static decoder_info_t dec_info_audio = {
+static const decoder_info_t dec_info_audio = {
audio_types, /* supported types */
5 /* priority */
};