summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-01-19 10:06:23 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-19 10:06:23 -0800
commit1324e3b1a4246f77d516b37fa98013ffad91268e (patch)
tree6d0f6768bcc07bc7869022f6111145f9ee79656f /include
parentd3bf3eeadd59748b9cbe7535378b4bdf8dd8f117 (diff)
parent4061c9aa6d77bd7ad3b43d898b3e55fd62f57f18 (diff)
downloadframeworks_base-1324e3b1a4246f77d516b37fa98013ffad91268e.zip
frameworks_base-1324e3b1a4246f77d516b37fa98013ffad91268e.tar.gz
frameworks_base-1324e3b1a4246f77d516b37fa98013ffad91268e.tar.bz2
am 4061c9aa: Merge "Fix the presentation video resolution when it is different from the actual image resolution of the video." into honeycomb
* commit '4061c9aa6d77bd7ad3b43d898b3e55fd62f57f18': Fix the presentation video resolution when it is different from the actual image resolution of the video.
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/MetaData.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/media/stagefright/MetaData.h b/include/media/stagefright/MetaData.h
index 5170a2c..18fd90e 100644
--- a/include/media/stagefright/MetaData.h
+++ b/include/media/stagefright/MetaData.h
@@ -30,8 +30,10 @@ namespace android {
// The following keys map to int32_t data unless indicated otherwise.
enum {
kKeyMIMEType = 'mime', // cstring
- kKeyWidth = 'widt', // int32_t
- kKeyHeight = 'heig', // int32_t
+ kKeyWidth = 'widt', // int32_t, image pixel
+ kKeyHeight = 'heig', // int32_t, image pixel
+ kKeyDisplayWidth = 'dWid', // int32_t, display/presentation
+ kKeyDisplayHeight = 'dHgt', // int32_t, display/presentation
// a rectangle, if absent assumed to be (0, 0, width - 1, height - 1)
kKeyCropRect = 'crop',