libstagefright: return EOS if CustomSource::read() is called after decode_thread() returns

pull/2/head
Mohamed Naufal 13 years ago
parent 09a49e8919
commit 23ea48f2f7
  1. 2
      libavcodec/libstagefright.cpp

@ -104,6 +104,8 @@ public:
Frame *frame;
status_t ret;
if (s->thread_exited)
return ERROR_END_OF_STREAM;
pthread_mutex_lock(&s->in_mutex);
while (s->in_queue->empty())

Loading…
Cancel
Save