avcodec/libstagefright: fix Stagefright_decode_frame() failing to exit when the source is done

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/152/head^2
zylthinking 9 years ago committed by Michael Niedermayer
parent 69e6ed2174
commit d1bbefeaa7
  1. 2
      libavcodec/libstagefright.cpp

@ -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…
Cancel
Save