Use new still-frame API from gst-plugins-base

This commit is contained in:
Jan Schmidt 2009-11-18 02:15:15 +00:00
parent 0883913fc2
commit baa79ffecb

View file

@ -1609,17 +1609,11 @@ gst_deinterlace_sink_event (GstPad * pad, GstEvent * event)
break;
}
case GST_EVENT_CUSTOM_DOWNSTREAM:{
const GstStructure *s = gst_event_get_structure (event);
if (gst_structure_has_name (s, "application/x-gst-dvd")) {
const gchar *event_type;
gboolean still_state;
GST_DEBUG_OBJECT (self, "Received DVD event: %" GST_PTR_FORMAT, s);
event_type = gst_structure_get_string (s, "event");
if (event_type && !strcmp (event_type, "dvd-still") &&
gst_structure_get_boolean (s, "still-state", &still_state)) {
if (gst_video_event_parse_still_frame (event, &still_state)) {
GST_DEBUG_OBJECT (self, "Received still frame event, state %d",
still_state);
if (still_state) {
GstFlowReturn ret;
@ -1628,8 +1622,7 @@ gst_deinterlace_sink_event (GstPad * pad, GstEvent * event)
self->still_frame_mode = TRUE;
if (self->last_buffer) {
ret =
gst_pad_push (self->srcpad,
gst_buffer_ref (self->last_buffer));
gst_pad_push (self->srcpad, gst_buffer_ref (self->last_buffer));
GST_DEBUG_OBJECT (self, "Pushed still frame, result: %s",
gst_flow_get_name (ret));
} else {
@ -1641,7 +1634,6 @@ gst_deinterlace_sink_event (GstPad * pad, GstEvent * event)
}
}
}
}
/* fall through */
case GST_EVENT_EOS:
gst_deinterlace_reset_history (self);