Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MKucharski committed Jul 4, 2024
1 parent 37f5d17 commit 408d18f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/src/hls/hls_parser/hls_playlist_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,7 @@ class HlsPlaylistParser {
if (instreamId.startsWith('CC')) {
mimeType = MimeTypes.applicationCea608;
accessibilityChannel = int.parse(instreamId.substring(2));
} else
/* starts with SERVICE */ {
} else /* starts with SERVICE */ {
mimeType = MimeTypes.applicationCea708;
accessibilityChannel = int.parse(instreamId.substring(7));
}
Expand Down Expand Up @@ -830,8 +829,7 @@ class HlsPlaylistParser {
if (methodNone == method) {
currentSchemeDatas.clear();
cachedDrmInitData = null;
} else
/* !METHOD_NONE.equals(method) */ {
} else /* !METHOD_NONE.equals(method) */ {
fullSegmentEncryptionIV = _parseStringAttr(
source: line,
pattern: regexpIv,
Expand Down

0 comments on commit 408d18f

Please sign in to comment.