comparison cfg-common.h @ 18135:ebb9806d7dda

rtsp options should be available for mencoder as well
author reimar
date Tue, 18 Apr 2006 11:06:35 +0000
parents f4aa4dc211c2
children 4231482179b6
comparison
equal deleted inserted replaced
18134:615c90c6a4e4 18135:ebb9806d7dda
69 {"passwd", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, 69 {"passwd", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
70 {"bandwidth", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, 70 {"bandwidth", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
71 {"user-agent", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, 71 {"user-agent", "MPlayer was compiled without streaming (network) support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
72 #endif 72 #endif
73 73
74 #ifdef STREAMING_LIVE555
75 {"sdp", "-sdp is obsolete, use sdp://file instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
76 // -rtsp-stream-over-tcp option, specifying TCP streaming of RTP/RTCP
77 {"rtsp-stream-over-tcp", &rtspStreamOverTCP, CONF_TYPE_FLAG, 0, 0, 1, NULL},
78 {"rtsp-port", &rtsp_port, CONF_TYPE_INT, CONF_RANGE, -1, 65535, NULL},
79 #else
80 {"rtsp-stream-over-tcp", "RTSP support requires the \"LIVE555 Streaming Media\" libraries.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
81 {"rtsp-port", "RTSP support requires the \"LIVE555 Streaming Media\" libraries.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
82 #endif
74 83
75 // ------------------------- demuxer options -------------------- 84 // ------------------------- demuxer options --------------------
76 85
77 // number of frames to play/convert 86 // number of frames to play/convert
78 {"frames", &play_n_frames_mf, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL}, 87 {"frames", &play_n_frames_mf, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
410 #endif 419 #endif
411 420
412 #ifdef USE_FRIBIDI 421 #ifdef USE_FRIBIDI
413 extern char *fribidi_charset; 422 extern char *fribidi_charset;
414 extern int flip_hebrew; 423 extern int flip_hebrew;
424 #endif
425
426 #ifdef STREAMING_LIVE555
427 extern int rtspStreamOverTCP;
428 extern int rtsp_port;
415 #endif 429 #endif
416 430
417 431
418 extern int audio_stream_cache; 432 extern int audio_stream_cache;
419 433