summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-07-10 15:54:04 +0200
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-07-10 15:54:04 +0200
commit6cb5b239545f0c9ac2403badc74fe5ccd362024b (patch)
tree0a9479d90c5d2985c7e17250084d6f8d54065d77
parentba0448111d18b7fda9630a156e3c56ea6fa1c1cd (diff)
dvbsuboverlay: fixup end-of-display-set forcing
-rw-r--r--gst/dvbsuboverlay/gstdvbsuboverlay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/dvbsuboverlay/gstdvbsuboverlay.c b/gst/dvbsuboverlay/gstdvbsuboverlay.c
index e22a6a1d7..bfacb14f0 100644
--- a/gst/dvbsuboverlay/gstdvbsuboverlay.c
+++ b/gst/dvbsuboverlay/gstdvbsuboverlay.c
@@ -732,8 +732,8 @@ gst_dvbsub_overlay_process_text (GstDVBSubOverlay * overlay, GstBuffer * buffer,
" which is a time of %" GST_TIME_FORMAT, pts, GST_TIME_ARGS (pts));
GST_DEBUG_OBJECT (overlay, "Feeding %u bytes to libdvbsub", size);
g_mutex_lock (overlay->dvbsub_mutex);
- dvb_sub_feed_with_pts (overlay->dvb_sub, pts, data, size);
overlay->pending_sub = TRUE;
+ dvb_sub_feed_with_pts (overlay->dvb_sub, pts, data, size);
g_mutex_unlock (overlay->dvbsub_mutex);
gst_buffer_unref (buffer);