diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-04-04 23:55:01 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-04-04 23:55:01 -0700 |
commit | 2f3767a0f6562b8e1e7a41f83a6febf05310c5bb (patch) | |
tree | 2d802a0c756d2a41c719dd683523eb24c5383418 /src | |
parent | b6e48f6a544fc9c6637d7c8ffe0123936e68c5bf (diff) |
*: encode_image_buffer.[ch]->encode_audio_buffers.[ch]
mechanical change to get filenames more accurate, thread function
will be renamed in subsequent commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/rmd_encode_image_buffers.c (renamed from src/rmd_encode_image_buffer.c) | 2 | ||||
-rw-r--r-- | src/rmd_encode_image_buffers.h (renamed from src/rmd_encode_image_buffer.h) | 0 | ||||
-rw-r--r-- | src/rmd_flush_to_ogg.c | 2 | ||||
-rw-r--r-- | src/rmd_load_cache.c | 2 | ||||
-rw-r--r-- | src/rmd_threads.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1a06e23..913b928 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -14,8 +14,8 @@ recordmydesktop_SOURCES = \ rmd_encode_cache.h \ rmd_encode_audio_buffers.c \ rmd_encode_audio_buffers.h \ - rmd_encode_image_buffer.c \ - rmd_encode_image_buffer.h \ + rmd_encode_image_buffers.c \ + rmd_encode_image_buffers.h \ rmd_error.c \ rmd_error.h \ rmd_flush_to_ogg.c \ diff --git a/src/rmd_encode_image_buffer.c b/src/rmd_encode_image_buffers.c index a669155..7ee9f04 100644 --- a/src/rmd_encode_image_buffer.c +++ b/src/rmd_encode_image_buffers.c @@ -25,7 +25,7 @@ ******************************************************************************/ #include "config.h" -#include "rmd_encode_image_buffer.h" +#include "rmd_encode_image_buffers.h" #include "rmd_threads.h" #include "rmd_types.h" diff --git a/src/rmd_encode_image_buffer.h b/src/rmd_encode_image_buffers.h index d011e26..d011e26 100644 --- a/src/rmd_encode_image_buffer.h +++ b/src/rmd_encode_image_buffers.h diff --git a/src/rmd_flush_to_ogg.c b/src/rmd_flush_to_ogg.c index 7805d7c..0ca5bc3 100644 --- a/src/rmd_flush_to_ogg.c +++ b/src/rmd_flush_to_ogg.c @@ -28,7 +28,7 @@ #include "rmd_flush_to_ogg.h" #include "rmd_encode_audio_buffers.h" -#include "rmd_encode_image_buffer.h" +#include "rmd_encode_image_buffers.h" #include "rmd_threads.h" #include "rmd_types.h" diff --git a/src/rmd_load_cache.c b/src/rmd_load_cache.c index 222628a..a4ee42b 100644 --- a/src/rmd_load_cache.c +++ b/src/rmd_load_cache.c @@ -29,7 +29,7 @@ #include "rmd_cache.h" #include "rmd_encode_audio_buffers.h" -#include "rmd_encode_image_buffer.h" +#include "rmd_encode_image_buffers.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 279a767..9947eb6 100644 --- a/src/rmd_threads.c +++ b/src/rmd_threads.c @@ -31,7 +31,7 @@ #include "rmd_cache_frame.h" #include "rmd_capture_audio.h" #include "rmd_encode_audio_buffers.h" -#include "rmd_encode_image_buffer.h" +#include "rmd_encode_image_buffers.h" #include "rmd_flush_to_ogg.h" #include "rmd_get_frames.h" #include "rmd_jack.h" |