mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
value: fix fraction range lcopy function
This function seems to be broken for 3.5 years. Luckily nobody ever tried to make a fraction range object property...
This commit is contained in:
parent
65f9b38138
commit
19f98d6418
1 changed files with 1 additions and 1 deletions
|
@ -1065,7 +1065,7 @@ gst_value_lcopy_fraction_range (const GValue * value, guint n_collect_values,
|
|||
|
||||
dest_values[0][0] = gst_value_get_fraction_numerator (&vals[0]);
|
||||
dest_values[1][0] = gst_value_get_fraction_denominator (&vals[0]);
|
||||
dest_values[2][0] = gst_value_get_fraction_denominator (&vals[1]);
|
||||
dest_values[2][0] = gst_value_get_fraction_numerator (&vals[1]);
|
||||
dest_values[3][0] = gst_value_get_fraction_denominator (&vals[1]);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue