checking for EOF

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2793 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2001-11-10 12:36:03 +00:00
parent dc28bd3450
commit 22cecc831d
1 changed files with 3 additions and 1 deletions

View File

@ -174,7 +174,7 @@ int vivo_check_file(demuxer_t* demuxer){
mp_msg(MSGT_DEMUX,MSGL_V,"Checking for VIVO\n");
c=stream_read_char(demuxer->stream);
if(c) return 0;
if(c==-256) return 0;
len=0;
while((c=stream_read_char(demuxer->stream))>=0x80){
len+=0x80*(c-0x80);
@ -238,6 +238,8 @@ int demux_vivo_fill_buffer(demuxer_t *demux){
demux->filepos=stream_tell(demux->stream);
c=stream_read_char(demux->stream);
if (c == -256) /* EOF */
return 0;
// printf("c=%02X\n",c);
switch(c&0xF0){
case 0x00: // header - skip it!