summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream_livedotcom.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/stream_livedotcom.c')
-rw-r--r--libmpdemux/stream_livedotcom.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libmpdemux/stream_livedotcom.c b/libmpdemux/stream_livedotcom.c
index 19936b9cb4..0de20ce429 100644
--- a/libmpdemux/stream_livedotcom.c
+++ b/libmpdemux/stream_livedotcom.c
@@ -56,7 +56,7 @@ fail:
}
static int open_live_sdp(stream_t *stream,int mode, void* opts, int* file_format) {
- FILE *f;
+ int f;
char *filename = stream->url;
off_t len;
char* sdpDescription;
@@ -93,6 +93,7 @@ static int open_live_sdp(stream_t *stream,int mode, void* opts, int* file_format
*file_format = DEMUXER_TYPE_RTP;
return STREAM_OK;
}
+ return STREAM_UNSUPORTED;
}