diff options
Diffstat (limited to 'gst/dvdspu/gstdvdspu.c')
-rw-r--r-- | gst/dvdspu/gstdvdspu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/dvdspu/gstdvdspu.c b/gst/dvdspu/gstdvdspu.c index c8c016839..4c8aee6b0 100644 --- a/gst/dvdspu/gstdvdspu.c +++ b/gst/dvdspu/gstdvdspu.c @@ -383,7 +383,7 @@ gst_dvd_spu_video_event (GstPad * pad, GstEvent * event) { GstCaps *caps; - gst_event_parse_caps (event, &caps); + gst_event_caps_parse (event, &caps); res = gst_dvd_spu_video_set_caps (pad, caps); gst_event_unref (event); break; @@ -431,7 +431,7 @@ gst_dvd_spu_video_event (GstPad * pad, GstEvent * event) { GstSegment seg; - gst_event_copy_segment (event, &seg); + gst_event_segment_copy (event, &seg); if (seg.format != GST_FORMAT_TIME) return FALSE; @@ -1022,7 +1022,7 @@ gst_dvd_spu_subpic_event (GstPad * pad, GstEvent * event) { GstCaps *caps; - gst_event_parse_caps (event, &caps); + gst_event_caps_parse (event, &caps); res = gst_dvd_spu_subpic_set_caps (pad, caps); gst_event_unref (event); break; @@ -1087,7 +1087,7 @@ gst_dvd_spu_subpic_event (GstPad * pad, GstEvent * event) { GstSegment seg; - gst_event_copy_segment (event, &seg); + gst_event_segment_copy (event, &seg); /* Only print updates if they have an end time (don't print start_time * updates */ |