mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
glfilter: remove logically dead code
Soon after setting two variables to 1, the code checks if their values are different from each other. This would never be true. Removing this. CID 1226443
This commit is contained in:
parent
3c3ca1c842
commit
9d9d07168f
1 changed files with 1 additions and 6 deletions
|
@ -451,18 +451,13 @@ gst_gl_filter_fixate_caps (GstBaseTransform * bt,
|
|||
/* if both width and height are already fixed, we can't do anything
|
||||
* about it anymore */
|
||||
if (w && h) {
|
||||
gint n = 1, d = 1;
|
||||
|
||||
GST_DEBUG_OBJECT (bt, "dimensions already set to %dx%d, not fixating",
|
||||
w, h);
|
||||
if (!gst_value_is_fixed (to_par)) {
|
||||
GST_DEBUG_OBJECT (bt, "fixating to_par to %dx%d", n, d);
|
||||
GST_DEBUG_OBJECT (bt, "fixating to_par to %dx%d", 1, 1);
|
||||
if (gst_structure_has_field (outs, "pixel-aspect-ratio"))
|
||||
gst_structure_fixate_field_nearest_fraction (outs,
|
||||
"pixel-aspect-ratio", 1, 1);
|
||||
else if (n != d)
|
||||
gst_structure_set (outs, "pixel-aspect-ratio", GST_TYPE_FRACTION,
|
||||
1, 1, NULL);
|
||||
}
|
||||
goto done;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue