summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLajos Molnar <lajos@google.com>2014-03-07 02:33:08 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-03-07 02:33:08 +0000
commit2613347d74c3f35bc6fda5df1c29c1119c22d432 (patch)
tree7f97cbfd6f1f9d3183a8b8e0ffbdadae662a6372 /include
parent909498b72d740e3151561fd4435ad0a329ec9c6e (diff)
parent933a4d3339ebbcd34a7f97b9e7350ec74b5ec29c (diff)
downloadframeworks_av-2613347d74c3f35bc6fda5df1c29c1119c22d432.zip
frameworks_av-2613347d74c3f35bc6fda5df1c29c1119c22d432.tar.gz
frameworks_av-2613347d74c3f35bc6fda5df1c29c1119c22d432.tar.bz2
Merge "Added support to query ACodec whether adaptive playback is enabled." into klp-dev
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/ACodec.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/media/stagefright/ACodec.h b/include/media/stagefright/ACodec.h
index 7395055..510c482 100644
--- a/include/media/stagefright/ACodec.h
+++ b/include/media/stagefright/ACodec.h
@@ -67,6 +67,8 @@ struct ACodec : public AHierarchicalStateMachine {
void signalRequestIDRFrame();
+ bool isConfiguredForAdaptivePlayback() { return mIsConfiguredForAdaptivePlayback; }
+
struct PortDescription : public RefBase {
size_t countBuffers();
IOMX::buffer_id bufferIDAt(size_t index) const;
@@ -187,6 +189,7 @@ private:
bool mIsEncoder;
bool mUseMetadataOnEncoderOutput;
bool mShutdownInProgress;
+ bool mIsConfiguredForAdaptivePlayback;
// If "mKeepComponentAllocated" we only transition back to Loaded state
// and do not release the component instance.