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

Commit a001e57f 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

am: 81551435

Change-Id: I411b36b58fa9fe343d74fc215d4c62114efe111c
parents 62e08e80 81551435
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -244,8 +244,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);