summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-09-08 23:45:17 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-09-08 23:45:17 -0700
commitcd2f6c3aca998c7e68aa6e4ccd0ad260426d28e8 (patch)
tree1947e12514b755ae6ab9c36bff59232c343010d4 /src
parente9aa96e3fa9be9117f5407619fc65292da34c441 (diff)
encode_sound_buffer: rename to encode_audio_buffer
Cosmetic rename to make naming consistent, normalizing on audio. This is a minimal rename and includes update, subsequent commit will change naming as appropriate in rmd_encode_audio_buffer.[ch]
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/rmd_encode_audio_buffer.c (renamed from src/rmd_encode_sound_buffer.c)2
-rw-r--r--src/rmd_encode_audio_buffer.h (renamed from src/rmd_encode_sound_buffer.h)0
-rw-r--r--src/rmd_flush_to_ogg.c2
-rw-r--r--src/rmd_load_cache.c2
-rw-r--r--src/rmd_threads.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index e01a5d8..ba429cb 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -12,10 +12,10 @@ recordmydesktop_SOURCES = \
rmd_capture_audio.h \
rmd_encode_cache.c \
rmd_encode_cache.h \
+ rmd_encode_audio_buffer.c \
+ rmd_encode_audio_buffer.h \
rmd_encode_image_buffer.c \
rmd_encode_image_buffer.h \
- rmd_encode_sound_buffer.c \
- rmd_encode_sound_buffer.h \
rmd_error.c \
rmd_error.h \
rmd_flush_to_ogg.c \
diff --git a/src/rmd_encode_sound_buffer.c b/src/rmd_encode_audio_buffer.c
index 8a1d3d4..1aa9943 100644
--- a/src/rmd_encode_sound_buffer.c
+++ b/src/rmd_encode_audio_buffer.c
@@ -25,7 +25,7 @@
******************************************************************************/
#include "config.h"
-#include "rmd_encode_sound_buffer.h"
+#include "rmd_encode_audio_buffer.h"
#include "rmd_jack.h"
#include "rmd_threads.h"
diff --git a/src/rmd_encode_sound_buffer.h b/src/rmd_encode_audio_buffer.h
index 7d5c312..7d5c312 100644
--- a/src/rmd_encode_sound_buffer.h
+++ b/src/rmd_encode_audio_buffer.h
diff --git a/src/rmd_flush_to_ogg.c b/src/rmd_flush_to_ogg.c
index 6c5a0d8..ced0ea4 100644
--- a/src/rmd_flush_to_ogg.c
+++ b/src/rmd_flush_to_ogg.c
@@ -27,8 +27,8 @@
#include "config.h"
#include "rmd_flush_to_ogg.h"
+#include "rmd_encode_audio_buffer.h"
#include "rmd_encode_image_buffer.h"
-#include "rmd_encode_sound_buffer.h"
#include "rmd_threads.h"
#include "rmd_types.h"
diff --git a/src/rmd_load_cache.c b/src/rmd_load_cache.c
index 8130cf3..24c22e1 100644
--- a/src/rmd_load_cache.c
+++ b/src/rmd_load_cache.c
@@ -28,8 +28,8 @@
#include "rmd_load_cache.h"
#include "rmd_cache.h"
+#include "rmd_encode_audio_buffer.h"
#include "rmd_encode_image_buffer.h"
-#include "rmd_encode_sound_buffer.h"
#include "rmd_macro.h"
#include "rmd_threads.h"
#include "rmd_types.h"
diff --git a/src/rmd_threads.c b/src/rmd_threads.c
index 1859a56..f7937c4 100644
--- a/src/rmd_threads.c
+++ b/src/rmd_threads.c
@@ -30,8 +30,8 @@
#include "rmd_cache_audio.h"
#include "rmd_cache_frame.h"
#include "rmd_capture_audio.h"
+#include "rmd_encode_audio_buffer.h"
#include "rmd_encode_image_buffer.h"
-#include "rmd_encode_sound_buffer.h"
#include "rmd_flush_to_ogg.h"
#include "rmd_get_frame.h"
#include "rmd_jack.h"
© All Rights Reserved