summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 58feb8e245..56272fc3a4 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -80,6 +80,10 @@ extern int vo_zr_parseoption(struct config * conf, char *opt, char * param);
extern void vo_zr_revertoption(config_t* opt,char* pram);
#endif
+#ifdef STREAMING_LIVE_DOT_COM
+extern int isSDPFile;
+#endif
+
#ifdef HAVE_NEW_GUI
extern char * skinName;
#endif
@@ -276,6 +280,13 @@ static config_t mplayer_opts[]={
{"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption },
#endif
+#ifdef STREAMING_LIVE_DOT_COM
+ // -sdp option, specifying that the source is a SDP file
+ {"sdp", &isSDPFile, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+#else
+ {"sdp", "MPlayer was compiled WITHOUT the \"LIVE.COM Streaming Media\" libraries!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+#endif
+
//---------------------- mplayer-only options ------------------------
{"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 2 , NULL},