FFmpegKit iOS / macOS / tvOS API  4.4
Level.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Taner Sener
3  *
4  * This file is part of FFmpegKit.
5  *
6  * FFmpegKit is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * FFmpegKit is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General License
17  * along with FFmpegKit. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef FFMPEG_KIT_LEVEL_H
21 #define FFMPEG_KIT_LEVEL_H
22 
26 typedef NS_ENUM(NSUInteger, Level) {
27 
32  LevelAVLogStdErr = -16,
33 
37  LevelAVLogQuiet = -8,
38 
42  LevelAVLogPanic = 0,
43 
49  LevelAVLogFatal = 8,
50 
55  LevelAVLogError = 16,
56 
61  LevelAVLogWarning = 24,
62 
66  LevelAVLogInfo = 32,
67 
71  LevelAVLogVerbose = 40,
72 
76  LevelAVLogDebug = 48,
77 
81  LevelAVLogTrace = 56
82 
83 };
84 
85 #endif // FFMPEG_KIT_LEVEL_H
typedef NS_ENUM(NSUInteger, Level)
Definition: Level.h:26