summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/ACodec.cpp
diff options
context:
space:
mode:
authorRobert Shih <robertshih@google.com>2014-01-23 14:16:32 -0800
committerRobert Shih <robertshih@google.com>2014-01-24 16:43:40 -0800
commit625b93f1971039a547b239f87a2dc8a8d5716589 (patch)
tree1ae5a863459a5c6b78f4f132453466ce85db2013 /media/libstagefright/ACodec.cpp
parentcbfff7b3bb8166dd6a95d6974baa1fc8312ca17f (diff)
downloadframeworks_av-625b93f1971039a547b239f87a2dc8a8d5716589.zip
frameworks_av-625b93f1971039a547b239f87a2dc8a8d5716589.tar.gz
frameworks_av-625b93f1971039a547b239f87a2dc8a8d5716589.tar.bz2
Fixed misplaced bracket for switch-case block.
Change-Id: I66b410e1e19601ad65d8357bda4c0c58e2dc15dc
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 eb274a8..173d77f 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;
}
}