summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChong Zhang <chz@google.com>2014-03-13 23:43:25 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-13 23:43:25 +0000
commit29c291f2337561b1f8c2f79bc34339b0b9c28b9c (patch)
treea3632cabb7b28a33985370411ec0ae9dcc0a7379 /include
parent28836548337865536788799430e9fae77e996422 (diff)
parenta671f943b72155460f0c94cdd92d829cb059b571 (diff)
downloadframeworks_av-29c291f2337561b1f8c2f79bc34339b0b9c28b9c.zip
frameworks_av-29c291f2337561b1f8c2f79bc34339b0b9c28b9c.tar.gz
frameworks_av-29c291f2337561b1f8c2f79bc34339b0b9c28b9c.tar.bz2
am a671f943: am c69bc40a: Merge "Cap pts gap between adjacent frames to specified value" into klp-dev
* commit 'a671f943b72155460f0c94cdd92d829cb059b571': Cap pts gap between adjacent frames to specified value
Diffstat (limited to 'include')
-rw-r--r--include/media/IOMX.h1
-rw-r--r--include/media/stagefright/ACodec.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/media/IOMX.h b/include/media/IOMX.h
index 9c8451c..6643736 100644
--- a/include/media/IOMX.h
+++ b/include/media/IOMX.h
@@ -142,6 +142,7 @@ public:
enum InternalOptionType {
INTERNAL_OPTION_SUSPEND, // data is a bool
INTERNAL_OPTION_REPEAT_PREVIOUS_FRAME_DELAY, // data is an int64_t
+ INTERNAL_OPTION_MAX_TIMESTAMP_GAP, // data is int64_t
};
virtual status_t setInternalOption(
node_id node,
diff --git a/include/media/stagefright/ACodec.h b/include/media/stagefright/ACodec.h
index f90fc4a..7ba5acc 100644
--- a/include/media/stagefright/ACodec.h
+++ b/include/media/stagefright/ACodec.h
@@ -205,6 +205,7 @@ private:
int32_t mMetaDataBuffersToSubmit;
int64_t mRepeatFrameDelayUs;
+ int64_t mMaxPtsGapUs;
status_t setCyclicIntraMacroblockRefresh(const sp<AMessage> &msg, int32_t mode);
status_t allocateBuffersOnPort(OMX_U32 portIndex);