mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 05:28:48 +00:00
Fix previous commit so that things still work with debug logs enabled
This commit is contained in:
parent
6eb167a176
commit
98292e9efd
2 changed files with 3 additions and 2 deletions
|
@ -1019,5 +1019,6 @@ gst_mythtv_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
|
||||||
void
|
void
|
||||||
size_header_handler (void *src, const char *value)
|
size_header_handler (void *src, const char *value)
|
||||||
{
|
{
|
||||||
GST_DEBUG_OBJECT (src, "content size = %lld bytes", src->content_size);
|
GST_DEBUG_OBJECT (src, "content size = %" G_GUINT64_FORMAT " bytes",
|
||||||
|
GST_MYTHTV_SRC (src)->content_size);
|
||||||
}
|
}
|
||||||
|
|
|
@ -523,7 +523,7 @@ mpegtsmux_choose_best_stream (MpegTsMux * mux)
|
||||||
return best;
|
return best;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define COLLECT_DATA_PAD(collect_data) ((GstCollectData *)(collect_data))->pad)
|
#define COLLECT_DATA_PAD(collect_data) (((GstCollectData *)(collect_data))->pad)
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
mpegtsmux_collected (GstCollectPads * pads, MpegTsMux * mux)
|
mpegtsmux_collected (GstCollectPads * pads, MpegTsMux * mux)
|
||||||
|
|
Loading…
Reference in a new issue