mirror of https://github.com/mpv-player/mpv
Do not read any more data at eof: if got eof in the middle of an audio
block, ad_realaudio requests more data even if sh->audio->eof Fixes sig11 at eof of hotel_california_ra5.1_640x480_30s.rmvb git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14587 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a2fcc5b550
commit
a6fbd6ca66
|
@ -562,6 +562,7 @@ int demux_real_fill_buffer(demuxer_t *demuxer)
|
|||
len = stream_read_word(demuxer->stream);
|
||||
} else if ((version == 0x494e) && (len == 0x4458)) {
|
||||
mp_msg(MSGT_DEMUX,MSGL_V,"demux_real: Found INDX chunk. EOF.\n");
|
||||
demuxer->stream->eof=1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue