diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-09-08 23:37:36 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-09-08 23:37:36 -0700 |
commit | b19afd5ed632358096e86240629134777f4ae669 (patch) | |
tree | f9b01a609e09c1028428a02dc816e3a46cf8b4f7 /src | |
parent | 7cc99cedd3685f0e9090423d0c1a061b376aa936 (diff) |
capture_sound: rename to rmd_capture_audio.[ch]
Make naming consistent with rmd_cache_audio.
This commit is minimal renaming of the files and tweaking
includes, a subsequent commit will make the various naming within
rmd_capture_audio.c consistent.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/rmd_capture_audio.c (renamed from src/rmd_capture_sound.c) | 2 | ||||
-rw-r--r-- | src/rmd_capture_audio.h (renamed from src/rmd_capture_sound.h) | 0 | ||||
-rw-r--r-- | src/rmd_threads.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a63c3c4..e01a5d8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -8,8 +8,8 @@ recordmydesktop_SOURCES = \ rmd_cache_audio.h \ rmd_cache_frame.c \ rmd_cache_frame.h \ - rmd_capture_sound.c \ - rmd_capture_sound.h \ + rmd_capture_audio.c \ + rmd_capture_audio.h \ rmd_encode_cache.c \ rmd_encode_cache.h \ rmd_encode_image_buffer.c \ diff --git a/src/rmd_capture_sound.c b/src/rmd_capture_audio.c index 162ceed..217ef0a 100644 --- a/src/rmd_capture_sound.c +++ b/src/rmd_capture_audio.c @@ -25,7 +25,7 @@ ******************************************************************************/ #include "config.h" -#include "rmd_capture_sound.h" +#include "rmd_capture_audio.h" #include "rmd_jack.h" #include "rmd_opendev.h" diff --git a/src/rmd_capture_sound.h b/src/rmd_capture_audio.h index b403fa8..b403fa8 100644 --- a/src/rmd_capture_sound.h +++ b/src/rmd_capture_audio.h diff --git a/src/rmd_threads.c b/src/rmd_threads.c index 88a4bbc..eea710c 100644 --- a/src/rmd_threads.c +++ b/src/rmd_threads.c @@ -29,7 +29,7 @@ #include "rmd_cache_audio.h" #include "rmd_cache_frame.h" -#include "rmd_capture_sound.h" +#include "rmd_capture_audio.h" #include "rmd_encode_image_buffer.h" #include "rmd_encode_sound_buffer.h" #include "rmd_flush_to_ogg.h" |