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

  /packages/apps/TV/tuner/src/com/android/tv/tuner/cc/
Cea708Parser.java 25 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
149 public void emitEvent(CaptionEvent event) {
161 * OnCea708ParserListener#emitEvent} is invoked with the parameter {@link CaptionEvent} to pass
164 * <p>{@link CaptionEvent#type} determines the type of the result and {@link CaptionEvent#obj}
216 void emitEvent(CaptionEvent event);
240 private void emitCaptionEvent(CaptionEvent captionEvent) {
243 mListener.emitEvent(captionEvent);
248 mListener.emitEvent(new CaptionEvent(CAPTION_EMIT_TYPE_BUFFER, mBuffer.toString()))
    [all...]
CaptionTrackRenderer.java 23 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
64 private final ArrayList<CaptionEvent> mPendingCaptionEvents = new ArrayList<>();
106 public void processCaptionEvent(CaptionEvent event) {
299 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/tuner/src/com/android/tv/tuner/exoplayer/
Cea708TextTrackRenderer.java 21 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
57 void emitEvent(CaptionEvent captionEvent);
264 public void emitEvent(CaptionEvent event) {
MpegTsPlayer.java 28 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
92 void onEmitCaptionEvent(CaptionEvent event);
630 public void emitEvent(CaptionEvent captionEvent) {
632 mVideoEventListener.onEmitCaptionEvent(captionEvent);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/data/
Cea708Data.java 162 public static class CaptionEvent {
166 public CaptionEvent(int type, Object obj) {
  /packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
TunerSession.java 44 import com.android.tv.tuner.data.Cea708Data.CaptionEvent;
300 mCaptionTrackRenderer.processCaptionEvent((CaptionEvent) msg.obj);
TunerSessionWorker.java 517 public void onEmitCaptionEvent(Cea708Data.CaptionEvent event) {
    [all...]

Completed in 202 milliseconds