diff --git a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/ExoPlayer.java b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/ExoPlayer.java index ff144f9174..5c79c3314d 100644 --- a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/ExoPlayer.java +++ b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/ExoPlayer.java @@ -1566,9 +1566,10 @@ public interface ExoPlayer extends Player { * frame. * *
If {@linkplain #setVideoSurface passing a surface to the player directly}, the output - * resolution needs to be signaled by passing a renderer message with type {@link - * Renderer#MSG_SET_VIDEO_OUTPUT_RESOLUTION} after calling this method. For {@link SurfaceView}, - * {@link TextureView} and {@link SurfaceHolder} output this happens automatically. + * resolution needs to be signaled by passing a {@linkplain #createMessage(PlayerMessage.Target) + * message} to the {@linkplain Renderer video renderer} with type {@link + * Renderer#MSG_SET_VIDEO_OUTPUT_RESOLUTION} after calling this method. For {@link SurfaceView} + * and {@link SurfaceHolder} output this happens automatically. * *
The following limitations exist for using {@linkplain Effect video effects}: * @@ -1579,7 +1580,8 @@ public interface ExoPlayer extends Player { * version as the rest of the {@code androidx.media3} modules being used by the app. *