videoscale: improve handling of navigation events

Only make the navigation event writable when we need to change it.
This commit is contained in:
Wim Taymans 2012-09-11 10:56:43 +02:00
parent d186109e71
commit 280e504ae5

View file

@ -1412,17 +1412,20 @@ gst_video_scale_src_event (GstBaseTransform * trans, GstEvent * event)
switch (GST_EVENT_TYPE (event)) { switch (GST_EVENT_TYPE (event)) {
case GST_EVENT_NAVIGATION: case GST_EVENT_NAVIGATION:
event = if (filter->in_info.width != filter->out_info.width ||
GST_EVENT (gst_mini_object_make_writable (GST_MINI_OBJECT (event))); filter->in_info.height != filter->out_info.height) {
event =
GST_EVENT (gst_mini_object_make_writable (GST_MINI_OBJECT (event)));
structure = (GstStructure *) gst_event_get_structure (event); structure = (GstStructure *) gst_event_get_structure (event);
if (gst_structure_get_double (structure, "pointer_x", &a)) { if (gst_structure_get_double (structure, "pointer_x", &a)) {
gst_structure_set (structure, "pointer_x", G_TYPE_DOUBLE, gst_structure_set (structure, "pointer_x", G_TYPE_DOUBLE,
a * filter->in_info.width / filter->out_info.width, NULL); a * filter->in_info.width / filter->out_info.width, NULL);
} }
if (gst_structure_get_double (structure, "pointer_y", &a)) { if (gst_structure_get_double (structure, "pointer_y", &a)) {
gst_structure_set (structure, "pointer_y", G_TYPE_DOUBLE, gst_structure_set (structure, "pointer_y", G_TYPE_DOUBLE,
a * filter->in_info.height / filter->out_info.height, NULL); a * filter->in_info.height / filter->out_info.height, NULL);
}
} }
break; break;
default: default: