Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r--libavutil/frame.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h
index 958cd26975..b2159d3cc3 100644
--- a/libavutil/frame.h
+++ b/libavutil/frame.h
@@ -33,6 +33,7 @@
#include "dict.h"
#include "rational.h"
#include "samplefmt.h"
+#include "pixfmt.h"
#include "version.h"
@@ -416,6 +417,18 @@ typedef struct AVFrame {
* Frame flags, a combination of @ref lavu_frame_flags
*/
int flags;
+
+#if FF_API_AVFRAME_COLORSPACE
+ enum AVColorRange color_range;
+
+ enum AVColorPrimaries color_primaries;
+
+ enum AVColorTransferCharacteristic color_trc;
+
+ enum AVColorSpace colorspace;
+
+ enum AVChromaLocation chroma_location;
+#endif
} AVFrame;
/**