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/raw1394 | |
parent | f2d5cae8daade402e9d74a829d2b87283167aaa7 (diff) |
Trivial fixes for GstBuffer->GstData migration
Original commit message from CVS:
Trivial fixes for GstBuffer->GstData migration
Diffstat (limited to 'ext/raw1394')
-rw-r--r-- | ext/raw1394/gstdv1394src.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c index 07a5c82a..0933e305 100644 --- a/ext/raw1394/gstdv1394src.c +++ b/ext/raw1394/gstdv1394src.c @@ -323,7 +323,7 @@ gst_dv1394src_get (GstPad *pad) while (dv1394src->buf == NULL) raw1394_loop_iterate(dv1394src->handle); - return dv1394src->buf; + return GST_DATA(dv1394src->buf); } static GstElementStateReturn |