Skip to content

Commit

Permalink
implement requiresMainQueueSetup method on react-native, fixes #199
Browse files Browse the repository at this point in the history
  • Loading branch information
tanersener committed Oct 23, 2021
1 parent b99e712 commit 7120a5e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions react-native/ios/FFmpegKitReactNativeModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ - (instancetype)init {
return self;
}



- (NSArray<NSString*>*)supportedEvents {
NSMutableArray *array = [NSMutableArray array];

Expand Down Expand Up @@ -628,6 +630,10 @@ - (void)disableStatistics {
statisticsEnabled = false;
}

+ (BOOL)requiresMainQueueSetup {
return NO;
}

+ (NSDictionary*)toSessionDictionary:(id<Session>) session {
if (session != nil) {
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
Expand Down

0 comments on commit 7120a5e

Please sign in to comment.