mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 19:25:18 +00:00
Added support for color description information
The following parameters are supported: - `color_range` - `color_primaries` - `transfer_characteristics` - `matrix_coefficients` Added writing of color description into a bit stream Updated the encoder config structure (API) to support color description parameters Updated the encoding app to support color description in config files Added unit tests for color description settings Added default color description values into the gst plugin Updated documentation
This commit is contained in:
parent
bf46cfe44c
commit
820842c228
1 changed files with 6 additions and 0 deletions
|
@ -719,6 +719,12 @@ set_default_svt_configuration (EbSvtAv1EncConfiguration * svt_config)
|
|||
svt_config->enable_qp_scaling_flag = 0;
|
||||
svt_config->use_cpu_flags = CPU_FLAGS_ALL;
|
||||
svt_config->ten_bit_format = FALSE;
|
||||
|
||||
// color description
|
||||
svt_config->color_range = 0;
|
||||
svt_config->color_primaries = 2;
|
||||
svt_config->transfer_characteristics = 2;
|
||||
svt_config->matrix_coefficients = 2;
|
||||
}
|
||||
|
||||
GstFlowReturn
|
||||
|
|
Loading…
Reference in a new issue