From b043f004a882cf21ad4c5ea43609e8e2a2eee064 Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Sun, 10 Mar 2024 13:38:56 +0000 Subject: [PATCH] Rename h264-encoder.c -> h264-encoder-ffmpeg-impl.c --- meson.build | 2 +- src/{h264-encoder.c => h264-encoder-ffmpeg-impl.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{h264-encoder.c => h264-encoder-ffmpeg-impl.c} (100%) diff --git a/meson.build b/meson.build index 256f715..dbed125 100644 --- a/meson.build +++ b/meson.build @@ -139,7 +139,7 @@ if gbm.found() endif if gbm.found() and libdrm.found() and libavcodec.found() and libavfilter.found() and libavutil.found() - sources += [ 'src/h264-encoder.c', 'src/open-h264.c' ] + sources += [ 'src/h264-encoder-ffmpeg-impl.c', 'src/open-h264.c' ] dependencies += [libdrm, libavcodec, libavfilter, libavutil] config.set('ENABLE_OPEN_H264', true) config.set('HAVE_LIBAVUTIL', true) diff --git a/src/h264-encoder.c b/src/h264-encoder-ffmpeg-impl.c similarity index 100% rename from src/h264-encoder.c rename to src/h264-encoder-ffmpeg-impl.c