Skip to content

Commit

Permalink
Feature/xhub 5315 (#14)
Browse files Browse the repository at this point in the history
* Add checking values statements

* Add video codec

* Add library to code itself to fix problem with spaces in uri
  • Loading branch information
aszczurek-miquido authored Dec 18, 2023
1 parent 0f0c12d commit a6823bb
Show file tree
Hide file tree
Showing 37 changed files with 4,254 additions and 1,537 deletions.
116 changes: 116 additions & 0 deletions ios/RCTVideo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@
objects = {

/* Begin PBXBuildFile section */
721FC4222B305CDF006E6A1B /* M3U8MediaPlaylist.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4072B305CCB006E6A1B /* M3U8MediaPlaylist.m */; };
721FC4232B305CE0006E6A1B /* NSURL+m3u8.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4082B305CCB006E6A1B /* NSURL+m3u8.m */; };
721FC4242B305CE0006E6A1B /* NSString+m3u8.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC40A2B305CCB006E6A1B /* NSString+m3u8.m */; };
721FC4252B305CE0006E6A1B /* M3U8MasterPlaylist.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC40C2B305CCB006E6A1B /* M3U8MasterPlaylist.m */; };
721FC4262B305CE0006E6A1B /* M3U8SegmentInfoList.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC40D2B305CCB006E6A1B /* M3U8SegmentInfoList.m */; };
721FC4272B305CE0006E6A1B /* M3U8ExtXMediaList.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4102B305CCB006E6A1B /* M3U8ExtXMediaList.m */; };
721FC4282B305CE0006E6A1B /* M3U8ExtXStreamInfList.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4122B305CCB006E6A1B /* M3U8ExtXStreamInfList.m */; };
721FC4292B305CE0006E6A1B /* NSArray+m3u8.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4132B305CCB006E6A1B /* NSArray+m3u8.m */; };
721FC42A2B305CE0006E6A1B /* M3U8ExtXMedia.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4142B305CCB006E6A1B /* M3U8ExtXMedia.m */; };
721FC42B2B305CE0006E6A1B /* M3U8ExtXByteRange.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4152B305CCB006E6A1B /* M3U8ExtXByteRange.m */; };
721FC42C2B305CE0006E6A1B /* M3U8PlaylistModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4182B305CCB006E6A1B /* M3U8PlaylistModel.m */; };
721FC42D2B305CE0006E6A1B /* M3U8ExtXStreamInf.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4192B305CCB006E6A1B /* M3U8ExtXStreamInf.m */; };
721FC42E2B305CE0006E6A1B /* M3U8LineReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC41B2B305CCB006E6A1B /* M3U8LineReader.m */; };
721FC42F2B305CE0006E6A1B /* M3U8ExtXKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC41C2B305CCB006E6A1B /* M3U8ExtXKey.m */; };
721FC4302B305CE0006E6A1B /* M3U8SegmentInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 721FC4202B305CCB006E6A1B /* M3U8SegmentInfo.m */; };
D1107C0A2110259000073188 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D1107C032110259000073188 /* UIView+FindUIViewController.m */; };
D1107C0B2110259000073188 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D1107C032110259000073188 /* UIView+FindUIViewController.m */; };
D1107C0C2110259000073188 /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = D1107C052110259000073188 /* RCTVideo.m */; };
Expand Down Expand Up @@ -41,6 +56,40 @@
/* Begin PBXFileReference section */
134814201AA4EA6300B7C361 /* libRCTVideo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTVideo.a; sourceTree = BUILT_PRODUCTS_DIR; };
641E28441F0EEC8500443AF6 /* libRCTVideo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTVideo.a; sourceTree = BUILT_PRODUCTS_DIR; };
721FC3FF2B305CCB006E6A1B /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
721FC4012B305CCB006E6A1B /* M3U8ExtXStreamInfList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8ExtXStreamInfList.h; sourceTree = "<group>"; };
721FC4022B305CCB006E6A1B /* M3U8ExtXByteRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8ExtXByteRange.h; sourceTree = "<group>"; };
721FC4032B305CCB006E6A1B /* M3U8ExtXMedia.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8ExtXMedia.h; sourceTree = "<group>"; };
721FC4042B305CCB006E6A1B /* NSArray+m3u8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSArray+m3u8.h"; sourceTree = "<group>"; };
721FC4052B305CCB006E6A1B /* M3U8ExtXStreamInf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8ExtXStreamInf.h; sourceTree = "<group>"; };
721FC4062B305CCB006E6A1B /* M3U8PlaylistModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8PlaylistModel.h; sourceTree = "<group>"; };
721FC4072B305CCB006E6A1B /* M3U8MediaPlaylist.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8MediaPlaylist.m; sourceTree = "<group>"; };
721FC4082B305CCB006E6A1B /* NSURL+m3u8.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSURL+m3u8.m"; sourceTree = "<group>"; };
721FC4092B305CCB006E6A1B /* M3U8Parser.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = M3U8Parser.modulemap; sourceTree = "<group>"; };
721FC40A2B305CCB006E6A1B /* NSString+m3u8.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+m3u8.m"; sourceTree = "<group>"; };
721FC40B2B305CCB006E6A1B /* M3U8SegmentInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8SegmentInfo.h; sourceTree = "<group>"; };
721FC40C2B305CCB006E6A1B /* M3U8MasterPlaylist.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8MasterPlaylist.m; sourceTree = "<group>"; };
721FC40D2B305CCB006E6A1B /* M3U8SegmentInfoList.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8SegmentInfoList.m; sourceTree = "<group>"; };
721FC40E2B305CCB006E6A1B /* M3U8LineReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8LineReader.h; sourceTree = "<group>"; };
721FC40F2B305CCB006E6A1B /* M3U8ExtXKey.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8ExtXKey.h; sourceTree = "<group>"; };
721FC4102B305CCB006E6A1B /* M3U8ExtXMediaList.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8ExtXMediaList.m; sourceTree = "<group>"; };
721FC4112B305CCB006E6A1B /* M3U8TagsAndAttributes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8TagsAndAttributes.h; sourceTree = "<group>"; };
721FC4122B305CCB006E6A1B /* M3U8ExtXStreamInfList.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8ExtXStreamInfList.m; sourceTree = "<group>"; };
721FC4132B305CCB006E6A1B /* NSArray+m3u8.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSArray+m3u8.m"; sourceTree = "<group>"; };
721FC4142B305CCB006E6A1B /* M3U8ExtXMedia.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8ExtXMedia.m; sourceTree = "<group>"; };
721FC4152B305CCB006E6A1B /* M3U8ExtXByteRange.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8ExtXByteRange.m; sourceTree = "<group>"; };
721FC4162B305CCB006E6A1B /* NSURL+m3u8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSURL+m3u8.h"; sourceTree = "<group>"; };
721FC4172B305CCB006E6A1B /* M3U8MediaPlaylist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8MediaPlaylist.h; sourceTree = "<group>"; };
721FC4182B305CCB006E6A1B /* M3U8PlaylistModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8PlaylistModel.m; sourceTree = "<group>"; };
721FC4192B305CCB006E6A1B /* M3U8ExtXStreamInf.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8ExtXStreamInf.m; sourceTree = "<group>"; };
721FC41A2B305CCB006E6A1B /* M3U8ExtXMediaList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8ExtXMediaList.h; sourceTree = "<group>"; };
721FC41B2B305CCB006E6A1B /* M3U8LineReader.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8LineReader.m; sourceTree = "<group>"; };
721FC41C2B305CCB006E6A1B /* M3U8ExtXKey.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8ExtXKey.m; sourceTree = "<group>"; };
721FC41D2B305CCB006E6A1B /* M3U8SegmentInfoList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8SegmentInfoList.h; sourceTree = "<group>"; };
721FC41E2B305CCB006E6A1B /* M3U8Parser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8Parser.h; sourceTree = "<group>"; };
721FC41F2B305CCB006E6A1B /* M3U8MasterPlaylist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M3U8MasterPlaylist.h; sourceTree = "<group>"; };
721FC4202B305CCB006E6A1B /* M3U8SegmentInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M3U8SegmentInfo.m; sourceTree = "<group>"; };
721FC4212B305CCB006E6A1B /* NSString+m3u8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+m3u8.h"; sourceTree = "<group>"; };
D1107C012110259000073188 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = Video/RCTVideoPlayerViewController.h; sourceTree = "<group>"; };
D1107C022110259000073188 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = "<group>"; };
D1107C032110259000073188 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "Video/UIView+FindUIViewController.m"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -88,6 +137,7 @@
58B511D21A9E6C8500147676 = {
isa = PBXGroup;
children = (
721FC3FE2B305CCB006E6A1B /* M3U8Kit */,
D1107C072110259000073188 /* RCTVideo.h */,
D1107C052110259000073188 /* RCTVideo.m */,
D1107C092110259000073188 /* RCTVideoManager.h */,
Expand All @@ -103,6 +153,56 @@
);
sourceTree = "<group>";
};
721FC3FE2B305CCB006E6A1B /* M3U8Kit */ = {
isa = PBXGroup;
children = (
721FC3FF2B305CCB006E6A1B /* LICENSE */,
721FC4002B305CCB006E6A1B /* Source */,
);
name = M3U8Kit;
path = Video/M3U8Kit;
sourceTree = "<group>";
};
721FC4002B305CCB006E6A1B /* Source */ = {
isa = PBXGroup;
children = (
721FC4012B305CCB006E6A1B /* M3U8ExtXStreamInfList.h */,
721FC4022B305CCB006E6A1B /* M3U8ExtXByteRange.h */,
721FC4032B305CCB006E6A1B /* M3U8ExtXMedia.h */,
721FC4042B305CCB006E6A1B /* NSArray+m3u8.h */,
721FC4052B305CCB006E6A1B /* M3U8ExtXStreamInf.h */,
721FC4062B305CCB006E6A1B /* M3U8PlaylistModel.h */,
721FC4072B305CCB006E6A1B /* M3U8MediaPlaylist.m */,
721FC4082B305CCB006E6A1B /* NSURL+m3u8.m */,
721FC4092B305CCB006E6A1B /* M3U8Parser.modulemap */,
721FC40A2B305CCB006E6A1B /* NSString+m3u8.m */,
721FC40B2B305CCB006E6A1B /* M3U8SegmentInfo.h */,
721FC40C2B305CCB006E6A1B /* M3U8MasterPlaylist.m */,
721FC40D2B305CCB006E6A1B /* M3U8SegmentInfoList.m */,
721FC40E2B305CCB006E6A1B /* M3U8LineReader.h */,
721FC40F2B305CCB006E6A1B /* M3U8ExtXKey.h */,
721FC4102B305CCB006E6A1B /* M3U8ExtXMediaList.m */,
721FC4112B305CCB006E6A1B /* M3U8TagsAndAttributes.h */,
721FC4122B305CCB006E6A1B /* M3U8ExtXStreamInfList.m */,
721FC4132B305CCB006E6A1B /* NSArray+m3u8.m */,
721FC4142B305CCB006E6A1B /* M3U8ExtXMedia.m */,
721FC4152B305CCB006E6A1B /* M3U8ExtXByteRange.m */,
721FC4162B305CCB006E6A1B /* NSURL+m3u8.h */,
721FC4172B305CCB006E6A1B /* M3U8MediaPlaylist.h */,
721FC4182B305CCB006E6A1B /* M3U8PlaylistModel.m */,
721FC4192B305CCB006E6A1B /* M3U8ExtXStreamInf.m */,
721FC41A2B305CCB006E6A1B /* M3U8ExtXMediaList.h */,
721FC41B2B305CCB006E6A1B /* M3U8LineReader.m */,
721FC41C2B305CCB006E6A1B /* M3U8ExtXKey.m */,
721FC41D2B305CCB006E6A1B /* M3U8SegmentInfoList.h */,
721FC41E2B305CCB006E6A1B /* M3U8Parser.h */,
721FC41F2B305CCB006E6A1B /* M3U8MasterPlaylist.h */,
721FC4202B305CCB006E6A1B /* M3U8SegmentInfo.m */,
721FC4212B305CCB006E6A1B /* NSString+m3u8.h */,
);
path = Source;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -163,6 +263,7 @@
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = 58B511D21A9E6C8500147676;
Expand All @@ -181,6 +282,21 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
721FC4222B305CDF006E6A1B /* M3U8MediaPlaylist.m in Sources */,
721FC4232B305CE0006E6A1B /* NSURL+m3u8.m in Sources */,
721FC4242B305CE0006E6A1B /* NSString+m3u8.m in Sources */,
721FC4252B305CE0006E6A1B /* M3U8MasterPlaylist.m in Sources */,
721FC4262B305CE0006E6A1B /* M3U8SegmentInfoList.m in Sources */,
721FC4272B305CE0006E6A1B /* M3U8ExtXMediaList.m in Sources */,
721FC4282B305CE0006E6A1B /* M3U8ExtXStreamInfList.m in Sources */,
721FC4292B305CE0006E6A1B /* NSArray+m3u8.m in Sources */,
721FC42A2B305CE0006E6A1B /* M3U8ExtXMedia.m in Sources */,
721FC42B2B305CE0006E6A1B /* M3U8ExtXByteRange.m in Sources */,
721FC42C2B305CE0006E6A1B /* M3U8PlaylistModel.m in Sources */,
721FC42D2B305CE0006E6A1B /* M3U8ExtXStreamInf.m in Sources */,
721FC42E2B305CE0006E6A1B /* M3U8LineReader.m in Sources */,
721FC42F2B305CE0006E6A1B /* M3U8ExtXKey.m in Sources */,
721FC4302B305CE0006E6A1B /* M3U8SegmentInfo.m in Sources */,
D1107C0A2110259000073188 /* UIView+FindUIViewController.m in Sources */,
D1107C102110259000073188 /* RCTVideoPlayerViewController.m in Sources */,
D1107C0E2110259000073188 /* RCTVideoManager.m in Sources */,
Expand Down
22 changes: 22 additions & 0 deletions ios/Video/M3U8Kit/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) 2015 Sun Jin <jeansunvf@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

23 changes: 23 additions & 0 deletions ios/Video/M3U8Kit/Source/M3U8ExtXByteRange.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//
// M3U8ExtXByteRange.h
// M3U8Kit
//
// Created by Frank on 2020/10/1.
// Copyright © 2020 M3U8Kit. All rights reserved.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface M3U8ExtXByteRange : NSObject

- (instancetype)initWithAtString:(NSString *)atString;
- (instancetype)initWithLength:(NSInteger)length offset:(NSInteger)offset;

@property (nonatomic, assign, readonly) NSInteger length;
@property (nonatomic, assign, readonly) NSInteger offset;

@end

NS_ASSUME_NONNULL_END
33 changes: 33 additions & 0 deletions ios/Video/M3U8Kit/Source/M3U8ExtXByteRange.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
//
// M3U8ExtXByteRange.m
// M3U8Kit
//
// Created by Frank on 2020/10/1.
// Copyright © 2020 M3U8Kit. All rights reserved.
//

#import "M3U8ExtXByteRange.h"

@implementation M3U8ExtXByteRange

- (instancetype)initWithAtString:(NSString *)atString {
NSArray<NSString *> *params = [atString componentsSeparatedByString:@"@"];
NSInteger length = params.firstObject.integerValue;
NSInteger offset = 0;
if (params.count > 1) {
offset = MAX(0, params[1].integerValue);
}

return [self initWithLength:length offset:offset];
}

- (instancetype)initWithLength:(NSInteger)length offset:(NSInteger)offset {
self = [super init];
if (self) {
_length = length;
_offset = offset;
}
return self;
}

@end
19 changes: 19 additions & 0 deletions ios/Video/M3U8Kit/Source/M3U8ExtXKey.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// M3U8ExtXKey.h
// M3U8Kit
//
// Created by Pierre Perrin on 01/02/2019.
// Copyright © 2019 M3U8Kit. All rights reserved.
//

#import <Foundation/Foundation.h>
@interface M3U8ExtXKey : NSObject

- (instancetype)initWithDictionary:(NSDictionary *)dictionary;

- (NSString *)method;
- (NSString *)url;
- (NSString *)keyFormat;
- (NSString *)iV;

@end
45 changes: 45 additions & 0 deletions ios/Video/M3U8Kit/Source/M3U8ExtXKey.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
//
// M3U8ExtXKey.m
// M3U8Kit
//
// Created by Pierre Perrin on 01/02/2019.
// Copyright © 2019 M3U8Kit. All rights reserved.
//

#import "M3U8ExtXKey.h"
#import "M3U8TagsAndAttributes.h"

@interface M3U8ExtXKey()
@property (nonatomic, strong) NSDictionary *dictionary;
@end

@implementation M3U8ExtXKey

- (instancetype)initWithDictionary:(NSDictionary *)dictionary {
if (self = [super init]) {
self.dictionary = dictionary;
}
return self;
}

- (NSString *)method {
return self.dictionary[M3U8_EXT_X_KEY_METHOD];
}

- (NSString *)url {
return self.dictionary[M3U8_EXT_X_KEY_URI];
}

- (NSString *)keyFormat {
return self.dictionary[M3U8_EXT_X_KEY_KEYFORMAT];
}

- (NSString *)iV {
return self.dictionary[M3U8_EXT_X_KEY_IV];
}

- (NSString *)description {
return self.dictionary.description;
}

@end
Loading

0 comments on commit a6823bb

Please sign in to comment.