summaryrefslogtreecommitdiff
path: root/src/rmd_encode_audio_buffer.h
diff options
context:
space:
mode:
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