mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
audioresample: changed num_gap_samples, num_nongap_samples from guint32 to guint64 so that gaps of greater than or equal to 2^32 samples do not cause integer overflow
This commit is contained in:
parent
d6d2aa44ab
commit
25a154be5f
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ struct _GstAudioResample {
|
|||
guint64 samples_in;
|
||||
guint64 samples_out;
|
||||
|
||||
guint num_gap_samples;
|
||||
guint num_nongap_samples;
|
||||
guint64 num_gap_samples;
|
||||
guint64 num_nongap_samples;
|
||||
|
||||
gint channels;
|
||||
gint inrate;
|
||||
|
|
Loading…
Reference in a new issue