summaryrefslogtreecommitdiff
path: root/src/rmd_encode_audio_buffer.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-09-08 23:49:15 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-09-08 23:49:15 -0700
commit1f3db49e13f126bf047735a9ce84bccc8b3d75da (patch)
tree8bc0347bcc72b1e24365b7a5650649154076f429 /src/rmd_encode_audio_buffer.h
parentcd2f6c3aca998c7e68aa6e4ccd0ad260426d28e8 (diff)
encode_audio_buffer: s/sound/audio/ where appropriate
Largely mechanical cosmetic changes for more consistency
Diffstat (limited to 'src/rmd_encode_audio_buffer.h')
-rw-r--r--src/rmd_encode_audio_buffer.h12
1 files changed, 6 insertions, 6 deletions
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
© All Rights Reserved