From c503a63878f14b22c5522db2cc268dcce70b3423 Mon Sep 17 00:00:00 2001 From: ybai001 Date: Fri, 15 Nov 2024 16:31:52 +0800 Subject: [PATCH] Update comment for MPEG_CHANNEL_CONFIGURATION_MAPPING ISO/IEC 23001-8 has been withdrawn. The corresponding definition for channel configuration is available in ISO/IEC 23091-3. Update the comment to reflect this change. --- .../media3/exoplayer/dash/manifest/DashManifestParser.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libraries/exoplayer_dash/src/main/java/androidx/media3/exoplayer/dash/manifest/DashManifestParser.java b/libraries/exoplayer_dash/src/main/java/androidx/media3/exoplayer/dash/manifest/DashManifestParser.java index 8caff5bd92..3b02cdd75c 100644 --- a/libraries/exoplayer_dash/src/main/java/androidx/media3/exoplayer/dash/manifest/DashManifestParser.java +++ b/libraries/exoplayer_dash/src/main/java/androidx/media3/exoplayer/dash/manifest/DashManifestParser.java @@ -79,8 +79,8 @@ public class DashManifestParser extends DefaultHandler /** * Maps the value attribute of an AudioChannelConfiguration with schemeIdUri - * "urn:mpeg:mpegB:cicp:ChannelConfiguration", as defined by ISO 23001-8 clause 8.1, to a channel - * count. + * "urn:mpeg:mpegB:cicp:ChannelConfiguration", as defined by ISO 23091-3:2018 clause 6.2, to a + * channel count. */ private static final int[] MPEG_CHANNEL_CONFIGURATION_MAPPING = new int[] { @@ -1966,7 +1966,8 @@ public class DashManifestParser extends DefaultHandler /** * Parses the number of channels from the value attribute of an AudioChannelConfiguration with - * schemeIdUri "urn:mpeg:mpegB:cicp:ChannelConfiguration", as defined by ISO 23001-8 clause 8.1. + * schemeIdUri "urn:mpeg:mpegB:cicp:ChannelConfiguration", as defined by ISO 23091-3:2018 clause + * 6.2. * * @param xpp The parser from which to read. * @return The parsed number of channels, or {@link Format#NO_VALUE} if the channel count could