diff options
author | Kunter Gultekin <kuntergultekin@google.com> | 2013-02-07 20:18:45 +0200 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2013-02-20 09:35:57 -0800 |
commit | e72409fe779f620382c5bd0b82f4a32ac91d9fe4 (patch) | |
tree | 61d07311305e4fba8199e64070d86cf0c8bd0f12 /api/current.txt | |
parent | 223b6b3bfeb7cfa3e844abeb36c04ab5c8318446 (diff) | |
download | frameworks_base-e72409fe779f620382c5bd0b82f4a32ac91d9fe4.zip frameworks_base-e72409fe779f620382c5bd0b82f4a32ac91d9fe4.tar.gz frameworks_base-e72409fe779f620382c5bd0b82f4a32ac91d9fe4.tar.bz2 |
Adds vp8 profile and levels to MediaCodecInfo.
In line with ongoing effort of adding vpx encoder to
stagefright (https://android-review.googlesource.com/50893)
we need to add profile and level values for VP8.
VP8 profiles and levels are defined in OMX IL 1.1.2
extension headers, which is also being added here
https://android-review.googlesource.com/51272
This alters the public API.
Change-Id: I2bbb91c0b8b522b90c3cdfadaba0d18134800408
Signed-off-by: Kunter Gultekin <kuntergultekin@google.com>
related-to-bug: 8226783
Diffstat (limited to 'api/current.txt')
-rw-r--r-- | api/current.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index bbf9302..00c326c 100644 --- a/api/current.txt +++ b/api/current.txt @@ -11449,6 +11449,11 @@ package android.media { field public static final int MPEG4ProfileSimpleFBA = 128; // 0x80 field public static final int MPEG4ProfileSimpleFace = 64; // 0x40 field public static final int MPEG4ProfileSimpleScalable = 2; // 0x2 + field public static final int VP8Level_Version0 = 1; // 0x1 + field public static final int VP8Level_Version1 = 2; // 0x2 + field public static final int VP8Level_Version2 = 4; // 0x4 + field public static final int VP8Level_Version3 = 8; // 0x8 + field public static final int VP8ProfileMain = 1; // 0x1 field public int level; field public int profile; } |