summaryrefslogtreecommitdiffstats
path: root/media/libmedia/SingleStateQueueInstantiations.cpp
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-11-26 10:40:24 -0800
committerGlenn Kasten <gkasten@google.com>2013-03-05 08:26:50 -0800
commit5c4cc0d99d3b1cb35c5d7c237272ee53142745fb (patch)
tree96c55aba5ce8363f33a05641f0a4be8ed09128c9 /media/libmedia/SingleStateQueueInstantiations.cpp
parentd573622dc001c23223cb26b1f55fb75be189e77d (diff)
downloadframeworks_av-5c4cc0d99d3b1cb35c5d7c237272ee53142745fb.zip
frameworks_av-5c4cc0d99d3b1cb35c5d7c237272ee53142745fb.tar.gz
frameworks_av-5c4cc0d99d3b1cb35c5d7c237272ee53142745fb.tar.bz2
Add template class SingleStateQueue
Change-Id: If7e2bc9b2a216524ee9cbb68682e2634933b4973
Diffstat (limited to 'media/libmedia/SingleStateQueueInstantiations.cpp')
-rw-r--r--media/libmedia/SingleStateQueueInstantiations.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/media/libmedia/SingleStateQueueInstantiations.cpp b/media/libmedia/SingleStateQueueInstantiations.cpp
new file mode 100644
index 0000000..2afebe9
--- /dev/null
+++ b/media/libmedia/SingleStateQueueInstantiations.cpp
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <media/SingleStateQueue.h>
+#include <private/media/StaticAudioTrackState.h>
+
+// FIXME hack for gcc
+
+namespace android {
+
+template class SingleStateQueue<StaticAudioTrackState>; // typedef StaticAudioTrackSingleStateQueue
+
+}