mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
gst/debug/progressreport.c: Don't try to post NULL message (in case we can't query upstream position or duration).
Original commit message from CVS: * gst/debug/progressreport.c: (gst_progress_report_report): Don't try to post NULL message (in case we can't query upstream position or duration).
This commit is contained in:
parent
4a1ceda8df
commit
106db1b2eb
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-04-20 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/debug/progressreport.c: (gst_progress_report_report):
|
||||
Don't try to post NULL message (in case we can't query upstream
|
||||
position or duration).
|
||||
|
||||
2007-04-18 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit dae6fa1f592c9231820c2135b8b1b3c2b0875ef6
|
||||
Subproject commit 765d03a88492fb4ac81d70457f671f3a109e93de
|
|
@ -358,7 +358,9 @@ gst_progress_report_report (GstProgressReport * filter, GTimeVal cur_time)
|
|||
filter->pending_msg = NULL;
|
||||
GST_OBJECT_UNLOCK (filter);
|
||||
|
||||
gst_element_post_message (GST_ELEMENT_CAST (filter), msg);
|
||||
if (msg) {
|
||||
gst_element_post_message (GST_ELEMENT_CAST (filter), msg);
|
||||
}
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue