2020-02-22 15:38:54 +04:00

17 lines
260 B
Objective-C

#import <FFMpegBinding/FFMpegGlobals.h>
#import "libavformat/avformat.h"
@implementation FFMpegGlobals
+ (void)initializeGlobals {
#if DEBUG
av_log_set_level(AV_LOG_ERROR);
#else
av_log_set_level(AV_LOG_QUIET);
#endif
av_register_all();
}
@end