sbc: Fix signed/unsigned comparison issue within GStreamer plugin

This commit is contained in:
Marcel Holtmann 2009-01-30 00:31:15 +01:00 committed by Tim-Philipp Müller
parent 3f994a84bb
commit db16c0332c
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ struct _GstSbcEnc {
gint subbands;
gint bitpool;
gint codesize;
guint codesize;
gint frame_length;
gint frame_duration;

View file

@ -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;