]> git.sesse.net Git - vlc/commitdiff
Move ppsz_input_state[] to modules/control/rc.c because it is the only user of this...
authorJean-Paul Saman <jpsaman@videolan.org>
Sun, 13 Apr 2008 14:52:34 +0000 (16:52 +0200)
committerJean-Paul Saman <jpsaman@videolan.org>
Sun, 13 Apr 2008 16:40:47 +0000 (18:40 +0200)
include/vlc_input.h
modules/control/rc.c

index d71a2de1a5d6022d426dd1414faad6ddf1b76caa..5e03e91906d6eaba0720190473d828dd618a699e 100644 (file)
@@ -544,8 +544,6 @@ enum input_state_e
     ERROR_S
 };
 
-static const char *ppsz_input_state[] = { N_("Initializing"), N_("Opening"), N_("Buffer"), N_("Play"), N_("Pause"), N_("Stop"), N_("Error") };
-
 /* "rate" default, min/max
  * A rate below 1000 plays the movie faster,
  * A rate above 1000 plays the movie slower.
index 8bf1f02deb0ed8a1f548d13dc3a0b22b48bbdc4f..0ef630e68985443c72af6c0afe6dcd96fbc5f8da 100644 (file)
@@ -66,6 +66,8 @@
 #define MAX_LINE_LENGTH 256
 #define STATUS_CHANGE "status change: "
 
+static const char *ppsz_input_state[] = { N_("Initializing"), N_("Opening"), N_("Buffer"), N_("Play"), N_("Pause"), N_("Stop"), N_("Error") };
+
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/