Searched defs:MediaSync (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DMediaSync.h42 // MediaSync manages media playback and its synchronization to a media clock
58 // In video-only mode, MediaSync will playback every video frame even though
62 // track (for querying information of audio rendering) for MediaSync.
64 // Then the client needs to obtain a surface from MediaSync and render video
65 // frames onto that surface. Internally, the MediaSync will receive those video
72 class MediaSync : public AHandler { class in namespace:android
74 // Create an instance of MediaSync.
75 static sp<MediaSync> create();
77 // Called when MediaSync is used to render video. It should be called
102 // Get the media clock used by the MediaSync s
[all...]
/frameworks/av/media/libstagefright/foundation/include/
H A DMediaSync.h42 // MediaSync manages media playback and its synchronization to a media clock
58 // In video-only mode, MediaSync will playback every video frame even though
62 // track (for querying information of audio rendering) for MediaSync.
64 // Then the client needs to obtain a surface from MediaSync and render video
65 // frames onto that surface. Internally, the MediaSync will receive those video
72 class MediaSync : public AHandler { class in namespace:android
74 // Create an instance of MediaSync.
75 static sp<MediaSync> create();
77 // Called when MediaSync is used to render video. It should be called
102 // Get the media clock used by the MediaSync s
[all...]
/frameworks/av/media/libstagefright/include/
H A DMediaSync.h42 // MediaSync manages media playback and its synchronization to a media clock
58 // In video-only mode, MediaSync will playback every video frame even though
62 // track (for querying information of audio rendering) for MediaSync.
64 // Then the client needs to obtain a surface from MediaSync and render video
65 // frames onto that surface. Internally, the MediaSync will receive those video
72 class MediaSync : public AHandler { class in namespace:android
74 // Create an instance of MediaSync.
75 static sp<MediaSync> create();
77 // Called when MediaSync is used to render video. It should be called
102 // Get the media clock used by the MediaSync s
[all...]
/frameworks/av/media/libstagefright/
H A DMediaSync.cpp18 #define LOG_TAG "MediaSync"
27 #include <media/stagefright/MediaSync.h>
42 sp<MediaSync> MediaSync::create() {
43 sp<MediaSync> sync = new MediaSync();
48 MediaSync::MediaSync() function in class:android::MediaSync
68 mLooper->setName("MediaSync");
72 MediaSync
[all...]
/frameworks/base/media/java/android/media/
H A DMediaSync.java38 * MediaSync class can be used to synchronously play audio and video streams.
41 * <p>MediaSync is generally used like this:
43 * MediaSync sync = new MediaSync();
51 * sync.setCallback(new MediaSync.Callback() {
53 * public void onAudioBufferConsumed(MediaSync sync, ByteBuffer audioBuffer, int bufferId) {
77 * // MediaCodec's, how they are fed to MediaSync and how they are returned by MediaSync.
91 * // This is the callback from MediaSync.
92 * onAudioBufferConsumed(MediaSync syn
116 public final class MediaSync { class
210 public MediaSync() { method in class:MediaSync
[all...]

Completed in 101 milliseconds