From c157afe9dbe6fc8770aaa8b012bc8a35d71d0bcc Mon Sep 17 00:00:00 2001 From: Randy Li Date: Tue, 5 Sep 2017 11:02:56 +0800 Subject: [PATCH] [mpp_list]: release the blocked thread at reset The applcatiion thread is still blocking on the output port. Change-Id: I4693125362a250e5d2f28af8226d608b3040f138 Signed-off-by: Randy Li --- osal/mpp_list.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/osal/mpp_list.cpp b/osal/mpp_list.cpp index da5684bb..55575069 100644 --- a/osal/mpp_list.cpp +++ b/osal/mpp_list.cpp @@ -241,6 +241,7 @@ RK_S32 mpp_list::flush() count--; } } + mCondition.signal(); return 0; }