File tree Expand file tree Collapse file tree 2 files changed +200
-171
lines changed
libraries/exoplayer_rtsp/src
main/java/androidx/media3/exoplayer/rtsp/reader
test/java/androidx/media3/exoplayer/rtsp/reader Expand file tree Collapse file tree 2 files changed +200
-171
lines changed Original file line number Diff line number Diff line change @@ -220,15 +220,11 @@ private void processAggregationPacket(ParsableByteArray data) throws ParserExcep
220
220
}
221
221
if (data .bytesLeft () > 0 ) {
222
222
throw ParserException .createForMalformedManifest (
223
- "Malformed Aggregation Packet. Packet size exceeds NAL unit size." ,
224
- /* cause= */ null
225
- );
223
+ "Malformed Aggregation Packet. Packet size exceeds NAL unit size." , /* cause= */ null );
226
224
}
227
225
if (nalUnitsCount < 2 ) {
228
226
throw ParserException .createForMalformedManifest (
229
- "Aggregation Packet must contain at least 2 NAL units." ,
230
- /* cause= */ null
231
- );
227
+ "Aggregation Packet must contain at least 2 NAL units." , /* cause= */ null );
232
228
}
233
229
}
234
230
You can’t perform that action at this time.
0 commit comments