summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>2014-11-17 20:14:08 +0100
committerBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>2014-11-17 20:14:08 +0100
commit86a58cabe322b746ab0eb17f0cade34ed68ba60e (patch)
treecd69742087fbd01d855cbe1b252bf303b3b687be /cmds
parent9b77083e582a8b6088ac6a2cb4151dfbdd324557 (diff)
downloadframeworks_av-86a58cabe322b746ab0eb17f0cade34ed68ba60e.zip
frameworks_av-86a58cabe322b746ab0eb17f0cade34ed68ba60e.tar.gz
frameworks_av-86a58cabe322b746ab0eb17f0cade34ed68ba60e.tar.bz2
Fix struct vs. class mismatches
Fix something being declared a struct and forward-declared a class and vice versa. gcc doesn't care, clang complains about the mismatch. Change-Id: I7a7a8e9040e3c86fa1d73eb112631ea140861657 Signed-off-by: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
Diffstat (limited to 'cmds')
-rw-r--r--cmds/stagefright/SineSource.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/stagefright/SineSource.h b/cmds/stagefright/SineSource.h
index 76ab669..d772e0d 100644
--- a/cmds/stagefright/SineSource.h
+++ b/cmds/stagefright/SineSource.h
@@ -6,7 +6,7 @@
namespace android {
-struct MediaBufferGroup;
+class MediaBufferGroup;
struct SineSource : public MediaSource {
SineSource(int32_t sampleRate, int32_t numChannels);