summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2012-02-09 00:40:16 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2012-02-09 00:40:16 +0000
commitfd9fc023f6ba0a25e8df26e8cb1e1530013d70d4 (patch)
treee9a064cfa09c9e30573c358b5d6dbef769d0bc49
parenta09365d3eb2fd4e9dfa868659ab0614ab44ca290 (diff)
downloadxine-lib-fd9fc023f6ba0a25e8df26e8cb1e1530013d70d4.tar.gz
xine-lib-fd9fc023f6ba0a25e8df26e8cb1e1530013d70d4.tar.bz2
Make the “PMT scan timed out” message a lot less scary.
-rw-r--r--src/input/input_dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c
index 6eac34ff8..9077c221b 100644
--- a/src/input/input_dvb.c
+++ b/src/input/input_dvb.c
@@ -1304,7 +1304,7 @@ static void dvb_parse_si(dvb_input_plugin_t *this) {
if((poll(&pfd,1,15000)<1) || this->channels[this->channel].pmtpid==0) /* PMT timed out or couldn't be found - default to using channels.conf info */
{
- xprintf(this->stream->xine,XINE_VERBOSITY_LOG,"input_dvb: WARNING **** Reverting to rc6 hehaviour. Please regenerate your channels.conf in ?zap format ****\n");
+ xprintf(this->stream->xine,XINE_VERBOSITY_LOG,"input_dvb: PMT scan timed out. Using video & audio PID info from channels.conf.\n");
dvb_set_pidfilter (this,VIDFILTER,this->channels[this->channel].pid[VIDFILTER], DMX_PES_OTHER, DMX_OUT_TS_TAP);
dvb_set_pidfilter (this,AUDFILTER,this->channels[this->channel].pid[AUDFILTER], DMX_PES_OTHER, DMX_OUT_TS_TAP);
goto done;