summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/ACodec.cpp
diff options
context:
space:
mode:
authorLajos Molnar <lajos@google.com>2014-03-07 02:38:22 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-07 02:38:22 +0000
commit4dbd814de3a3bc95ca3fe39be2400418e7a05602 (patch)
treed377e9dbea012d8acda6cae168f03700835ac70e /media/libstagefright/ACodec.cpp
parente389b1bdd13e768baa2532f537236b2c5e6243fa (diff)
parent2338782d18d9bcc8197c63dbf205332a2a737440 (diff)
downloadframeworks_av-4dbd814de3a3bc95ca3fe39be2400418e7a05602.zip
frameworks_av-4dbd814de3a3bc95ca3fe39be2400418e7a05602.tar.gz
frameworks_av-4dbd814de3a3bc95ca3fe39be2400418e7a05602.tar.bz2
am 2338782d: Merge "Fixed misplaced bracket for switch-case block." into klp-dev
* commit '2338782d18d9bcc8197c63dbf205332a2a737440': Fixed misplaced bracket for switch-case block.
Diffstat (limited to 'media/libstagefright/ACodec.cpp')
-rw-r--r--media/libstagefright/ACodec.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/media/libstagefright/ACodec.cpp b/media/libstagefright/ACodec.cpp
index 37cad63..e06dbf2 100644
--- a/media/libstagefright/ACodec.cpp
+++ b/media/libstagefright/ACodec.cpp
@@ -3318,11 +3318,11 @@ void ACodec::BaseState::onInputBufferFilled(const sp<AMessage> &msg) {
mCodec->mInputEOSResult = err;
}
break;
-
- default:
- CHECK_EQ((int)mode, (int)FREE_BUFFERS);
- break;
}
+
+ default:
+ CHECK_EQ((int)mode, (int)FREE_BUFFERS);
+ break;
}
}