Commit 4b44a0ef authored by Rafaël Carré's avatar Rafaël Carré

aout: fix f7881537

Make char explicitely signed to represent a boolean
If it is unsigned, default value -1 will represent 255 and
effectively set mute to 255, i.e. true.

Fix lack of hearable audio output on android
parent e1b0fccc
......@@ -57,7 +57,7 @@ typedef struct
vlc_mutex_t lock;
char *device;
float volume;
char mute;
signed char mute;
} req;
struct
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment