1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-17 21:27:08 +00:00
stream_livedotcom.c:70: warning: assignment makes pointer from integer without a cast
stream_livedotcom.c:77: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast
stream_livedotcom.c:78: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast
stream_livedotcom.c:84: warning: passing argument 1 of 'read' makes integer from pointer without a cast
stream_livedotcom.c:96: warning: control reaches end of non-void function


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17090 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rathann 2005-12-05 01:24:27 +00:00
parent d537007fb3
commit 7daf67e81b

View File

@ -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;
}