From 4354922570bb097f58411e9382b5cdca6a4c22fb Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Mon, 23 Apr 2018 10:32:09 +0200 Subject: [PATCH] Drop the _drv_video suffix from sunxi_cedrus files for conciseness Signed-off-by: Paul Kocialkowski --- src/Makefile.am | 2 +- src/buffer.c | 2 +- src/buffer.h | 2 +- src/context.c | 2 +- src/image.c | 2 +- src/mpeg2.c | 2 +- src/mpeg4.c | 2 +- src/picture.c | 2 +- src/subpicture.c | 2 +- src/{sunxi_cedrus_drv_video.c => sunxi_cedrus.c} | 2 +- src/{sunxi_cedrus_drv_video.h => sunxi_cedrus.h} | 0 src/surface.c | 2 +- src/va_config.c | 2 +- 13 files changed, 12 insertions(+), 12 deletions(-) rename src/{sunxi_cedrus_drv_video.c => sunxi_cedrus.c} (99%) rename src/{sunxi_cedrus_drv_video.h => sunxi_cedrus.h} (100%) diff --git a/src/Makefile.am b/src/Makefile.am index 7db7a2e..011e57e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -19,7 +19,7 @@ driver_libs = \ $(X11_DEPS_LIBS) \ $(LIBVA_DEPS_LIBS) -source_c = sunxi_cedrus_drv_video.c object_heap.c buffer.c va_config.c \ +source_c = sunxi_cedrus.c object_heap.c buffer.c va_config.c \ context.c image.c mpeg2.c mpeg4.c picture.c subpicture.c surface.c source_s = \ diff --git a/src/buffer.c b/src/buffer.c index df6398f..c099200 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "buffer.h" #include "context.h" diff --git a/src/buffer.h b/src/buffer.h index 9104de9..99d60db 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -29,7 +29,7 @@ #include #include "object_heap.h" -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #define BUFFER(id) ((struct object_buffer *) object_heap_lookup(&driver_data->buffer_heap, id)) #define BUFFER_ID_OFFSET 0x08000000 diff --git a/src/context.c b/src/context.c index 32396fd..d219e59 100644 --- a/src/context.c +++ b/src/context.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "context.h" #include "va_config.h" #include "surface.h" diff --git a/src/image.c b/src/image.c index 51d88f0..8dd1e4b 100644 --- a/src/image.c +++ b/src/image.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "image.h" #include "surface.h" #include "buffer.h" diff --git a/src/mpeg2.c b/src/mpeg2.c index ffdc1ca..a5dfdc7 100644 --- a/src/mpeg2.c +++ b/src/mpeg2.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "mpeg2.h" #include diff --git a/src/mpeg4.c b/src/mpeg4.c index bd8b489..f3cbbe3 100644 --- a/src/mpeg4.c +++ b/src/mpeg4.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "mpeg4.h" #include diff --git a/src/picture.c b/src/picture.c index 5f6f360..32579be 100644 --- a/src/picture.c +++ b/src/picture.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "picture.h" #include "buffer.h" #include "context.h" diff --git a/src/subpicture.c b/src/subpicture.c index ff57b20..865c576 100644 --- a/src/subpicture.c +++ b/src/subpicture.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "subpicture.h" /* diff --git a/src/sunxi_cedrus_drv_video.c b/src/sunxi_cedrus.c similarity index 99% rename from src/sunxi_cedrus_drv_video.c rename to src/sunxi_cedrus.c index edc6d6d..432094c 100644 --- a/src/sunxi_cedrus_drv_video.c +++ b/src/sunxi_cedrus.c @@ -35,7 +35,7 @@ #include -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include #include diff --git a/src/sunxi_cedrus_drv_video.h b/src/sunxi_cedrus.h similarity index 100% rename from src/sunxi_cedrus_drv_video.h rename to src/sunxi_cedrus.h diff --git a/src/surface.c b/src/surface.c index 1b6d24f..d133496 100644 --- a/src/surface.c +++ b/src/surface.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "surface.h" #include diff --git a/src/va_config.c b/src/va_config.c index 7be5b4e..9f0a8b7 100644 --- a/src/va_config.c +++ b/src/va_config.c @@ -23,7 +23,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "sunxi_cedrus_drv_video.h" +#include "sunxi_cedrus.h" #include "va_config.h" #include