From 1f3db49e13f126bf047735a9ce84bccc8b3d75da Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 8 Sep 2020 23:49:15 -0700 Subject: encode_audio_buffer: s/sound/audio/ where appropriate Largely mechanical cosmetic changes for more consistency --- src/rmd_encode_audio_buffer.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/rmd_encode_audio_buffer.h') diff --git a/src/rmd_encode_audio_buffer.h b/src/rmd_encode_audio_buffer.h index 7d5c312..bf34b0b 100644 --- a/src/rmd_encode_audio_buffer.h +++ b/src/rmd_encode_audio_buffer.h @@ -24,28 +24,28 @@ * For further information contact me at johnvarouhakis@gmail.com * ******************************************************************************/ -#ifndef ENCODE_SOUND_BUFFER_H -#define ENCODE_SOUND_BUFFER_H 1 +#ifndef ENCODE_AUDIO_BUFFER_H +#define ENCODE_AUDIO_BUFFER_H 1 #include "rmd_types.h" /** -* Sound encoding thread. Picks up data from the buffer queue , +* Audio encoding thread. Picks up data from the buffer queue , * encodes and places them on the vorbis stream. * * \param pdata ProgData struct containing all program data */ -void *rmdEncodeSoundBuffer(ProgData *pdata); +void *rmdEncodeAudioBuffer(ProgData *pdata); /** -* As rmdEncodeSoundBuffer, only with the assumption that +* As rmdEncodeAudioBuffer, only with the assumption that * this is not a thread on it's own * * \param pdata ProgData struct containing all program data * */ -void rmdSyncEncodeSoundBuffer(ProgData *pdata,signed char *buff); +void rmdSyncEncodeAudioBuffer(ProgData *pdata,signed char *buff); #endif -- cgit v1.2.3