Don't override input= option value is no input id is passed in tv:// url.

Remove debug fprintf



git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23697 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
voroshil 2007-06-30 10:56:05 +00:00
parent 88166aa171
commit f0ca43a600
1 changed files with 4 additions and 2 deletions

View File

@ -34,7 +34,7 @@ static struct stream_priv_s {
int input;
char* channel;
} stream_priv_dflts = {
0,
-1,
NULL
};
@ -62,10 +62,12 @@ tv_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
stream->type = STREAMTYPE_TV;
*file_format = DEMUXER_TYPE_TV;
/* don't override input= option value if no input id is
passed in tv:// url */
if(p->input!=-1)
tv_param_input=p->input;
if (p->channel)
tv_param_channel=strdup (p->channel);
fprintf(stderr,"%p\n",p->channel) ;
return STREAM_OK;
}