Added release note

This commit is contained in:
microkatz 2024-12-11 15:13:33 +00:00
parent 55d9626b5a
commit 2f880bf051
2 changed files with 4 additions and 1 deletions

View File

@ -30,6 +30,9 @@
* Enable sending `CmcdData` for manifest requests in adaptive streaming
formats DASH, HLS, and SmoothStreaming
([#1951](https://github.com/androidx/media/issues/1951)).
* Provide `MediaCodecInfo` of the codec that will be initialized in
`MediaCodecRenderer.onReadyToInitializeCodec`
([#1963](https://github.com/androidx/media/pull/1963)).
* Transformer:
* Update parameters of `VideoFrameProcessor.registerInputStream` and
`VideoFrameProcessor.Listener.onInputStreamRegistered` to use `Format`.

View File

@ -1495,7 +1495,7 @@ public abstract class MediaCodecRenderer extends BaseRenderer {
*
* <p>The default implementation is a no-op.
*
* @param codecInfo The {@link MediaCodecInfo} the codec which is being configured.
* @param codecInfo The {@link MediaCodecInfo} of the codec which will be initialized.
* @param format The {@link Format} for which the codec is being configured.
* @throws ExoPlaybackException If an error occurs preparing for initializing the codec.
*/