Searched defs:addTimedTextSource (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaPlayer2.java1513 * addTimedTextSource method is called.
1521 * MIME type for SubRip (SRT) container. Used in addTimedTextSource APIs.
1573 public void addTimedTextSource(String path, String mimeType) throws IOException { } method in class:MediaPlayer2
1591 public void addTimedTextSource(Context context, Uri uri, String mimeType) throws IOException { } method in class:MediaPlayer2
1610 public void addTimedTextSource(FileDescriptor fd, String mimeType) { } method in class:MediaPlayer2
1631 public abstract void addTimedTextSource(FileDescriptor fd, long offset, long length, String mime); method in class:MediaPlayer2
H A DMediaPlayer2Impl.java2052 * addTimedTextSource method is called.
2318 public void addTimedTextSource(String path, String mimeType) method in class:MediaPlayer2Impl
2329 addTimedTextSource(fd, mimeType);
2355 public void addTimedTextSource(Context context, Uri uri, String mimeType) method in class:MediaPlayer2Impl
2359 addTimedTextSource(uri.getPath(), mimeType);
2370 addTimedTextSource(fd.getFileDescriptor(), mimeType);
2399 public void addTimedTextSource(FileDescriptor fd, String mimeType) { method in class:MediaPlayer2Impl
2401 addTimedTextSource(fd, 0, 0x7ffffffffffffffL, mimeType);
2424 public void addTimedTextSource(FileDescriptor fd, long offset, long length, String mime) { method in class:MediaPlayer2Impl
H A DMediaPlayer.java536 * <tr><td>addTimedTextSource </p></td>
2583 * addTimedTextSource methods are called.
2624 * MIME type for SubRip (SRT) container. Used in addTimedTextSource APIs.
2883 public void addTimedTextSource(String path, String mimeType) method in class:MediaPlayer
2894 addTimedTextSource(fd, mimeType);
2917 public void addTimedTextSource(Context context, Uri uri, String mimeType) method in class:MediaPlayer
2921 addTimedTextSource(uri.getPath(), mimeType);
2932 addTimedTextSource(fd.getFileDescriptor(), mimeType);
2959 public void addTimedTextSource(FileDescriptor fd, String mimeType) method in class:MediaPlayer
2962 addTimedTextSource(f
2983 public void addTimedTextSource(FileDescriptor fd, long offset, long length, String mime) method in class:MediaPlayer
[all...]

Completed in 335 milliseconds