]> git.sesse.net Git - nageru/blob - ycbcr_interpretation.h
Support audio-only FFmpeg inputs. Somewhat wonky, though.
[nageru] / ycbcr_interpretation.h
1 #ifndef _YCBCR_INTERPRETATION_H
2 #define _YCBCR_INTERPRETATION_H 1
3
4 #include <movit/image_format.h>
5
6 struct YCbCrInterpretation {
7         bool ycbcr_coefficients_auto = true;
8         movit::YCbCrLumaCoefficients ycbcr_coefficients = movit::YCBCR_REC_709;
9         bool full_range = false;
10 };
11
12 #endif  // !defined(_YCBCR_INTERPRETATION_H)