diff options
author | James Dong <jdong@google.com> | 2010-11-08 16:04:27 -0800 |
---|---|---|
committer | James Dong <jdong@google.com> | 2010-11-08 16:52:59 -0800 |
commit | ce0febae177d1816ee7a6750ed9fba52472b9a71 (patch) | |
tree | 6e6283e217fc18d53b63652e1d3fe9da2487919f /include/private/media | |
parent | 85d9b4225d024bb0d602b48bd6d5219cbebd7b8e (diff) | |
download | frameworks_av-ce0febae177d1816ee7a6750ed9fba52472b9a71.zip frameworks_av-ce0febae177d1816ee7a6750ed9fba52472b9a71.tar.gz frameworks_av-ce0febae177d1816ee7a6750ed9fba52472b9a71.tar.bz2 |
Support extracting thumbnail from rotated video tracks
Change-Id: Ife0a2536aaac5ff1efdf1035b9d2c892773ee16c
Diffstat (limited to 'include/private/media')
-rw-r--r-- | include/private/media/VideoFrame.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/private/media/VideoFrame.h b/include/private/media/VideoFrame.h index 9c35274..3aff0c6 100644 --- a/include/private/media/VideoFrame.h +++ b/include/private/media/VideoFrame.h @@ -120,6 +120,7 @@ public: uint32_t mDisplayHeight; uint32_t mSize; // Number of bytes in mData uint8_t* mData; // Actual binary data + int32_t mRotationAngle; // rotation angle, clockwise }; }; // namespace android |