Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1f3ea0a2 authored by Rakesh Kumar's avatar Rakesh Kumar Committed by android-build-merger
Browse files

Merge "NdkMediaCodec: Wrong check in error callback handler" am: 49a4f52e...

Merge "NdkMediaCodec: Wrong check in error callback handler" am: 49a4f52e am: 81551435 am: a001e57f
am: 59244b5b

Change-Id: I263b72b11799b446a29b0bb63e5d5ba523a3fc0c
parents 00f74b63 59244b5b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -250,8 +250,8 @@ void CodecHandler::onMessageReceived(const sp<AMessage> &msg) {
                         ALOGE("CB_ERROR: err is expected.");
                         break;
                     }
                     if (!msg->findInt32("action", &actionCode)) {
                         ALOGE("CB_ERROR: action is expected.");
                     if (!msg->findInt32("actionCode", &actionCode)) {
                         ALOGE("CB_ERROR: actionCode is expected.");
                         break;
                     }
                     msg->findString("detail", &detail);