audio/mixeng: Do not declare unused variables
The unused variables when FLOAT_MIXENG is defined caused warnings on Apple clang version 13.1.6 (clang-1316.0.21.2). Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220316061053.60587-1-akihiko.odaki@gmail.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
6c08964b41
commit
832061a2fa
@ -342,13 +342,13 @@ f_sample *mixeng_clip_float[2] = {
|
|||||||
void audio_sample_to_uint64(const void *samples, int pos,
|
void audio_sample_to_uint64(const void *samples, int pos,
|
||||||
uint64_t *left, uint64_t *right)
|
uint64_t *left, uint64_t *right)
|
||||||
{
|
{
|
||||||
const struct st_sample *sample = samples;
|
|
||||||
sample += pos;
|
|
||||||
#ifdef FLOAT_MIXENG
|
#ifdef FLOAT_MIXENG
|
||||||
error_report(
|
error_report(
|
||||||
"Coreaudio and floating point samples are not supported by replay yet");
|
"Coreaudio and floating point samples are not supported by replay yet");
|
||||||
abort();
|
abort();
|
||||||
#else
|
#else
|
||||||
|
const struct st_sample *sample = samples;
|
||||||
|
sample += pos;
|
||||||
*left = sample->l;
|
*left = sample->l;
|
||||||
*right = sample->r;
|
*right = sample->r;
|
||||||
#endif
|
#endif
|
||||||
@ -357,13 +357,13 @@ void audio_sample_to_uint64(const void *samples, int pos,
|
|||||||
void audio_sample_from_uint64(void *samples, int pos,
|
void audio_sample_from_uint64(void *samples, int pos,
|
||||||
uint64_t left, uint64_t right)
|
uint64_t left, uint64_t right)
|
||||||
{
|
{
|
||||||
struct st_sample *sample = samples;
|
|
||||||
sample += pos;
|
|
||||||
#ifdef FLOAT_MIXENG
|
#ifdef FLOAT_MIXENG
|
||||||
error_report(
|
error_report(
|
||||||
"Coreaudio and floating point samples are not supported by replay yet");
|
"Coreaudio and floating point samples are not supported by replay yet");
|
||||||
abort();
|
abort();
|
||||||
#else
|
#else
|
||||||
|
struct st_sample *sample = samples;
|
||||||
|
sample += pos;
|
||||||
sample->l = left;
|
sample->l = left;
|
||||||
sample->r = right;
|
sample->r = right;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user