diff options
author | David Schleef <ds@schleef.org> | 2003-10-09 02:23:01 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-10-09 02:23:01 +0000 |
commit | a2fcfe72d12a4715bd6d557fb800462704baf0e9 (patch) | |
tree | 7dc37901ca6ee13d88b92eba4750366e5e1a511f /ext/dv | |
parent | f2d5cae8daade402e9d74a829d2b87283167aaa7 (diff) |
Trivial fixes for GstBuffer->GstData migration
Original commit message from CVS:
Trivial fixes for GstBuffer->GstData migration
Diffstat (limited to 'ext/dv')
-rw-r--r-- | ext/dv/gstdvdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 518e6495..ecaa9736 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -697,9 +697,9 @@ gst_dvdec_push (GstDVDec *dvdec, GstBuffer *outbuf, GstPad *pad, GstClockTime ts if ((dvdec->end_position != -1) && (dvdec->next_ts >= dvdec->end_position)) { if (dvdec->loop) - gst_pad_push (pad, GST_DATA(gst_event_new (GST_EVENT_SEGMENT_DONE)))); + gst_pad_push (pad, GST_DATA(gst_event_new (GST_EVENT_SEGMENT_DONE))); else - gst_pad_push (pad, GST_DATA(gst_event_new (GST_EVENT_EOS)))); + gst_pad_push (pad, GST_DATA(gst_event_new (GST_EVENT_EOS))); } } |