mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
15 lines
237 B
Objective-C
15 lines
237 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
|
|
}
|
|
|
|
@end
|