diff options
author | Lajos Molnar <lajos@google.com> | 2013-05-28 13:59:33 -0700 |
---|---|---|
committer | Lajos Molnar <lajos@google.com> | 2013-05-29 12:08:18 -0700 |
commit | ecca7f60a69d99a9569c06bdf9c122f853e67d47 (patch) | |
tree | dad778660a7f15bf4427a92d9cdc40dd99925149 /api | |
parent | 62f47bc29588e495a6f8efd082b34a92f8ec2098 (diff) | |
download | frameworks_base-ecca7f60a69d99a9569c06bdf9c122f853e67d47.zip frameworks_base-ecca7f60a69d99a9569c06bdf9c122f853e67d47.tar.gz frameworks_base-ecca7f60a69d99a9569c06bdf9c122f853e67d47.tar.bz2 |
android.media.MediaMuxer: remove SAMPLE_SYNC_FLAG
SAMPLE_SYNC_FLAG is not used by MediaMuxer; instead,
MediaCodec.BUFFER_FLAG_SYNC_FRAME is used, which has
the same value.
Remove this now, so that users will not have to translate
MediaCodec flags to MediaMuxer flags, even though MediaMuxer
takes in MediaCodec.BufferInfo objects to specify these flags.
Change-Id: I4b2f2039ca16debf4788a530a36bdd06d516f417
Signed-off-by: Lajos Molnar <lajos@google.com>
Bug: 9169479
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/api/current.txt b/api/current.txt index a9d0f57..942cd57 100644 --- a/api/current.txt +++ b/api/current.txt @@ -11989,7 +11989,6 @@ package android.media { method public void start(); method public void stop(); method public void writeSampleData(int, java.nio.ByteBuffer, android.media.MediaCodec.BufferInfo); - field public static final int SAMPLE_FLAG_SYNC = 1; // 0x1 } public static final class MediaMuxer.OutputFormat { |