diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-06-17 19:52:00 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-06-17 19:52:00 +0000 |
commit | fc19ab1ded25b25481b7562f5033b563da3e1f4f (patch) | |
tree | 9ce8fdfd780a917b095eeaba01af41a0f876d6c9 /gst/dvdspu | |
parent | fe76d3be8dceaa6170a3c479987496941f1ed2a2 (diff) | |
download | gst-plugins-bad-fc19ab1ded25b25481b7562f5033b563da3e1f4f.tar.gz gst-plugins-bad-fc19ab1ded25b25481b7562f5033b563da3e1f4f.tar.bz2 gst-plugins-bad-fc19ab1ded25b25481b7562f5033b563da3e1f4f.zip |
ext/resindvd/resindvdbin.c: Parse the URI argument into the device name so dvd:///path/to/image works.
Original commit message from CVS:
* ext/resindvd/resindvdbin.c:
Parse the URI argument into the device name so dvd:///path/to/image
works.
* ext/resindvd/resindvdsrc.c:
Implement a trivial duration query reporting the current PGC length.
* gst/dvdspu/gstdvdspu.c:
Rename typo in the function name.
Diffstat (limited to 'gst/dvdspu')
-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 680d9101..a2273d96 100644 --- a/gst/dvdspu/gstdvdspu.c +++ b/gst/dvdspu/gstdvdspu.c @@ -102,7 +102,7 @@ static void gst_dvd_spu_clear (GstDVDSpu * dvdspu); static void gst_dvd_spu_flush_spu_info (GstDVDSpu * dvdspu); static void gst_dvd_spu_advance_spu (GstDVDSpu * dvdspu, GstClockTime new_ts); static GstFlowReturn -dvspu_handle_vid_buffer (GstDVDSpu * dvdspu, GstBuffer * buf); +dvdspu_handle_vid_buffer (GstDVDSpu * dvdspu, GstBuffer * buf); static void gst_dvd_spu_base_init (gpointer gclass) @@ -470,7 +470,7 @@ gst_dvd_spu_video_event (GstPad * pad, GstEvent * event) while (dvdspu->video_seg.last_stop < start && !(state->flags & SPU_STATE_STILL_FRAME)) { DVD_SPU_UNLOCK (dvdspu); - if (dvspu_handle_vid_buffer (dvdspu, NULL) != GST_FLOW_OK) { + if (dvdspu_handle_vid_buffer (dvdspu, NULL) != GST_FLOW_OK) { DVD_SPU_LOCK (dvdspu); break; } @@ -525,7 +525,7 @@ gst_dvd_spu_video_chain (GstPad * pad, GstBuffer * buf) GST_LOG_OBJECT (dvdspu, "video buffer %p with TS %" GST_TIME_FORMAT, buf, GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf))); - ret = dvspu_handle_vid_buffer (dvdspu, buf); + ret = dvdspu_handle_vid_buffer (dvdspu, buf); gst_object_unref (dvdspu); @@ -533,7 +533,7 @@ gst_dvd_spu_video_chain (GstPad * pad, GstBuffer * buf) } static GstFlowReturn -dvspu_handle_vid_buffer (GstDVDSpu * dvdspu, GstBuffer * buf) +dvdspu_handle_vid_buffer (GstDVDSpu * dvdspu, GstBuffer * buf) { GstClockTime new_ts; GstFlowReturn ret; |