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:
zylthinking 2015-09-23 13:01:44 +08:00 committed by Michael Niedermayer
parent 69e6ed2174
commit d1bbefeaa7
1 changed files with 1 additions and 1 deletions

View File

@ -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 {