From 1f219c7b8a6f2b7a70f595ccdfe419ea034c9411 Mon Sep 17 00:00:00 2001 From: notaz Date: Sat, 21 Apr 2012 23:21:13 +0300 Subject: [PATCH] rename vout_fb to vout_pl that code outputs through plugin_lib, which is not necessary fb. --- Makefile | 2 +- plugins/dfxvideo/Makefile | 2 +- plugins/dfxvideo/{draw_fb.c => draw_pl.c} | 0 plugins/gpulib/Makefile | 2 +- plugins/gpulib/{vout_fb.c => vout_pl.c} | 1 + 5 files changed, 4 insertions(+), 3 deletions(-) rename plugins/dfxvideo/{draw_fb.c => draw_pl.c} (100%) rename plugins/gpulib/{vout_fb.c => vout_pl.c} (98%) diff --git a/Makefile b/Makefile index 5b5ffe16..cdc1a740 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ LDLIBS += -lX11 `sdl-config --libs` OBJS += plugins/gpulib/vout_sdl.o plugins/gpulib/vout_sdl.o: CFLAGS += `sdl-config --cflags` else -OBJS += plugins/gpulib/vout_fb.o +OBJS += plugins/gpulib/vout_pl.o endif # cdrcimg diff --git a/plugins/dfxvideo/Makefile b/plugins/dfxvideo/Makefile index b6cc756d..a5ca5f3a 100644 --- a/plugins/dfxvideo/Makefile +++ b/plugins/dfxvideo/Makefile @@ -9,7 +9,7 @@ SRC_STANDALONE += gpu.c SRC_GPULIB += gpulib_if.c ifeq "$(ARCH)" "arm" -SRC_STANDALONE += draw_fb.c +SRC_STANDALONE += draw_pl.c else SRC_STANDALONE += draw.c LDLIBS_STANDALONE += -lX11 -lXv diff --git a/plugins/dfxvideo/draw_fb.c b/plugins/dfxvideo/draw_pl.c similarity index 100% rename from plugins/dfxvideo/draw_fb.c rename to plugins/dfxvideo/draw_pl.c diff --git a/plugins/gpulib/Makefile b/plugins/gpulib/Makefile index 9ed992f2..43f0d2b3 100644 --- a/plugins/gpulib/Makefile +++ b/plugins/gpulib/Makefile @@ -13,7 +13,7 @@ OBJS += cspace_neon.o else OBJS += cspace.o endif -OBJS += vout_fb.o +OBJS += vout_pl.o EXT = a else CFLAGS += `sdl-config --cflags` diff --git a/plugins/gpulib/vout_fb.c b/plugins/gpulib/vout_pl.c similarity index 98% rename from plugins/gpulib/vout_fb.c rename to plugins/gpulib/vout_pl.c index 021efa72..91de0571 100644 --- a/plugins/gpulib/vout_fb.c +++ b/plugins/gpulib/vout_pl.c @@ -1,4 +1,5 @@ /* + * video output handling using plugin_lib * (C) Gražvydas "notaz" Ignotas, 2011 * * This work is licensed under the terms of any of these licenses -- 2.39.2