mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
tracers/stats: add missing parameters to callback functions
This commit is contained in:
parent
281f792042
commit
fb249dadcb
1 changed files with 4 additions and 2 deletions
|
@ -389,7 +389,8 @@ do_push_buffer_pre (GstStatsTracer * self, guint64 ts, GstPad * this_pad,
|
|||
}
|
||||
|
||||
static void
|
||||
do_push_buffer_post (GstStatsTracer * self, guint64 ts, GstPad * pad)
|
||||
do_push_buffer_post (GstStatsTracer * self, guint64 ts, GstPad * pad,
|
||||
GstFlowReturn res)
|
||||
{
|
||||
GstPadStats *stats = get_pad_stats (self, pad);
|
||||
|
||||
|
@ -431,7 +432,8 @@ do_push_buffer_list_pre (GstStatsTracer * self, guint64 ts, GstPad * this_pad,
|
|||
}
|
||||
|
||||
static void
|
||||
do_push_buffer_list_post (GstStatsTracer * self, guint64 ts, GstPad * pad)
|
||||
do_push_buffer_list_post (GstStatsTracer * self, guint64 ts, GstPad * pad,
|
||||
GstFlowReturn res)
|
||||
{
|
||||
GstPadStats *stats = get_pad_stats (self, pad);
|
||||
|
||||
|
|
Loading…
Reference in a new issue