mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-17 18:01:14 +00:00
git-subtree-dir: submodules/ffmpeg git-subtree-mainline:8f5a4f7dc1git-subtree-split:53fc3dcb60
17 lines
246 B
Objective-C
17 lines
246 B
Objective-C
#import "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
|