mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
audioresample: fix unused-but-set-variable warnings with gcc 4.6
https://bugzilla.gnome.org/show_bug.cgi?id=647294
This commit is contained in:
parent
35c1cf16d9
commit
2ccd243d55
1 changed files with 1 additions and 1 deletions
|
@ -1464,7 +1464,7 @@ gst_audio_resample_get_property (GObject * object, guint prop_id,
|
|||
static gboolean
|
||||
_benchmark_int_float (SpeexResamplerState * st)
|
||||
{
|
||||
gint16 in[BENCHMARK_SIZE] = { 0, }, out[BENCHMARK_SIZE / 2];
|
||||
gint16 in[BENCHMARK_SIZE] = { 0, }, G_GNUC_UNUSED out[BENCHMARK_SIZE / 2];
|
||||
gfloat in_tmp[BENCHMARK_SIZE], out_tmp[BENCHMARK_SIZE / 2];
|
||||
gint i;
|
||||
guint32 inlen = BENCHMARK_SIZE, outlen = BENCHMARK_SIZE / 2;
|
||||
|
|
Loading…
Reference in a new issue