summaryrefslogtreecommitdiff
path: root/src/audio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio.h')
-rw-r--r--src/audio.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/audio.h b/src/audio.h
index 5731257..6cae07f 100644
--- a/src/audio.h
+++ b/src/audio.h
@@ -20,21 +20,21 @@ struct cmumble_audio {
CELTMode *celt_mode;
};
-struct cmumble_context;
+struct cmumlbe;
struct cmumble_user;
int
-cmumble_audio_init(struct cmumble_context *ctx);
+cmumble_audio_init(struct cmumlbe *cm);
int
-cmumble_audio_fini(struct cmumble_context *ctx);
+cmumble_audio_fini(struct cmumlbe *cm);
int
-cmumble_audio_create_playback_pipeline(struct cmumble_context *ctx,
+cmumble_audio_create_playback_pipeline(struct cmumlbe *cm,
struct cmumble_user *user);
void
-cmumble_audio_push(struct cmumble_context *ctx, struct cmumble_user *user,
+cmumble_audio_push(struct cmumlbe *cm, struct cmumble_user *user,
const guint8 *data, gsize size);
#endif /* _AUDIO_H_ */