summaryrefslogtreecommitdiff
path: root/common/snd_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/snd_codec.c')
-rw-r--r--common/snd_codec.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/common/snd_codec.c b/common/snd_codec.c
index 5f5abcb..b649e5d 100644
--- a/common/snd_codec.c
+++ b/common/snd_codec.c
@@ -41,7 +41,7 @@
typedef struct SndCodecInternal
{
- SpiceAudioDataMode mode;
+ int mode;
int frequency;
#if HAVE_OPUS
@@ -168,8 +168,7 @@ bool snd_codec_is_capable(SpiceAudioDataMode mode, int frequency)
snd_codec_destroy is the obvious partner of snd_codec_create.
*/
-SndCodecResult
-snd_codec_create(SndCodec *codec, SpiceAudioDataMode mode, int frequency, int purpose)
+SndCodecResult snd_codec_create(SndCodec *codec, int mode, int frequency, int purpose)
{
SndCodecResult rc = SND_CODEC_UNAVAILABLE;
SndCodecInternal **c = codec;
@@ -263,8 +262,7 @@ snd_codec_encode(SndCodec codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr,
Returns:
SND_CODEC_OK if all went well
*/
-SndCodecResult
-snd_codec_decode(SndCodec codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr, int *out_size)
+SndCodecResult snd_codec_decode(SndCodec codec, uint8_t *in_ptr, int in_size, uint8_t *out_ptr, int *out_size)
{
#if HAVE_OPUS
SndCodecInternal *c = codec;