mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
mfvideoencoder: Fix typo in template caps
Fixes: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3058 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5556>
This commit is contained in:
parent
229b727017
commit
738e274fab
1 changed files with 2 additions and 2 deletions
|
@ -1703,9 +1703,9 @@ gst_mf_video_encoder_enum_internal (GstMFTransform * transform, GUID & subtype,
|
|||
gst_value_set_int_range_step (&res_val, 64, 8192, 2);
|
||||
|
||||
gst_caps_set_value (sink_caps, "width", &res_val);
|
||||
gst_caps_set_value (sink_caps, "heigh", &res_val);
|
||||
gst_caps_set_value (sink_caps, "height", &res_val);
|
||||
gst_caps_set_value (src_caps, "width", &res_val);
|
||||
gst_caps_set_value (src_caps, "heigh", &res_val);
|
||||
gst_caps_set_value (src_caps, "height", &res_val);
|
||||
|
||||
g_value_unset (&res_val);
|
||||
|
||||
|
|
Loading…
Reference in a new issue