summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorLajos Molnar <lajos@google.com>2014-03-07 02:32:25 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-03-07 02:32:25 +0000
commit2338782d18d9bcc8197c63dbf205332a2a737440 (patch)
tree9c3e2776df597444edfe3f5cfd52818b3f1c50ec /media
parentad21a81af3e7d6b58002c9dce9c3278b6323e4a9 (diff)
parentb2be2f2e41d5502d79636b21cbad23f4f983bbd7 (diff)
downloadframeworks_av-2338782d18d9bcc8197c63dbf205332a2a737440.zip
frameworks_av-2338782d18d9bcc8197c63dbf205332a2a737440.tar.gz
frameworks_av-2338782d18d9bcc8197c63dbf205332a2a737440.tar.bz2
Merge "Fixed misplaced bracket for switch-case block." into klp-dev
Diffstat (limited to 'media')
-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 5d5220f..bc4e89b 100644
--- a/media/libstagefright/ACodec.cpp
+++ b/media/libstagefright/ACodec.cpp
@@ -3247,11 +3247,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;
}
}