From 61e30759812e6996eb02bacf58607ec53cb0f577 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 10 Feb 2009 21:50:51 +0100 Subject: output_api: no CamelCase in struct audio_output Renamed audio_output struct members. --- src/output_internal.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/output_internal.h') diff --git a/src/output_internal.h b/src/output_internal.h index e53fc6a6..d2b6e41b 100644 --- a/src/output_internal.h +++ b/src/output_internal.h @@ -63,23 +63,23 @@ struct audio_output { * The audio_format in which audio data is received from the * player thread (which in turn receives it from the decoder). */ - struct audio_format inAudioFormat; + struct audio_format in_audio_format; /** * The audio_format which is really sent to the device. This - * is basically reqAudioFormat (if configured) or - * inAudioFormat, but may have been modified by + * is basically config_audio_format (if configured) or + * in_audio_format, but may have been modified by * plugin->open(). */ - struct audio_format outAudioFormat; + struct audio_format out_audio_format; /** * The audio_format which was configured. Only set if * convertAudioFormat is true. */ - struct audio_format reqAudioFormat; + struct audio_format config_audio_format; - struct pcm_convert_state convState; + struct pcm_convert_state convert_state; /** * The thread handle, or NULL if the output thread isn't -- cgit v1.2.3