summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/ACodec.cpp
diff options
context:
space:
mode:
authorRobert Shih <robertshih@google.com>2014-02-03 19:37:11 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-03 19:37:13 +0000
commit3fe8a8f797ca62096f4c929b0d81573ebe4a5458 (patch)
tree4448424f40a47f77008deba6f3dcbbaba8515254 /media/libstagefright/ACodec.cpp
parentdf900f87eb09e2392d19216f09e0c168883d1004 (diff)
parent625b93f1971039a547b239f87a2dc8a8d5716589 (diff)
downloadframeworks_av-3fe8a8f797ca62096f4c929b0d81573ebe4a5458.zip
frameworks_av-3fe8a8f797ca62096f4c929b0d81573ebe4a5458.tar.gz
frameworks_av-3fe8a8f797ca62096f4c929b0d81573ebe4a5458.tar.bz2
Merge "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 6c62fdf..4b10186 100644
--- a/media/libstagefright/ACodec.cpp
+++ b/media/libstagefright/ACodec.cpp
@@ -3323,11 +3323,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;
}
}