mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 20:25:25 +00:00
monoscope: Only fixate pixel-aspect-ratio if the field exists
This commit is contained in:
parent
7d7c90bf5c
commit
c84f4e0491
1 changed files with 3 additions and 2 deletions
|
@ -255,8 +255,9 @@ gst_monoscope_src_negotiate (GstMonoscope * monoscope)
|
||||||
gst_structure_fixate_field_nearest_int (structure, "width", 320);
|
gst_structure_fixate_field_nearest_int (structure, "width", 320);
|
||||||
gst_structure_fixate_field_nearest_int (structure, "height", 240);
|
gst_structure_fixate_field_nearest_int (structure, "height", 240);
|
||||||
gst_structure_fixate_field_nearest_fraction (structure, "framerate", 25, 1);
|
gst_structure_fixate_field_nearest_fraction (structure, "framerate", 25, 1);
|
||||||
gst_structure_fixate_field_nearest_fraction (structure, "pixel-aspect-ratio",
|
if (gst_structure_has_field (structure, "pixel-aspect-ratio"))
|
||||||
1, 1);
|
gst_structure_fixate_field_nearest_fraction (structure,
|
||||||
|
"pixel-aspect-ratio", 1, 1);
|
||||||
target = gst_caps_fixate (target);
|
target = gst_caps_fixate (target);
|
||||||
|
|
||||||
gst_monoscope_src_setcaps (monoscope, target);
|
gst_monoscope_src_setcaps (monoscope, target);
|
||||||
|
|
Loading…
Reference in a new issue