summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/input/input_dvd.c10
-rw-r--r--src/libsputext/xine_decoder.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index a8100a063..944ae88bd 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_dvd.c,v 1.215 2007/02/08 02:40:23 dsalt Exp $
+ * $Id: input_dvd.c,v 1.216 2007/02/20 01:04:07 dgp85 Exp $
*
*/
@@ -1749,9 +1749,9 @@ static void *init_class (xine_t *xine, void *data) {
dvd_input_class_t *this;
config_values_t *config = xine->config;
void *dvdcss;
- static char *skip_modes[] = {"skip program", "skip part", "skip title", NULL};
- static char *seek_modes[] = {"seek in program chain", "seek in program", NULL};
- static char *play_single_chapter_modes[] = {"entire dvd", "one chapter", NULL};
+ static const char *skip_modes[] = {"skip program", "skip part", "skip title", NULL};
+ static const char *seek_modes[] = {"seek in program chain", "seek in program", NULL};
+ static const char *play_single_chapter_modes[] = {"entire dvd", "one chapter", NULL};
trace_print("Called\n");
#ifdef INPUT_DEBUG
@@ -1795,7 +1795,7 @@ static void *init_class (xine_t *xine, void *data) {
{
/* we have found libdvdcss, enable the specific config options */
char *raw_device;
- static char *decrypt_modes[] = { "key", "disc", "title", NULL };
+ static const char *decrypt_modes[] = { "key", "disc", "title", NULL };
char *css_cache_default, *css_cache;
int mode;
diff --git a/src/libsputext/xine_decoder.c b/src/libsputext/xine_decoder.c
index f8e50ffd4..e8ef631ca 100644
--- a/src/libsputext/xine_decoder.c
+++ b/src/libsputext/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.98 2007/02/20 00:34:57 dgp85 Exp $
+ * $Id: xine_decoder.c,v 1.99 2007/02/20 01:04:07 dgp85 Exp $
*
*/
@@ -925,7 +925,7 @@ static void update_src_encoding(void *class_gen, xine_cfg_entry_t *entry)
static void *init_spu_decoder_plugin (xine_t *xine, void *data) {
- static char *subtitle_size_strings[] = {
+ static const char *subtitle_size_strings[] = {
"tiny", "small", "normal", "large", "very large", "huge", NULL
};
sputext_class_t *this ;