From 13528eff1d5a21ca9c783cbfde11a6abfd1f0e72 Mon Sep 17 00:00:00 2001 From: Kamil Trzcinski Date: Sun, 10 Apr 2022 09:47:24 +0200 Subject: [PATCH] Move `device/hw/buffer_lock.h` to `device/buffer_lock.h` --- device/{hw => }/buffer_lock.c | 2 +- device/{hw => }/buffer_lock.h | 0 http/http_ffmpeg.c | 2 +- http/http_h264.c | 2 +- http/http_jpeg.c | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename device/{hw => }/buffer_lock.c (99%) rename device/{hw => }/buffer_lock.h (100%) diff --git a/device/hw/buffer_lock.c b/device/buffer_lock.c similarity index 99% rename from device/hw/buffer_lock.c rename to device/buffer_lock.c index b13af9f..a028af2 100644 --- a/device/hw/buffer_lock.c +++ b/device/buffer_lock.c @@ -1,4 +1,4 @@ -#include "device/hw/buffer_lock.h" +#include "device/buffer_lock.h" #include "device/hw/buffer_list.h" #include "device/hw/buffer.h" #include "device/hw/v4l2.h" diff --git a/device/hw/buffer_lock.h b/device/buffer_lock.h similarity index 100% rename from device/hw/buffer_lock.h rename to device/buffer_lock.h diff --git a/http/http_ffmpeg.c b/http/http_ffmpeg.c index 83d4a8d..1eb991d 100644 --- a/http/http_ffmpeg.c +++ b/http/http_ffmpeg.c @@ -4,7 +4,7 @@ #include "opts/log.h" #include "http/http.h" #include "device/hw/buffer.h" -#include "device/hw/buffer_lock.h" +#include "device/buffer_lock.h" #include "device/hw/buffer_list.h" #include "device/hw/device.h" #include "ffmpeg/remuxer.h" diff --git a/http/http_h264.c b/http/http_h264.c index e0f1ae8..9dacbc5 100644 --- a/http/http_h264.c +++ b/http/http_h264.c @@ -4,7 +4,7 @@ #include "opts/log.h" #include "http/http.h" #include "device/hw/buffer.h" -#include "device/hw/buffer_lock.h" +#include "device/buffer_lock.h" #include "device/hw/buffer_list.h" #include "device/hw/device.h" diff --git a/http/http_jpeg.c b/http/http_jpeg.c index 39b08d9..c4cc603 100644 --- a/http/http_jpeg.c +++ b/http/http_jpeg.c @@ -3,7 +3,7 @@ #include "http/http.h" #include "device/hw/buffer.h" -#include "device/hw/buffer_lock.h" +#include "device/buffer_lock.h" DEFINE_BUFFER_LOCK(http_jpeg, 1000); DEFINE_BUFFER_LOCK(http_jpeg_lowres, 1000);