HomeSort by relevance Sort by last modified time
    Searched refs:CaptionEvent (Results 1 - 8 of 8) sorted by null

  /packages/apps/TV/src/com/android/tv/tuner/cc/
Cea708Parser.java 26 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
147 public void emitEvent(CaptionEvent event) {
160 * {@link CaptionEvent} to pass all the results to an observer of the decoding process.
162 * <p>{@link CaptionEvent#type} determines the type of the result and
163 * {@link CaptionEvent#obj} contains the output value of a caption event.
201 void emitEvent(CaptionEvent event);
215 private void emitCaptionEvent(CaptionEvent captionEvent) {
218 mListener.emitEvent(captionEvent);
223 mListener.emitEvent(new CaptionEvent(CAPTION_EMIT_TYPE_BUFFER, mBuffer.toString()))
    [all...]
CaptionTrackRenderer.java 24 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
69 private final ArrayList<CaptionEvent> mPendingCaptionEvents = new ArrayList<>();
111 public void processCaptionEvent(CaptionEvent event) {
300 for (CaptionEvent event : mPendingCaptionEvents) {
  /frameworks/base/media/java/android/media/
Cea708CaptionRenderer.java 200 public void emitEvent(CaptionEvent event) {
208 * {@link CaptionEvent} to pass all the results to an observer of the decoding process .
210 * <p>{@link CaptionEvent#type} determines the type of the result and
211 * {@link CaptionEvent#obj} contains the output value of a caption event.
247 void emitEvent(CaptionEvent event);
250 private void emitCaptionEvent(CaptionEvent captionEvent) {
253 mListener.emitEvent(captionEvent);
258 mListener.emitEvent(new CaptionEvent(CAPTION_EMIT_TYPE_BUFFER, mBuffer.toString()));
347 emitCaptionEvent(new CaptionEvent(CAPTION_EMIT_TYPE_CONTROL, (char) mCommand))
    [all...]
  /packages/apps/TV/src/com/android/tv/tuner/exoplayer/
Cea708TextTrackRenderer.java 30 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
59 void emitEvent(CaptionEvent captionEvent);
258 public void emitEvent(CaptionEvent event) {
MpegTsPlayer.java 40 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
94 void onEmitCaptionEvent(CaptionEvent event);
618 public void emitEvent(CaptionEvent captionEvent) {
620 mVideoEventListener.onEmitCaptionEvent(captionEvent);
  /packages/apps/TV/src/com/android/tv/tuner/data/
Cea708Data.java 170 public static class CaptionEvent {
174 public CaptionEvent(int type, Object obj) {
  /packages/apps/TV/src/com/android/tv/tuner/tvinput/
TunerSession.java 43 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
286 mCaptionTrackRenderer.processCaptionEvent((CaptionEvent) msg.obj);
TunerSessionWorker.java 459 public void onEmitCaptionEvent(Cea708Data.CaptionEvent event) {
    [all...]

Completed in 108 milliseconds