mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
videoaggregator: Also copy over the chroma siting and colorimetry when deciding on a conversion
This commit is contained in:
parent
f2af838837
commit
03a5bc82db
1 changed files with 2 additions and 0 deletions
|
@ -449,6 +449,8 @@ gst_videoaggregator_update_converters (GstVideoAggregator * vagg)
|
|||
g_strcmp0 (chroma, best_chroma)) {
|
||||
GstVideoInfo tmp_info = pad->info;
|
||||
tmp_info.finfo = best_info.finfo;
|
||||
tmp_info.chroma_site = best_info.chroma_site;
|
||||
tmp_info.colorimetry = best_info.colorimetry;
|
||||
|
||||
GST_DEBUG_OBJECT (pad, "This pad will be converted from %d to %d",
|
||||
GST_VIDEO_INFO_FORMAT (&pad->info),
|
||||
|
|
Loading…
Reference in a new issue