mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
avcodec/libstagefright: fix Stagefright_decode_frame() failing to exit when the source is done
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
69e6ed2174
commit
d1bbefeaa7
@ -433,7 +433,7 @@ static int Stagefright_decode_frame(AVCodecContext *avctx, void *data,
|
||||
pthread_mutex_lock(&s->out_mutex);
|
||||
if (!s->out_queue->empty()) break;
|
||||
pthread_mutex_unlock(&s->out_mutex);
|
||||
if (s->source_done) {
|
||||
if (!s->source_done) {
|
||||
usleep(10000);
|
||||
continue;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user