Fix ffplay to keep calling av_read_frame even if EOF has been reached.
Patch by Michael Chinen, mchinen gmail Originally committed as revision 25426 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c689cccec9
commit
27d97fded3
4
ffplay.c
4
ffplay.c
@ -2605,7 +2605,7 @@ static int decode_thread(void *arg)
|
|||||||
SDL_Delay(10);
|
SDL_Delay(10);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if(url_feof(ic->pb) || eof) {
|
if(eof) {
|
||||||
if(is->video_stream >= 0){
|
if(is->video_stream >= 0){
|
||||||
av_init_packet(pkt);
|
av_init_packet(pkt);
|
||||||
pkt->data=NULL;
|
pkt->data=NULL;
|
||||||
@ -2626,7 +2626,7 @@ static int decode_thread(void *arg)
|
|||||||
}
|
}
|
||||||
ret = av_read_frame(ic, pkt);
|
ret = av_read_frame(ic, pkt);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
if (ret == AVERROR_EOF)
|
if (ret == AVERROR_EOF || url_feof(ic->pb))
|
||||||
eof=1;
|
eof=1;
|
||||||
if (url_ferror(ic->pb))
|
if (url_ferror(ic->pb))
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user