mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +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 bitpool;
|
||||
|
||||
gint codesize;
|
||||
guint codesize;
|
||||
gint frame_length;
|
||||
gint frame_duration;
|
||||
|
||||
|
|
|
@ -98,7 +98,7 @@ gst_sbc_get_allocation_from_list (const GValue * value)
|
|||
const gchar *
|
||||
gst_sbc_get_mode_from_list (const GValue * list, gint channels)
|
||||
{
|
||||
int i;
|
||||
unsigned int i;
|
||||
const GValue *value;
|
||||
const gchar *aux;
|
||||
gboolean joint, stereo, dual, mono;
|
||||
|
|
Loading…
Reference in a new issue