mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
sbc: Fix signed/unsigned comparison issue within GStreamer plugin
This commit is contained in:
parent
3f994a84bb
commit
db16c0332c
2 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ struct _GstSbcEnc {
|
||||||
gint subbands;
|
gint subbands;
|
||||||
gint bitpool;
|
gint bitpool;
|
||||||
|
|
||||||
gint codesize;
|
guint codesize;
|
||||||
gint frame_length;
|
gint frame_length;
|
||||||
gint frame_duration;
|
gint frame_duration;
|
||||||
|
|
||||||
|
|
|
@ -98,7 +98,7 @@ gst_sbc_get_allocation_from_list (const GValue * value)
|
||||||
const gchar *
|
const gchar *
|
||||||
gst_sbc_get_mode_from_list (const GValue * list, gint channels)
|
gst_sbc_get_mode_from_list (const GValue * list, gint channels)
|
||||||
{
|
{
|
||||||
int i;
|
unsigned int i;
|
||||||
const GValue *value;
|
const GValue *value;
|
||||||
const gchar *aux;
|
const gchar *aux;
|
||||||
gboolean joint, stereo, dual, mono;
|
gboolean joint, stereo, dual, mono;
|
||||||
|
|
Loading…
Reference in a new issue