File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11401,6 +11401,7 @@ package android.media {
1140111401 field public static final int MEDIA_INFO_METADATA_UPDATE = 802; // 0x322
1140211402 field public static final int MEDIA_INFO_NOT_SEEKABLE = 801; // 0x321
1140311403 field public static final int MEDIA_INFO_UNKNOWN = 1; // 0x1
11404+ field public static final int MEDIA_INFO_VIDEO_RENDERING_START = 3; // 0x3
1140411405 field public static final int MEDIA_INFO_VIDEO_TRACK_LAGGING = 700; // 0x2bc
1140511406 field public static final java.lang.String MEDIA_MIMETYPE_TEXT_SUBRIP = "application/x-subrip";
1140611407 field public static final int VIDEO_SCALING_MODE_SCALE_TO_FIT = 1; // 0x1
Original file line number Diff line number Diff line change @@ -2319,6 +2319,11 @@ public void setOnErrorListener(OnErrorListener listener)
23192319 */
23202320 public static final int MEDIA_INFO_STARTED_AS_NEXT = 2 ;
23212321
2322+ /** The player just pushed the very first video frame for rendering.
2323+ * @see android.media.MediaPlayer.OnInfoListener
2324+ */
2325+ public static final int MEDIA_INFO_VIDEO_RENDERING_START = 3 ;
2326+
23222327 /** The video is too complex for the decoder: it can't decode frames fast
23232328 * enough. Possibly only the audio plays fine at this stage.
23242329 * @see android.media.MediaPlayer.OnInfoListener
@@ -2374,6 +2379,7 @@ public interface OnInfoListener
23742379 * <ul>
23752380 * <li>{@link #MEDIA_INFO_UNKNOWN}
23762381 * <li>{@link #MEDIA_INFO_VIDEO_TRACK_LAGGING}
2382+ * <li>{@link #MEDIA_INFO_VIDEO_RENDERING_START}
23772383 * <li>{@link #MEDIA_INFO_BUFFERING_START}
23782384 * <li>{@link #MEDIA_INFO_BUFFERING_END}
23792385 * <li>{@link #MEDIA_INFO_BAD_INTERLEAVING}
You can’t perform that action at this time.
0 commit comments