Avidemux Forum

Avidemux => Main version 2.6 => Topic started by: sl1pkn07 on November 27, 2014, 06:59:03 PM

Title: [patch] possible typo in videofilter library
Post by: sl1pkn07 on November 27, 2014, 06:59:03 PM
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
Title: Re: possible typo in videofilter library
Post by: sl1pkn07 on December 08, 2014, 12:24:26 AM
fixed (ugly) with :

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

greetings
Title: Re: possible typo in videofilter library
Post by: sl1pkn07 on August 06, 2016, 02:00:35 PM

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)