mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
rtpstats: fix assertion 'denom > 0' failed
gst_util_uint64_scale_int takes a gint as denom parameter whereas ctx->clock_rate is a guint32. It happens when gst_rtp_packet_rate_ctx_reset set clock_rate to -1. So just define clock_rate as gint like it is done in rtpsource.h https://bugzilla.gnome.org/show_bug.cgi?id=784250
This commit is contained in:
parent
52a5658030
commit
afbabaefbe
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ typedef struct {
|
|||
*/
|
||||
typedef struct {
|
||||
gboolean probed;
|
||||
guint32 clock_rate;
|
||||
gint clock_rate;
|
||||
guint16 last_seqnum;
|
||||
guint64 last_ts;
|
||||
guint32 avg_packet_rate;
|
||||
|
|
Loading…
Reference in a new issue