Index: head/multimedia/avidemux/Makefile =================================================================== --- head/multimedia/avidemux/Makefile (revision 495937) +++ head/multimedia/avidemux/Makefile (revision 495938) @@ -1,50 +1,41 @@ # Created by: Anish Mistry (with help from mean) # $FreeBSD$ # assuming freebsd always has 16 byte aligned malloc as macos does. is this true? # nls files not getting installed with nls=on. are they getting built? # sync port options with current software options PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= multimedia MAINTAINER= multimedia@FreeBSD.org COMMENT= Simple GUI based video editor .include "${.CURDIR}/Makefile.common" -.if ${PORT_OPTIONS:MGTK2} || ${PORT_OPTIONS:MQT4} +.if ${PORT_OPTIONS:MGTK2} PLIST_FILES+= ${DATADIR}/${PORTNAME}.png .endif .if ${PORT_OPTIONS:MGTK2} PLIST_FILES+= ${DESKTOPDIR}/${PORTNAME}.desktop .endif -.if ${PORT_OPTIONS:MQT4} -PLIST_FILES+= ${DESKTOPDIR}/${PORTNAME}_qt4.desktop -.endif CMAKE_SOURCE_PATH= ${WRKSRC}/avidemux_core post-configure: post-configure-common post-install: -.if ${PORT_OPTIONS:MGTK3} || ${PORT_OPTIONS:MQT4} +.if ${PORT_OPTIONS:MGTK3} @${MKDIR} "${STAGEDIR}${DATADIR}" ${INSTALL_DATA} "${WRKSRC}/avidemux_icon.png" "${STAGEDIR}${DATADIR}/${PORTNAME}.png" .if ${PORT_OPTIONS:MGTK3} @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" -e "s|%%DATADIR%%|${DATADIR}|g" \ -e "s|%%NAME%%|${PORTNAME}|g" -e "s|%%API%%|gtk|g" \ < ${FILESDIR}/avidemux2.desktop.in > ${WRKDIR}/${PORTNAME}.desktop ${INSTALL_DATA} "${WRKDIR}/${PORTNAME}.desktop" "${STAGEDIR}${DESKTOPDIR}" -.endif -.if ${PORT_OPTIONS:MQT4} - @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" -e "s|%%DATADIR%%|${DATADIR}|g" \ - -e "s|%%NAME%%|${PORTNAME}|g" -e "s|%%API%%|qt4|g" \ - < ${FILESDIR}/avidemux2.desktop.in > ${WRKDIR}/${PORTNAME}_qt4.desktop - ${INSTALL_DATA} "${WRKDIR}/${PORTNAME}_qt4.desktop" "${STAGEDIR}${DESKTOPDIR}" .endif .endif .include Index: head/multimedia/avidemux/Makefile.common =================================================================== --- head/multimedia/avidemux/Makefile.common (revision 495937) +++ head/multimedia/avidemux/Makefile.common (revision 495938) @@ -1,278 +1,265 @@ # $FreeBSD$ AVIDEMUX_VERSION= 2.6.11 MASTER_SITES= \ SF/avidemux/avidemux/${PORTVERSION} DISTNAME= avidemux_${PORTVERSION} BUILD_DEPENDS+= yasm:devel/yasm \ bash:shells/bash LIB_DEPENDS+= libmad.so:audio/libmad \ libdca.so:multimedia/libdca \ libpng.so:graphics/png LICENSE= GPLv2 USE_GNOME= libxml2 OPTIONS_FILE= ${PORT_DBDIR}/${OPTIONS_NAME:C/-.*//}/options USES= cmake:noninja pkgconfig iconv gmake compiler:features sqlite USES+= dos2unix DOS2UNIX_FILES= cmake/admCheckMiscLibs.cmake \ avidemux_core/ADM_coreVideoCodec/include/ADM_coreVideoCodec6_export.h \ avidemux_core/ADM_coreVideoCodec/include/ADM_ffmp43.h CMAKE_ARGS+= -DGNUMAKE_EXECUTABLE=gmake CMAKE_ARGS+= -DAVIDEMUX_PACKAGER=none CMAKE_ARGS+= -DQT5:BOOL=OFF CMAKE_ARGS+= -DESD:BOOL=OFF CXXFLAGS+= -I${LOCALBASE}/include MAKE_JOBS_UNSAFE= yes NOPRECIOUSMAKEVARS= yes # ARCH BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin -OPTIONS_DEFINE= QT4 CLI FREETYPE FONTCONFIG OSS JACK \ +OPTIONS_DEFINE= CLI FREETYPE FONTCONFIG OSS JACK \ PULSEAUDIO XVIDEO FAAC FRIBIDI OPUS TWOLAME \ FAAD X264 X265 VPX XVID SDL AMR VORBIS NLS LAME VAAPI VDPAU OPTIONS_DEFAULT= FREETYPE FONTCONFIG OSS XVIDEO VPX XVID \ SDL FAAD VDPAU VORBIS OPTIONS_SUB= yes CLI_DESC= Build CLI tool FRIBIDI_CMAKE_OFF= -DFRIDIBI:BOOL=OFF FRIBIDI_LIB_DEPENDS= libfribidi.so:converters/fribidi OPUS_CMAKE_OFF= -DOPUS:BOOL=OFF OPUS_LIB_DEPENDS= libopus.so:audio/opus TWOLAME_CMAKE_OFF= -DTWOLAME:BOOL=OFF TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame .if !defined(PACKAGE_BUILDING) OPTIONS_DEFAULT+= LAME FAAC AMR X264 .endif .include .if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" -. if ${PORT_OPTIONS:MQT4} -PLIST_SUB+= QT_NLS="" -. else -PLIST_SUB+= QT_NLS="@comment " -. endif .else CMAKE_ARGS+= -DNO_NLS:BOOL=ON -PLIST_SUB+= NLS="@comment " QT_NLS="@comment " +PLIST_SUB+= NLS="@comment " .endif # for libexecinfo: (so that __builtin_frame_address() finds the top # of the stack) .if ${ARCH} == amd64 CFLAGS+= -fno-omit-frame-pointer #MAKE_ENV+= ARCH=x86_64 #CONFIGURE_ENV+= ARCH=x86_64 .endif CMAKE_ARGS+= -DLIBEXECINFO_INCLUDE_DIR=/usr/include CMAKE_ARGS+= -DLIBEXECINFO_LIBRARY_DIR=-lexecinfo # We haven't ALSA(Never) & Aften(Yet) on FreeBSD CMAKE_ARGS+= -DARTS:BOOL=OFF -DALSA:BOOL=OFF -DAFTEN:BOOL=OFF -.if empty(PORT_OPTIONS:MGTK3) && empty(PORT_OPTIONS:MQT4) +.if empty(PORT_OPTIONS:MGTK3) CMAKE_ARGS+= -DX11:BOOL=OFF .else USE_GNOME+= libxslt .endif .if ${PORT_OPTIONS:MGTK3} USE_GNOME+= gnomeprefix gtk30 PLIST_SUB+= GTK="" .else CMAKE_ARGS+= -DGTK:BOOL=OFF PLIST_SUB+= GTK="@comment " .endif -.if ${PORT_OPTIONS:MQT4} -DEPRECATED= Qt4 has been EOL since december 2015 -EXPIRATION_DATE=2019-03-15 -USES+= qt:4 -USE_QT= qmake_build moc_build rcc_build uic_build linguist_build gui -PLIST_SUB+= QT4="" -.else CMAKE_ARGS+= -DQT4:BOOL=OFF PLIST_SUB+= QT4="@comment " -.endif .if ${PORT_OPTIONS:MCLI} PLIST_SUB+= CLI="" .else PLIST_SUB+= CLI="@comment " .endif .if ${PORT_OPTIONS:MOSS} CMAKE_ARGS+= -DOSS_SUPPORT:BOOL=ON .else CMAKE_ARGS+= -DOSS_SUPPORT:BOOL=OFF .endif .if ${PORT_OPTIONS:MJACK} LIB_DEPENDS+= libjack.so:audio/jack PLIST_SUB+= JACK="" .else CMAKE_ARGS+= -DJACK:BOOL=OFF PLIST_SUB+= JACK="@comment " .endif .if ${PORT_OPTIONS:MPULSEAUDIO} LIB_DEPENDS+= libpulse.so:audio/pulseaudio PLIST_SUB+= PULSE="" .else CMAKE_ARGS+= -DPULSEAUDIOSIMPLE:BOOL=OFF PLIST_SUB+= PULSE="@comment " .endif .if ${PORT_OPTIONS:MFREETYPE} LIB_DEPENDS+= libfreetype.so:print/freetype2 PLIST_SUB+= FREETYPE="" .else CMAKE_ARGS+= -DFREETYPE2:BOOL=OFF PLIST_SUB+= FREETYPE="@comment " .endif .if ${PORT_OPTIONS:MFONTCONFIG} LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig .else CMAKE_ARGS+= -DFONTCONFIG:BOOL=OFF .endif .if ${PORT_OPTIONS:MXVIDEO} #LIB_DEPENDS+= Xv:x11/libXv USE_XORG+= xv .else CMAKE_ARGS+= -DXVIDEO:BOOL=OFF .endif .if ${PORT_OPTIONS:MFAAC} LIB_DEPENDS+= libfaac.so:audio/faac PLIST_SUB+= FAAC="" .else CMAKE_ARGS+= -DFAAC:BOOL=OFF PLIST_SUB+= FAAC="@comment " .endif .if ${PORT_OPTIONS:MLAME} LIB_DEPENDS+= libmp3lame.so:audio/lame PLIST_SUB+= LAME="" .else CMAKE_ARGS+= -DLAME:BOOL=OFF PLIST_SUB+= LAME="@comment " .endif .if ${PORT_OPTIONS:MFAAD} LIB_DEPENDS+= libfaad.so:audio/faad PLIST_SUB+= FAAD="" .else CMAKE_ARGS+= -DFAAD:BOOL=OFF -DNeAAC:BOOL=OFF PLIST_SUB+= FAAD="@comment " .endif .if ${PORT_OPTIONS:MX264} LIB_DEPENDS+= libx264.so:multimedia/libx264 PLIST_SUB+= X264="" .else CMAKE_ARGS+= -DX264:BOOL=OFF PLIST_SUB+= X264="@comment " .endif .if ${PORT_OPTIONS:MX265} LIB_DEPENDS+= libx265.so:multimedia/x265 PLIST_SUB+= X265="" .else CMAKE_ARGS+= -DX265:BOOL=OFF PLIST_SUB+= X265="@comment " .endif .if ${PORT_OPTIONS:MVPX} LIB_DEPENDS+= libvpx.so:multimedia/libvpx PLIST_SUB+= VPX="" .else CMAKE_ARGS+= -DVPXDEC:BOOL=OFF PLIST_SUB+= VPX="@comment " .endif .if ${PORT_OPTIONS:MXVID} LIB_DEPENDS+= libxvidcore.so:multimedia/xvid PLIST_SUB+= XVID="" .else CMAKE_ARGS+= -DXVID:BOOL=OFF PLIST_SUB+= XVID="@comment " .endif .if ${PORT_OPTIONS:MSDL} USE_SDL= sdl PLIST_SUB+= SDL="" .else CMAKE_ARGS+= -DSDL:BOOL=OFF PLIST_SUB+= SDL="@comment " .endif .if ${PORT_OPTIONS:MVAAPI} LIB_DEPENDS+= libva.so:multimedia/libva PLIST_SUB+= VAAPI="" .else CMAKE_ARGS+= -DVAAPI:BOOL=OFF -DLIBVA:BOOL=OFF PLIST_SUB+= VAAPI="@comment " .endif .if ${PORT_OPTIONS:MVDPAU} LIB_DEPENDS+= libvdpau.so:multimedia/libvdpau PLIST_SUB+= VDPAU="" .else CMAKE_ARGS+= -DVDPAU:BOOL=OFF PLIST_SUB+= VDPAU="@comment " .endif .if ${PORT_OPTIONS:MVORBIS} LIB_DEPENDS+= libvorbis.so:audio/libvorbis PLIST_SUB+= VORBIS="" .else CMAKE_ARGS+= -DLIBVORBIS:BOOL=OFF -DVORBIS:BOOL=OFF PLIST_SUB+= VORBIS="@comment " .endif .if ${PORT_OPTIONS:MAMR} LIB_DEPENDS+= libopencore-amrnb.so:audio/opencore-amr PLIST_SUB+= AMRNB="" PLIST_SUB+= AMRWB="" .else CMAKE_ARGS+= -DOPENCORE_AMRNB:BOOL=OFF PLIST_SUB+= AMRNB="@comment " CMAKE_ARGS+= -DOPENCORE_AMRWB:BOOL=OFF PLIST_SUB+= AMRWB="@comment " .endif .include # is this kosher? the result seems to run tho... (see ports/185997) .if $(COMPILER_FEATURES:Mlibc++) LDFLAGS+= -lc++ .endif #.if ${COMPILER_TYPE} == clang USE_GCC= yes #.endif NOT_FOR_ARCHS= aarch64 powerpc powerpc64 powerpcspe sparc64 NOT_FOR_ARCHS_REASON= cmake/admDetermineSystem.cmake:78: CPU not supported post-patch: @${MKDIR} ${CONFIGURE_WRKSRC}/config @${LN} -s ${LOCALBASE}/include/iconv.h ${CONFIGURE_WRKSRC}/config @${REINPLACE_CMD} 's|-ldl||' ${WRKSRC}/avidemux_core/CMakeLists.txt post-configure-common: @${FIND} ${CONFIGURE_WRKSRC} -name link.txt -print0 | \ ${XARGS} -0 ${REINPLACE_CMD} 's|-ldl||g' Index: head/multimedia/avidemux-plugins/Makefile =================================================================== --- head/multimedia/avidemux-plugins/Makefile (revision 495937) +++ head/multimedia/avidemux-plugins/Makefile (revision 495938) @@ -1,43 +1,38 @@ # Created by: Anish Mistry (with help from mean) # $FreeBSD$ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= multimedia PKGNAMESUFFIX= -plugins MAINTAINER= multimedia@FreeBSD.org COMMENT= Simple GUI based video editor (Plugins) LIB_DEPENDS= libADM6avutil.so.54:multimedia/avidemux MASTERDIR= ${.CURDIR}/../avidemux PLIST= ${.CURDIR}/pkg-plist .include "${MASTERDIR}/Makefile.common" CMAKE_SOURCE_PATH= ${WRKSRC}/avidemux_plugins #CMAKE_ARGS+= -DAVIDEMUX_SOURCE_DIR=${WRKSRC} -DAVIDEMUX_INSTALL_PREFIX:PATH="${PREFIX}" -DAVIDEMUX_CORECONFIG_DIR=${CONFIGURE_WRKSRC}/config CMAKE_ARGS+= -DAVIDEMUX_SOURCE_DIR=${WRKSRC} -DAVIDEMUX_INSTALL_PREFIX:PATH="${PREFIX}" CMAKE_ARGS+= -DPLUGIN_UI=ALL .if ${PORT_OPTIONS:MCLI} BUILD_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/cli/config.h:multimedia/avidemux-cli RUN_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/cli/config.h:multimedia/avidemux-cli -.endif - -.if ${PORT_OPTIONS:MQT4} -BUILD_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/qt4/config.h:multimedia/avidemux-qt4 -RUN_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/qt4/config.h:multimedia/avidemux-qt4 .endif .if ${PORT_OPTIONS:MGTK3} BUILD_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/gtk/config.h:multimedia/avidemux-gtk RUN_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/gtk/config.h:multimedia/avidemux-gtk .endif post-configure: post-configure-common .include Index: head/multimedia/avidemux-plugins/pkg-plist =================================================================== --- head/multimedia/avidemux-plugins/pkg-plist (revision 495937) +++ head/multimedia/avidemux-plugins/pkg-plist (revision 495938) @@ -1,462 +1,113 @@ lib/ADM_plugins6/audioDecoder/libADM_ad_Mad.so lib/ADM_plugins6/audioDecoder/libADM_ad_a52.so lib/ADM_plugins6/audioDecoder/libADM_ad_dca.so lib/ADM_plugins6/audioDecoder/libADM_ad_lav.so %%OPUS%%lib/ADM_plugins6/audioDecoder/libADM_ad_opus.so lib/ADM_plugins6/audioDecoder/libADM_ad_ulaw.so lib/ADM_plugins6/audioDecoder/libADM_ad_ms_adpcm.so lib/ADM_plugins6/audioDecoder/libADM_ad_ima_adpcm.so %%VORBIS%%lib/ADM_plugins6/audioDecoder/libADM_ad_vorbis.so lib/ADM_plugins6/audioDevices/libADM_av_oss.so %%LAME%%lib/ADM_plugins6/audioEncoders/libADM_ae_lame.so lib/ADM_plugins6/audioEncoders/libADM_ae_lav_ac3.so lib/ADM_plugins6/audioEncoders/libADM_ae_lav_mp2.so lib/ADM_plugins6/audioEncoders/libADM_ae_lav_aac.so lib/ADM_plugins6/audioEncoders/libADM_ae_pcm.so %%TWOLAME%%lib/ADM_plugins6/audioEncoders/libADM_ae_twolame.so lib/ADM_plugins6/videoEncoders/libADM_ve_yv12.so lib/ADM_plugins6/videoEncoders/libADM_ve_png.so lib/ADM_plugins6/videoEncoders/libADM_ve_jpeg.so lib/ADM_plugins6/videoEncoders/libADM_ve_huff.so lib/ADM_plugins6/videoEncoders/libADM_ve_ffDv.so lib/ADM_plugins6/videoEncoders/libADM_ve_ffMpeg4.so lib/ADM_plugins6/videoEncoders/libADM_ve_ffMpeg2.so lib/ADM_plugins6/videoEncoders/libADM_ve_ffFlv1.so lib/ADM_plugins6/videoEncoders/libADM_ve_null.so lib/ADM_plugins6/videoFilters/libADM_vf_addBorders.so lib/ADM_plugins6/videoFilters/libADM_vf_avsfilter.so lib/ADM_plugins6/videoFilters/libADM_vf_blackenBorders.so lib/ADM_plugins6/videoFilters/libADM_vf_black.so lib/ADM_plugins6/videoFilters/libADM_vf_changeFps.so lib/ADM_plugins6/videoFilters/libADM_vf_colorYuv.so lib/ADM_plugins6/videoFilters/libADM_vf_decimate.so lib/ADM_plugins6/videoFilters/libADM_vf_DgBob.so lib/ADM_plugins6/videoFilters/libADM_vf_dummy.so lib/ADM_plugins6/videoFilters/libADM_vf_fadeTo.so lib/ADM_plugins6/videoFilters/libADM_vf_fadeToBlack.so lib/ADM_plugins6/videoFilters/libADM_vf_mean.so lib/ADM_plugins6/videoFilters/libADM_vf_gauss.so lib/ADM_plugins6/videoFilters/libADM_vf_median.so lib/ADM_plugins6/videoFilters/libADM_vf_sharpen.so lib/ADM_plugins6/videoFilters/libADM_vf_separateField.so %%FRIBIDI%%%%FREETYPE%%lib/ADM_plugins6/videoFilters/libADM_vf_ssa.so lib/ADM_plugins6/videoFilters/libADM_vf_mergeField.so lib/ADM_plugins6/videoFilters/libADM_vf_FluxSmooth.so lib/ADM_plugins6/videoFilters/libADM_hf_hflip.so lib/ADM_plugins6/videoFilters/libADM_vf_kernelDeint.so lib/ADM_plugins6/videoFilters/libADM_vf_largeMedian.so lib/ADM_plugins6/videoFilters/libADM_vf_lavDeint.so lib/ADM_plugins6/videoFilters/libADM_vf_logo.so lib/ADM_plugins6/videoFilters/libADM_vf_lumaOnly.so lib/ADM_plugins6/videoFilters/libADM_vf_denoise3dhq.so lib/ADM_plugins6/videoFilters/libADM_vf_denoise3d.so lib/ADM_plugins6/videoFilters/libADM_vf_msharpen.so lib/ADM_plugins6/videoFilters/libADM_vf_printInfo.so lib/ADM_plugins6/videoFilters/libADM_vf_removePlane.so lib/ADM_plugins6/videoFilters/libADM_vf_resampleFps.so lib/ADM_plugins6/videoFilters/libADM_vf_rotate.so lib/ADM_plugins6/videoFilters/libADM_vf_stackField.so lib/ADM_plugins6/videoFilters/libADM_vf_unstackField.so lib/ADM_plugins6/videoFilters/libADM_vf_hzstackField.so lib/ADM_plugins6/videoFilters/libADM_vf_swapUV.so lib/ADM_plugins6/videoFilters/libADM_vf_telecide.so lib/ADM_plugins6/videoFilters/libADM_vf_yadif.so lib/ADM_plugins6/videoFilters/libADM_vf_vflip.so lib/ADM_plugins6/scriptEngines/libADM_script_spiderMonkey.so lib/ADM_plugins6/scriptEngines/libADM_script_tinyPy.so lib/ADM_plugins6/demuxers/libADM_dm_flv.so lib/ADM_plugins6/demuxers/libADM_dm_pic.so lib/ADM_plugins6/demuxers/libADM_dm_mp4.so lib/ADM_plugins6/demuxers/libADM_dm_matroska.so lib/ADM_plugins6/demuxers/libADM_dm_opendml.so lib/ADM_plugins6/demuxers/libADM_dm_ps.so lib/ADM_plugins6/demuxers/libADM_dm_ts.so lib/ADM_plugins6/demuxers/libADM_dm_asf.so lib/ADM_plugins6/demuxers/libADM_dm_avsproxy.so lib/ADM_plugins6/demuxers/libADM_dm_mxf.so lib/ADM_plugins6/muxers/libADM_mx_dummy.so lib/ADM_plugins6/muxers/libADM_mx_mp4v2.so lib/ADM_plugins6/muxers/libADM_mx_avi.so lib/ADM_plugins6/muxers/libADM_mx_raw.so lib/ADM_plugins6/muxers/libADM_mx_flv.so lib/ADM_plugins6/muxers/libADM_mx_mp4.so lib/ADM_plugins6/muxers/libADM_mx_Mkv.so lib/ADM_plugins6/muxers/libADM_mx_ffPS.so lib/ADM_plugins6/muxers/libADM_mx_ffTS.so lib/ADM_plugins6/autoScripts/720p.py lib/ADM_plugins6/autoScripts/PSP.py lib/ADM_plugins6/autoScripts/check24fps.py lib/ADM_plugins6/autoScripts/svcd.py lib/ADM_plugins6/autoScripts/vcd.py lib/ADM_plugins6/autoScripts/dvd.py lib/ADM_plugins6/autoScripts/lib/ADM_imageInfo.py lib/ADM_plugins6/autoScripts/lib/ADM_image.py %%VPX%%lib/ADM_plugins6/videoDecoders/libADM_vd_vpx.so %%FAAC%%lib/ADM_plugins6/audioEncoders/libADM_ae_faac.so %%FAAD%%lib/ADM_plugins6/audioDecoder/libADM_ad_faad.so %%JACK%%lib/ADM_plugins6/audioDevices/libADM_av_jack.so %%PULSE%%lib/ADM_plugins6/audioDevices/libADM_av_pulseAudioSimple.so %%XVID%%lib/ADM_plugins6/videoEncoders/libADM_ve_xvid4.so %%VORBIS%%lib/ADM_plugins6/audioEncoders/libADM_ae_vorbis.so %%AMRNB%%lib/ADM_plugins6/audioDecoder/libADM_ad_opencore_amrnb.so %%AMRWB%%lib/ADM_plugins6/audioDecoder/libADM_ad_opencore_amrwb.so -%%QT4%%lib/ADM_plugins6/scriptEngines/qt4/libadm_script_QT4.so %%VDPAU%%lib/ADM_plugins6/videoFilters/libADM_vf_vdpauFilter.so %%VDPAU%%lib/ADM_plugins6/videoFilters/libADM_vf_vdpauFilterDeint.so -%%QT4%%%%X264%%lib/ADM_plugins6/videoEncoders/qt4/libADM_ve_x264_QT4.so -%%QT4%%%%X265%%lib/ADM_plugins6/videoEncoders/qt4/libADM_ve_x265_QT4.so %%CLI%%%%X264%%lib/ADM_plugins6/videoEncoders/libADM_ve_x264_other.so %%CLI%%%%X265%%lib/ADM_plugins6/videoEncoders/libADM_ve_x265_other.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_CropCli.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_HueCli.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_chromaShiftCli.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_contrastCli.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_eq2Cli.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_mpdelogoCli.so %%CLI%%lib/ADM_plugins6/videoFilters/cli/libADM_vf_swscaleResize_cli.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_HueQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_asharpQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_chromaShiftQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_contrastQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_cropQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_eq2QT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_mpdelogoQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_swscaleResizeQT4.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_glBenchmark.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_glResize.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_rotateGlFrag2.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_sampleGlFrag2.so -%%QT4%%lib/ADM_plugins6/videoFilters/qt4/libADM_vf_sampleGlVertex.so -%%QT4%%share/avidemux6/help/QtScriptQT4/Dialog.jpg -%%QT4%%share/avidemux6/help/QtScriptQT4/_dialog_8admjs-example.html -%%QT4%%share/avidemux6/help/QtScriptQT4/_transcode_directory_8admjs-example.html -%%QT4%%share/avidemux6/help/QtScriptQT4/annotated.html -%%QT4%%share/avidemux6/help/QtScriptQT4/avidemux_icon_small.png -%%QT4%%share/avidemux6/help/QtScriptQT4/bc_s.png -%%QT4%%share/avidemux6/help/QtScriptQT4/bdwn.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_encoder-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_encoder.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_output-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_output.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_output_collection-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_output_collection.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_properties-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_audio_properties.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_check_box_control-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_check_box_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_check_box_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_control-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_item-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_item.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_item_collection-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_combo_box_item_collection.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_control_collection-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_control_collection.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_dialog-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_dialog.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_directory-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_directory.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_double_spin_box_control-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_double_spin_box_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_double_spin_box_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_editor-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_editor.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_file-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_file.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_file_information-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_file_information.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_frame_properties-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_frame_properties.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_line_edit_control-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_line_edit_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_line_edit_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_muxer-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_muxer.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_segment-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_segment.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_segment_collection-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_segment_collection.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_slider_control-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_slider_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_slider_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_spin_box_control-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_spin_box_control.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_spin_box_control.png -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_decoder-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_decoder.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_encoder-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_encoder.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_file_properties-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_file_properties.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_filter-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_filter.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_filter_collection-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_filter_collection.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_output-members.html -%%QT4%%share/avidemux6/help/QtScriptQT4/class_video_output.html -%%QT4%%share/avidemux6/help/QtScriptQT4/classes.html -%%QT4%%share/avidemux6/help/QtScriptQT4/closed.png -%%QT4%%share/avidemux6/help/QtScriptQT4/doxygen.css -%%QT4%%share/avidemux6/help/QtScriptQT4/dynsections.js -%%QT4%%share/avidemux6/help/QtScriptQT4/examples.html -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2blank.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2cl.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2doc.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2folderclosed.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2folderopen.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2lastnode.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2link.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2mlastnode.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2mnode.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2mo.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2node.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2ns.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2plastnode.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2pnode.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2splitbar.png -%%QT4%%share/avidemux6/help/QtScriptQT4/ftv2vertline.png -%%QT4%%share/avidemux6/help/QtScriptQT4/functions.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x62.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x64.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x65.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x67.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x68.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x69.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x6a.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x6c.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x6e.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x6f.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x70.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x71.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x72.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x74.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x75.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x76.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_0x77.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_enum.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_eval.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_func.html -%%QT4%%share/avidemux6/help/QtScriptQT4/functions_prop.html -%%QT4%%share/avidemux6/help/QtScriptQT4/group__global_functions.html -%%QT4%%share/avidemux6/help/QtScriptQT4/hierarchy.html -%%QT4%%share/avidemux6/help/QtScriptQT4/jquery.js -%%QT4%%share/avidemux6/help/QtScriptQT4/modules.html -%%QT4%%share/avidemux6/help/QtScriptQT4/nav_f.png -%%QT4%%share/avidemux6/help/QtScriptQT4/nav_g.png -%%QT4%%share/avidemux6/help/QtScriptQT4/nav_h.png -%%QT4%%share/avidemux6/help/QtScriptQT4/open.png -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_62.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_62.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_63.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_64.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_64.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_65.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_65.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_66.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_67.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_67.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_68.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_68.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_69.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_69.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6a.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6a.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6c.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6c.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6d.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6e.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6e.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6f.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_6f.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_70.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_70.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_71.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_71.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_72.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_72.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_73.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_74.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_74.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_75.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_75.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_76.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_76.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_77.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/all_77.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_63.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_64.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_64.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_65.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_65.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_66.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_6c.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_6c.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_6d.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_73.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_76.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/classes_76.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/close.png -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_63.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_66.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_67.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_67.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_69.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_69.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_6d.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_6f.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_6f.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_70.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_70.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enums_73.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_62.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_62.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_63.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_64.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_64.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_65.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_65.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_66.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_68.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_68.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_69.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_69.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6a.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6a.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6c.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6c.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6d.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6e.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6e.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6f.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_6f.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_70.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_70.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_72.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_72.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_73.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_74.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_74.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_75.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_75.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_77.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/enumvalues_77.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_63.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_64.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_64.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_65.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_65.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_66.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_69.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_69.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_6c.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_6c.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_6d.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_6f.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_6f.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_70.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_70.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_72.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_72.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_73.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_74.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_74.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_75.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_75.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_77.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/functions_77.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/groups_67.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/groups_67.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/mag_sel.png -%%QT4%%share/avidemux6/help/QtScriptQT4/search/nomatches.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/pages_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/pages_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_61.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_61.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_62.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_62.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_63.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_63.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_64.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_64.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_65.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_65.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_66.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_66.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_67.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_67.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_68.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_68.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_69.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_69.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6c.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6c.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6d.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6d.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6e.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6e.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6f.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_6f.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_70.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_70.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_71.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_71.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_72.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_72.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_73.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_73.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_74.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_74.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_76.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_76.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_77.html -%%QT4%%share/avidemux6/help/QtScriptQT4/search/properties_77.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/search.css -%%QT4%%share/avidemux6/help/QtScriptQT4/search/search.js -%%QT4%%share/avidemux6/help/QtScriptQT4/search/search_l.png -%%QT4%%share/avidemux6/help/QtScriptQT4/search/search_m.png -%%QT4%%share/avidemux6/help/QtScriptQT4/search/search_r.png -%%QT4%%share/avidemux6/help/QtScriptQT4/sync_off.png -%%QT4%%share/avidemux6/help/QtScriptQT4/sync_on.png -%%QT4%%share/avidemux6/help/QtScriptQT4/tab_a.png -%%QT4%%share/avidemux6/help/QtScriptQT4/tab_b.png -%%QT4%%share/avidemux6/help/QtScriptQT4/tab_h.png -%%QT4%%share/avidemux6/help/QtScriptQT4/tab_s.png -%%QT4%%share/avidemux6/help/QtScriptQT4/tabs.css