[vlc-commits] puzzle: group in subdirectory

Lyndon Brown git at videolan.org
Mon Jan 18 08:47:05 UTC 2021


vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Sat Apr 27 09:15:35 2019 +0100| [09b054ddc4988d7d5f36db458bee983ce6ef3a9d] | committer: Steve Lhomme

puzzle: group in subdirectory

Signed-off-by: Steve Lhomme <robux4 at ycbcr.xyz>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=09b054ddc4988d7d5f36db458bee983ce6ef3a9d
---

 modules/video_filter/Makefile.am                  | 10 +++++-----
 modules/video_filter/{ => puzzle}/puzzle.c        |  2 +-
 modules/video_filter/{ => puzzle}/puzzle.h        |  0
 modules/video_filter/{ => puzzle}/puzzle_bezier.c |  0
 modules/video_filter/{ => puzzle}/puzzle_bezier.h |  0
 modules/video_filter/{ => puzzle}/puzzle_lib.c    |  2 +-
 modules/video_filter/{ => puzzle}/puzzle_lib.h    |  0
 modules/video_filter/{ => puzzle}/puzzle_mgt.c    |  2 +-
 modules/video_filter/{ => puzzle}/puzzle_mgt.h    |  0
 modules/video_filter/{ => puzzle}/puzzle_pce.c    |  2 +-
 modules/video_filter/{ => puzzle}/puzzle_pce.h    |  0
 po/POTFILES.in                                    |  2 +-
 12 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/modules/video_filter/Makefile.am b/modules/video_filter/Makefile.am
index e4aff521a6..d265d44f2f 100644
--- a/modules/video_filter/Makefile.am
+++ b/modules/video_filter/Makefile.am
@@ -43,11 +43,11 @@ libposterize_plugin_la_SOURCES = video_filter/posterize.c
 libpsychedelic_plugin_la_SOURCES = video_filter/psychedelic.c
 libpsychedelic_plugin_la_LIBADD = $(LIBM)
 libpuzzle_plugin_la_SOURCES = \
-	video_filter/puzzle.c video_filter/puzzle.h \
-	video_filter/puzzle_bezier.c video_filter/puzzle_bezier.h \
-	video_filter/puzzle_lib.c video_filter/puzzle_lib.h \
-	video_filter/puzzle_mgt.c video_filter/puzzle_mgt.h \
-	video_filter/puzzle_pce.c video_filter/puzzle_pce.h
+	video_filter/puzzle/puzzle.c video_filter/puzzle/puzzle.h \
+	video_filter/puzzle/puzzle_bezier.c video_filter/puzzle/puzzle_bezier.h \
+	video_filter/puzzle/puzzle_lib.c video_filter/puzzle/puzzle_lib.h \
+	video_filter/puzzle/puzzle_mgt.c video_filter/puzzle/puzzle_mgt.h \
+	video_filter/puzzle/puzzle_pce.c video_filter/puzzle/puzzle_pce.h
 libpuzzle_plugin_la_LIBADD = $(LIBM)
 libripple_plugin_la_SOURCES = video_filter/ripple.c
 libripple_plugin_la_LIBADD = $(LIBM)
diff --git a/modules/video_filter/puzzle.c b/modules/video_filter/puzzle/puzzle.c
similarity index 99%
rename from modules/video_filter/puzzle.c
rename to modules/video_filter/puzzle/puzzle.c
index ceb8282f48..469c7521f5 100644
--- a/modules/video_filter/puzzle.c
+++ b/modules/video_filter/puzzle/puzzle.c
@@ -38,7 +38,7 @@
 #include <vlc_picture.h>
 #include <vlc_rand.h>
 
-#include "filter_picture.h"
+#include "../filter_picture.h"
 
 #include "puzzle.h"
 #include "puzzle_bezier.h"
diff --git a/modules/video_filter/puzzle.h b/modules/video_filter/puzzle/puzzle.h
similarity index 100%
rename from modules/video_filter/puzzle.h
rename to modules/video_filter/puzzle/puzzle.h
diff --git a/modules/video_filter/puzzle_bezier.c b/modules/video_filter/puzzle/puzzle_bezier.c
similarity index 100%
rename from modules/video_filter/puzzle_bezier.c
rename to modules/video_filter/puzzle/puzzle_bezier.c
diff --git a/modules/video_filter/puzzle_bezier.h b/modules/video_filter/puzzle/puzzle_bezier.h
similarity index 100%
rename from modules/video_filter/puzzle_bezier.h
rename to modules/video_filter/puzzle/puzzle_bezier.h
diff --git a/modules/video_filter/puzzle_lib.c b/modules/video_filter/puzzle/puzzle_lib.c
similarity index 99%
rename from modules/video_filter/puzzle_lib.c
rename to modules/video_filter/puzzle/puzzle_lib.c
index 2b58a2cc45..56fbecf39b 100644
--- a/modules/video_filter/puzzle_lib.c
+++ b/modules/video_filter/puzzle/puzzle_lib.c
@@ -37,7 +37,7 @@
 #include <vlc_picture.h>
 #include <vlc_rand.h>
 
-#include "filter_picture.h"
+#include "../filter_picture.h"
 
 #include "puzzle_lib.h"
 
diff --git a/modules/video_filter/puzzle_lib.h b/modules/video_filter/puzzle/puzzle_lib.h
similarity index 100%
rename from modules/video_filter/puzzle_lib.h
rename to modules/video_filter/puzzle/puzzle_lib.h
diff --git a/modules/video_filter/puzzle_mgt.c b/modules/video_filter/puzzle/puzzle_mgt.c
similarity index 99%
rename from modules/video_filter/puzzle_mgt.c
rename to modules/video_filter/puzzle/puzzle_mgt.c
index bf2e7b5b79..182f8c9fb7 100644
--- a/modules/video_filter/puzzle_mgt.c
+++ b/modules/video_filter/puzzle/puzzle_mgt.c
@@ -37,7 +37,7 @@
 #include <vlc_picture.h>
 #include <vlc_rand.h>
 
-#include "filter_picture.h"
+#include "../filter_picture.h"
 
 #include "puzzle_bezier.h"
 #include "puzzle_lib.h"
diff --git a/modules/video_filter/puzzle_mgt.h b/modules/video_filter/puzzle/puzzle_mgt.h
similarity index 100%
rename from modules/video_filter/puzzle_mgt.h
rename to modules/video_filter/puzzle/puzzle_mgt.h
diff --git a/modules/video_filter/puzzle_pce.c b/modules/video_filter/puzzle/puzzle_pce.c
similarity index 99%
rename from modules/video_filter/puzzle_pce.c
rename to modules/video_filter/puzzle/puzzle_pce.c
index db3ac1806c..102f6b3d83 100644
--- a/modules/video_filter/puzzle_pce.c
+++ b/modules/video_filter/puzzle/puzzle_pce.c
@@ -35,7 +35,7 @@
 #include <vlc_picture.h>
 #include <vlc_rand.h>
 
-#include "filter_picture.h"
+#include "../filter_picture.h"
 
 #include "puzzle_bezier.h"
 #include "puzzle_lib.h"
diff --git a/modules/video_filter/puzzle_pce.h b/modules/video_filter/puzzle/puzzle_pce.h
similarity index 100%
rename from modules/video_filter/puzzle_pce.h
rename to modules/video_filter/puzzle/puzzle_pce.h
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 9f17dbb67d..20b155aa64 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1252,7 +1252,7 @@ modules/video_filter/opencv_wrapper.c
 modules/video_filter/posterize.c
 modules/video_filter/postproc.c
 modules/video_filter/psychedelic.c
-modules/video_filter/puzzle.c
+modules/video_filter/puzzle/puzzle.c
 modules/video_filter/ripple.c
 modules/video_filter/rotate.c
 modules/video_filter/scale.c



More information about the vlc-commits mailing list