Browse Source

dont let the demuxer thread die before the video has actually been played as seeking would become impossible shortly before EOF

Originally committed as revision 2705 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
0c904df2b6
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      ffplay.c

+ 2
- 1
ffplay.c View File

@@ -1423,7 +1423,8 @@ static int decode_thread(void *arg)

/* if the queue are full, no need to read more */
if (is->audioq.size > MAX_AUDIOQ_SIZE ||
is->videoq.size > MAX_VIDEOQ_SIZE) {
is->videoq.size > MAX_VIDEOQ_SIZE ||
url_feof(&ic->pb)) {
/* wait 10 ms */
SDL_Delay(10);
continue;


Loading…
Cancel
Save