summaryrefslogtreecommitdiffstats
path: root/include/media/stagefright/ClockEstimator.h
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2014-09-27 17:20:50 +0200
committerBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2014-09-27 17:20:50 +0200
commitdff843f2fae88c10fe18d2925a4e802a35d74433 (patch)
tree3415eacab96ae95004c5857280a363b41aaaf622 /include/media/stagefright/ClockEstimator.h
parent6cd6792a3289c0c50542d8113068478dbc3a5ad0 (diff)
downloadframeworks_av-dff843f2fae88c10fe18d2925a4e802a35d74433.zip
frameworks_av-dff843f2fae88c10fe18d2925a4e802a35d74433.tar.gz
frameworks_av-dff843f2fae88c10fe18d2925a4e802a35d74433.tar.bz2
Add missing #includes
Some header files in stagefright try to use DISALLOW_EVIL_CONSTRUCTORS (and even DISALLOW_IMPLICIT_CONSTRUCTORS, which isn't defined anywhere in stagefright) without including the proper header. With clang, this results in a build failure - with gcc, it results in DISALLOW_EVIL_CONSTRUCTORS/DISALLOW_IMPLICIT_CONSTRUCTORS not doing what they were intended to do, instead appearing as a method in the DWARF debug sections of files using the headers. Change-Id: Ie4e99affe98ed8fb1bfcf5ec604c19dcd5311c62 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
Diffstat (limited to 'include/media/stagefright/ClockEstimator.h')
-rw-r--r--include/media/stagefright/ClockEstimator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/stagefright/ClockEstimator.h b/include/media/stagefright/ClockEstimator.h
index 2fd6e75..1455b7f 100644
--- a/include/media/stagefright/ClockEstimator.h
+++ b/include/media/stagefright/ClockEstimator.h
@@ -19,7 +19,7 @@
#define CLOCK_ESTIMATOR_H_
-
+#include "foundation/ABase.h"
#include <utils/RefBase.h>
#include <utils/Vector.h>