[patch] possible typo in videofilter library

Started by sl1pkn07, November 27, 2014, 06:59:03 PM

Previous topic - Next topic

sl1pkn07

Hi

the build create a

/usr/lib/ADM_plugins6/videoFilters/libADM_hf_hflip.so

Instead of a

/usr/lib/ADM_plugins6/videoFilters/libADM_vf_hflip.so

like a other libs in same directory

greetings

sl1pkn07

fixed (ugly) with :

sed 's|hf_hflip|vf_hflip|g' -i avidemux/avidemux_plugins/ADM_videoFilters6/horizontalFlip/CMakeLists.txt

greetings

sl1pkn07


diff --git a/avidemux_plugins/ADM_videoFilters6/horizontalFlip/CMakeLists.txt b/avidemux_plugins/ADM_videoFilters6/horizontalFlip/CMakeLists.txt
index 578ed4a..426588b 100644
--- a/avidemux_plugins/ADM_videoFilters6/horizontalFlip/CMakeLists.txt
+++ b/avidemux_plugins/ADM_videoFilters6/horizontalFlip/CMakeLists.txt
@@ -1,9 +1,9 @@
INCLUDE(vf_plugin)


-SET(ADM_hf_hflip_SRCS horizontalFlip.cpp)
+SET(ADM_vf_hflip_SRCS horizontalFlip.cpp)

-ADD_VIDEO_FILTER(ADM_hf_hflip ${ADM_hf_hflip_SRCS})
+ADD_VIDEO_FILTER(ADM_vf_hflip ${ADM_vf_hflip_SRCS})

-INIT_VIDEO_FILTER(ADM_hf_hflip)
-INSTALL_VIDEO_FILTER(ADM_hf_hflip)
+INIT_VIDEO_FILTER(ADM_vf_hflip)
+INSTALL_VIDEO_FILTER(ADM_vf_hflip)