summaryrefslogtreecommitdiff
path: root/multimedia/transcode
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/transcode')
-rw-r--r--multimedia/transcode/Makefile306
-rw-r--r--multimedia/transcode/distinfo1
-rw-r--r--multimedia/transcode/files/patch-bbmpeg:mplex.h11
-rw-r--r--multimedia/transcode/files/patch-ffmpeg:libavcodec:mem.c11
-rw-r--r--multimedia/transcode/files/patch-libtool24
-rw-r--r--multimedia/transcode/files/patch-src:filter:preview:display.h16
-rw-r--r--multimedia/transcode/files/patch-src:filter:preview:filter_preview.h11
-rw-r--r--multimedia/transcode/files/patch-src:filter:preview:pv.c29
-rw-r--r--multimedia/transcode/files/patch-src:filter:subtitler:frame_list.c13
-rw-r--r--multimedia/transcode/pkg-descr21
-rw-r--r--multimedia/transcode/pkg-plist186
11 files changed, 0 insertions, 629 deletions
diff --git a/multimedia/transcode/Makefile b/multimedia/transcode/Makefile
deleted file mode 100644
index f5fcea970818..000000000000
--- a/multimedia/transcode/Makefile
+++ /dev/null
@@ -1,306 +0,0 @@
-# New ports collection makefile for: transcode
-# Date created: 17 December 2001
-# Whom: Hendrik Scholz <hendrik@scholz.net>
-#
-# $FreeBSD$
-#
-
-PORTNAME= transcode
-PORTVERSION= 0.6.3
-CATEGORIES= graphics
-MASTER_SITES= http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/pre/
-
-MAINTAINER= hendrik@scholz.net
-COMMENT= A text-console utility for video stream processing
-
-LIB_DEPENDS= dvdread.3:${PORTSDIR}/multimedia/libdvdread \
- gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \
- jpeg.9:${PORTSDIR}/graphics/jpeg
-
-USE_XLIB= yes
-USE_GNOMENG= yes
-USE_GNOME= gtk12
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= CFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lgnugetopt" \
- SDL_CONFIG="${LOCALBASE}/bin/sdl11-config"
-USE_REINPLACE= yes
-
-MAN1= avifix.1 avimerge.1 avisplit.1 avisync.1 tccat.1 tcdemux.1 \
- tcprobe.1 tcscan.1 transcode.1 tcextract.1 tcdecode.1 tcmodinfo.1
-
-.include <bsd.port.pre.mk>
-
-.if exists(${LOCALBASE}/lib/libMagick.so)
-WITH_IMAGEMAGICK= yes
-.endif
-
-.if exists(${LOCALBASE}/bin/nasm)
-WITH_NASM= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libaviplay.so)
-WITH_AVIFILE= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libSDL-1.1.so)
-WITH_SDL= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libxml2.so)
-WITH_LIBXML2= yes
-.endif
-
-.if exists(${LOCALBASE}/bin/ffmpeg)
-WITH_FFMPEG= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libdv.so)
-WITH_LIBDV= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libopenquicktime.so)
-WITH_OPENQUICKTIME= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libfame.so)
-WITH_FAME= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libxvidcore.so)
-WITH_XVID= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/liba52.so)
-.if exists(${LOCALBASE}/lib/liba52.la)
-LIBA52_DEP_LIBS!= ${GREP} dependency_libs ${LOCALBASE}/lib/liba52.la | ${CUT} -d \' -f 2
-.else
-LIBA52_DEP_LIBS=
-.endif
-WITH_LIBA52= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libmp3lame.so)
-WITH_LAME= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libogg.so)
-WITH_OGG= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/liblavplay.so)
-WITH_MJPEG= yes
-.endif
-
-.if defined(WITH_IMAGEMAGICK)
-LIB_DEPENDS+= Magick.5:${PORTSDIR}/graphics/ImageMagick
-PLIST_SUB+= WITH_IMAGEMAGICK=""
-.else
-CONFIGURE_ARGS+= --with-magick-mods=no
-PLIST_SUB+= WITH_IMAGEMAGICK="@comment "
-.endif
-
-.if defined(WITH_NASM)
-BUILD_DEPENDS+= ${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm
-ONLY_FOR_ARCHS= i386
-.endif
-
-.if defined(WITH_AVIFILE)
-LIB_DEPENDS+= aviplay:${PORTSDIR}/multimedia/avifile
-PLIST_SUB+= WITH_AVIFILE=""
-.else
-CONFIGURE_ARGS+= --with-avifile-mods=no \
- --enable-avifile6=no
-PLIST_SUB+= WITH_AVIFILE="@comment "
-WITHOUT_FFMPEG= YES
-.endif
-
-.if defined(WITH_SDL)
-LIB_DEPENDS+= SDL-1.1.5:${PORTSDIR}/devel/sdl12
-WITH_LIBDV= yes
-PLIST_SUB+= WITH_SDL=""
-.else
-PLIST_SUB+= WITH_SDL="@comment "
-.endif
-
-.if defined(WITH_LIBXML2)
-LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2
-PLIST_SUB+= WITH_LIBXML2=""
-.else
-PLIST_SUB+= WITH_LIBXML2="@comment "
-.endif
-
-.if defined(WITH_FFMPEG) && !defined(WITHOUT_FFMPEG)
-BUILD_DEPENDS+= ${LOCALBASE}/bin/ffmpeg:${PORTSDIR}/multimedia/ffmpeg
-PLIST_SUB+= WITH_FFMPEG=""
-.else
-PLIST_SUB+= WITH_FFMPEG="@comment "
-.endif
-
-.if defined(WITH_LIBDV)
-LIB_DEPENDS+= dv.3:${PORTSDIR}/multimedia/libdv
-PLIST_SUB+= WITH_LIBDV=""
-CONFIGURE_ARGS+= --with-pal-yuv=YV12
-.else
-CONFIGURE_ARGS+= --with-dv=no
-PLIST_SUB+= WITH_LIBDV="@comment "
-.endif
-
-.if defined(WITH_OPENQUICKTIME)
-LIB_DEPENDS+= openquicktime.0:${PORTSDIR}/multimedia/openquicktime
-.else
-CONFIGURE_ARGS+= --with-openqt=no
-.endif
-
-.if defined(WITH_FAME)
-LIB_DEPENDS+= fame-0.9:${PORTSDIR}/graphics/libfame
-PLIST_SUB+= WITH_FAME=""
-.else
-PLIST_SUB+= WITH_FAME="@comment "
-.endif
-
-.if defined(WITH_XVID)
-LIB_DEPENDS+= xvidcore.0:${PORTSDIR}/graphics/xvid
-PLIST_SUB+= WITH_XVID=""
-WITH_NASM= YES
-.else
-PLIST_SUB+= WITH_XVID="@comment "
-.endif
-
-.if defined(WITH_LIBA52)
-LIB_DEPENDS+= a52.0:${PORTSDIR}/audio/liba52
-CONFIGURE_ARGS+= --enable-liba52=yes
-PLIST_SUB+= WITH_LIBA52=""
-.else
-CONFIGURE_ARGS+= --with-a52=no \
- --enable-liba52=no
-PLIST_SUB+= WITH_LIBA52="@comment "
-.endif
-
-.if defined(WITH_LAME)
-LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame
-CONFIGURE_ARGS+= --with-lame-libs=${LOCALBASE}/lib
-PLIST_SUB+= WITH_LAME=""
-.else
-CONFIGURE_ARGS+= --with-lame=no
-PLIST_SUB+= WITH_LAME="@comment "
-.endif
-
-.if defined(WITH_OGG)
-LIB_DEPENDS+= ogg.4:${PORTSDIR}/audio/libogg
-CONFIGURE_ARGS+= --with-ogg=yes
-PLIST_SUB+= WITH_OGG=""
-.else
-PLIST_SUB+= WITH_OGG="@comment "
-.endif
-
-.if defined(WITH_MJPEG)
-LIB_DEPENDS+= lavplay-1.6.1:${PORTSDIR}/multimedia/mjpegtools
-PLIST_SUB+= WITH_MJPEG=""
-.else
-PLIST_SUB+= WITH_MJPEG="@comment "
-.endif
-
-pre-everything::
-.if !defined(WITH_OPTIMIZED_CFLAGS)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable extra optimizations by defining WITH_OPTIMIZED_CFLAGS."
-.endif
-.if !defined(WITH_IMAGEMAGICK)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable ImageMagick-dependent modules by defining"
- @${ECHO_MSG} "WITH_IMAGEMAGICK."
-.endif
-.if !defined(WITH_SDL)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable realtime-previewing by defining WITH_SDL."
- @${ECHO_MSG} "This implies WITH_LIBDV."
-.endif
-.if !defined(WITH_LIBXML2)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable libxml2-dependent modules by defining WITH_LIBXML2."
-.endif
-.if !defined(WITH_FFMPEG) || defined(WITHOUT_FFMEG)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable ffmpeg-dependent modules by defining WITH_FFMPEG."
-.endif
-.if !defined(WITH_LAME)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable lame-dependent modules by defining WITH_LAME."
- @${ECHO_MSG} "You will probably want to enable this, if you plan to"
- @${ECHO_MSG} "rip DVDs or dub videos."
-.endif
-.if !defined(WITH_LIBDV)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable libdv-support by defining WITH_LIBDV."
- @${ECHO_MSG} "You will probably want to enable this, if you plan to"
- @${ECHO_MSG} "transcode DV data from a digital videocamera."
-.endif
-.if !defined(WITH_LIBA52)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable liba52-support by defining WITH_LIBA52."
- @${ECHO_MSG} "You will probably want to enable this, if you plan to"
- @${ECHO_MSG} "rip DVDs."
-.endif
-.if !defined(WITH_AVIFILE)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable avifile-dependent modules by defining WITH_AVIFILE."
-.endif(WITH_AVIFILE)
-.if !defined(WITH_NASM)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable nasm dependent modules by defining WITH_NASM."
- @${ECHO_MSG} "This turns this into an i386-only port."
-.endif(WITH_NASM)
-.if !defined(WITH_OPENQUICKTIME)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable openquicktime-dependent modules by defining WITH_OPENQUICKTIME."
-.endif
-.if !defined(WITH_FAME)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable libfame-support by defining WITH_FAME."
-.endif
-.if !defined(WITH_XVID)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable xvid support by defining WITH_XVID."
- @${ECHO_MSG} "This implies WITH_NASM and turns this into an i386-only port."
- @${ECHO_MSG} "You will probably want to enable this, if you plan to"
- @${ECHO_MSG} "rip DVDs."
-.endif
-.if !defined(WITH_OGG)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable libogg support by defining WITH_OGG."
-.endif
-.if !defined(WITH_MJPEG)
- @${ECHO_MSG}
- @${ECHO_MSG} "You can enable support for the MJPEG toolkit by defining WITH_MJPEG"
-.endif
-
-post-patch:
-.if ${OSVERSION} <= 500027
- @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${REINPLACE_CMD} \
- -e 's|<stdint.h>|<inttypes.h>|'
-.endif
-.if !defined(WITH_OPTIMIZED_CFLAGS)
- @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${REINPLACE_CMD} \
- -e 's|-O[236]|${CFLAGS}|'
-.endif
- @${REINPLACE_CMD} -E -e 's|(seek)64|\1|' ${WRKSRC}/avilib/avidump.c
- @${REINPLACE_CMD} -E -e 's|<SDL/|<|' ${WRKSRC}/filter/preview/display.h
-
- @${REINPLACE_CMD} -E -e 's|(-la52)|\1 ${LIBA52_DEP_LIBS}|' \
- ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
-
-pre-configure:
- @${REINPLACE_CMD} -E -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
- @${REINPLACE_CMD} -E -e 's|-ldl||g' ${WRKSRC}/configure
- @${REINPLACE_CMD} -E -e 's|WRKSRC|${WRKSRC}|g' ${WRKSRC}/export/Makefile.in
-
-post-install:
-.if defined(WITH_XVID)
- @${LN} -sf ${LOCALBASE}/lib/libxvidcore.so \
- ${PREFIX}/lib/transcode/libxvidcore.so
-.endif
- @${RM} ${PREFIX}/lib/transcode/*.la
-
-.include <bsd.port.post.mk>
diff --git a/multimedia/transcode/distinfo b/multimedia/transcode/distinfo
deleted file mode 100644
index bddb3131accb..000000000000
--- a/multimedia/transcode/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (transcode-0.6.3.tar.gz) = 65f0982c73821add9b6b78b662496da0
diff --git a/multimedia/transcode/files/patch-bbmpeg:mplex.h b/multimedia/transcode/files/patch-bbmpeg:mplex.h
deleted file mode 100644
index 01f870c6a162..000000000000
--- a/multimedia/transcode/files/patch-bbmpeg:mplex.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- bbmpeg/mplex.h.orig Thu Jan 30 19:26:07 2003
-+++ bbmpeg/mplex.h Thu Jan 30 19:26:18 2003
-@@ -50,6 +50,8 @@
- Definitionen
- *************************************************************************/
-
-+#include <sys/types.h>
-+
- #define USER_DATA_START 0x000001b2
- #define SEQUENCE_HEADER 0x000001b3
- #define SEQUENCE_END 0x000001b7
diff --git a/multimedia/transcode/files/patch-ffmpeg:libavcodec:mem.c b/multimedia/transcode/files/patch-ffmpeg:libavcodec:mem.c
deleted file mode 100644
index a82054ab658e..000000000000
--- a/multimedia/transcode/files/patch-ffmpeg:libavcodec:mem.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- ffmpeg/libavcodec/mem.c.orig Thu Jan 30 19:58:35 2003
-+++ ffmpeg/libavcodec/mem.c Thu Jan 30 19:58:45 2003
-@@ -18,7 +18,7 @@
- */
- #include "avcodec.h"
- #ifdef HAVE_MALLOC_H
--#include <malloc.h>
-+#include <stdlib.h>
- #endif
-
- /* you can redefine av_malloc and av_free in your project to use your
diff --git a/multimedia/transcode/files/patch-libtool b/multimedia/transcode/files/patch-libtool
deleted file mode 100644
index 01d2a2defb72..000000000000
--- a/multimedia/transcode/files/patch-libtool
+++ /dev/null
@@ -1,24 +0,0 @@
---- libtool.orig Thu Oct 10 17:56:49 2002
-+++ libtool Mon Oct 28 21:56:19 2002
-@@ -2727,7 +2727,7 @@
- *-*-netbsd*)
- # Don't link with libc until the a.out ld.so is fixed.
- ;;
-- *-*-openbsd*)
-+ *-*-openbsd* | *-*-freebsd*)
- # Do not include libc due to us having libc/libc_r.
- ;;
- *)
-@@ -4496,10 +4496,12 @@
- fi
-
- # Install the pseudo-library for information purposes.
-+ if /usr/bin/false; then
- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
- instname="$dir/$name"i
- $show "$install_prog $instname $destdir/$name"
- $run eval "$install_prog $instname $destdir/$name" || exit $?
-+ fi
-
- # Maybe install the static library, too.
- test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/multimedia/transcode/files/patch-src:filter:preview:display.h b/multimedia/transcode/files/patch-src:filter:preview:display.h
deleted file mode 100644
index 907a66ab40cb..000000000000
--- a/multimedia/transcode/files/patch-src:filter:preview:display.h
+++ /dev/null
@@ -1,16 +0,0 @@
---- filter/preview/display.h.orig Fri Aug 9 10:41:59 2002
-+++ filter/preview/display.h Fri Aug 9 10:41:59 2002
-@@ -39,9 +39,11 @@
- #endif // HAVE_LIBXV
-
- #if HAVE_SDL
--#include <SDL/SDL.h>
--#include <SDL/SDL_syswm.h>
-+#include <SDL.h>
-+#include <SDL_syswm.h>
- #endif // HAVE_SDL
-+
-+#include <glib.h>
-
- #if HAVE_GTK
- #include <gtk/gtk.h>
diff --git a/multimedia/transcode/files/patch-src:filter:preview:filter_preview.h b/multimedia/transcode/files/patch-src:filter:preview:filter_preview.h
deleted file mode 100644
index 4b26f7234b1d..000000000000
--- a/multimedia/transcode/files/patch-src:filter:preview:filter_preview.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- filter/preview/filter_preview.h.orig Fri Aug 9 10:41:59 2002
-+++ filter/preview/filter_preview.h Fri Aug 9 10:41:59 2002
-@@ -10,6 +10,8 @@
- #include <sys/mman.h>
- #include <fcntl.h>
-
-+#include <glib.h>
-+
- #include <libdv/dv_types.h>
- #include <libdv/dv.h>
- #include "display.h"
diff --git a/multimedia/transcode/files/patch-src:filter:preview:pv.c b/multimedia/transcode/files/patch-src:filter:preview:pv.c
deleted file mode 100644
index 8c74a4a84c6e..000000000000
--- a/multimedia/transcode/files/patch-src:filter:preview:pv.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- filter/preview/pv.c.orig Mon Nov 4 18:38:27 2002
-+++ filter/preview/pv.c Mon Nov 4 18:39:27 2002
-@@ -38,7 +38,7 @@
- #include <sys/shm.h>
-
- #ifdef __FreeBSD__ /* We don't have on_exit() */
--dv_display_t *dv_dpy_on_exit_hack = NULL;
-+xv_display_t *xv_dpy_on_exit_hack = NULL;
- #endif
-
- #define XV_FORMAT_MASK 0x03
-@@ -128,7 +128,7 @@
- free(dv_dpy);
- dv_dpy = NULL;
- #ifdef __FreeBSD__
-- dv_dpy_on_exit_hack = NULL;
-+ xv_dpy_on_exit_hack = NULL;
- #endif
- } // xv_display_exit
-
-@@ -536,7 +536,7 @@
- }
-
- #ifdef __FreeBSD__
-- dv_dpy_on_exit_hack = dv_dpy;
-+ xv_dpy_on_exit_hack = dv_dpy;
- atexit(xv_display_on_exit_hack_handler);
- #else
- on_exit(xv_display_exit_handler, dv_dpy);
diff --git a/multimedia/transcode/files/patch-src:filter:subtitler:frame_list.c b/multimedia/transcode/files/patch-src:filter:subtitler:frame_list.c
deleted file mode 100644
index e4823a2b8dad..000000000000
--- a/multimedia/transcode/files/patch-src:filter:subtitler:frame_list.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- filter/subtitler/frame_list.c.orig Thu May 23 10:53:06 2002
-+++ filter/subtitler/frame_list.c Thu May 23 10:53:34 2002
-@@ -33,8 +33,8 @@
-
- char *strsave(char *s) /*save char array s somewhere*/
- {
--char *p, *malloc();
--if(p = malloc( strlen(s) + 1) ) strcpy(p, s);
-+char *p;
-+if(p = (char *)malloc( strlen(s) + 1) ) strcpy(p, s);
- return(p);
- }
-
diff --git a/multimedia/transcode/pkg-descr b/multimedia/transcode/pkg-descr
deleted file mode 100644
index 917d57aee78a..000000000000
--- a/multimedia/transcode/pkg-descr
+++ /dev/null
@@ -1,21 +0,0 @@
-transcode is a text-console utility for video stream processing,
-running on a platform that supports shared libraries and threads.
-Decoding and encoding is done by loading modules that are responsible
-for feeding transcode with raw video/audio streams (import modules)
-and encoding the frames (export modules).
-
-It supports elementary video and audio frame transformations,
-including de-interlacing or fast resizing of video frames and loading
-of external filters. A number of modules are included to enable
-import of DVDs on-the-fly, MPEG elementary (ES) or program streams
-(VOB), MPEG video, Digital Video (DV), YUV4MPEG streams, NuppelVideo
-file format and raw or compressed (pass-through) video frames and
-export modules for writing DivX;-), OpenDivX, DivX 4.xx or uncompressed
-AVI files with MPEG, AC3 (pass-through) or PCM audio. Additional
-export modules to write single frames (PPM) or YUV4MPEG streams are
-available, as well as an interface import module to the avifile
-library. It's modular concept is intended to provide flexibility
-and easy user extensibility to include other video/audio codecs or
-filetypes.
-
-WWW: http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/
diff --git a/multimedia/transcode/pkg-plist b/multimedia/transcode/pkg-plist
deleted file mode 100644
index 83c45f750be6..000000000000
--- a/multimedia/transcode/pkg-plist
+++ /dev/null
@@ -1,186 +0,0 @@
-bin/avifix
-bin/avimerge
-bin/avisplit
-bin/avisync
-bin/tccat
-bin/tcdecode
-bin/tcdemux
-bin/tcextract
-bin/tcmodinfo
-bin/tcmplex
-bin/tcprobe
-bin/tcscan
-bin/transcode
-%%WITH_LIBA52%%lib/transcode/a52_decore.so
-lib/transcode/af6_decore.so
-lib/transcode/export_af6.conf
-%%WITH_AVIFILE%%lib/transcode/export_af6.so
-lib/transcode/export_divx4.so
-lib/transcode/export_divx4raw.so
-lib/transcode/export_divx5.so
-lib/transcode/export_divx5raw.so
-lib/transcode/export_ffmpeg.so
-lib/transcode/export_lame.so
-lib/transcode/export_sampeg.so
-%%WITH_LIBDV%%lib/transcode/export_dv.so
-%%WITH_LIBDV%%lib/transcode/export_dvraw.so
-%%WITH_FAME%%lib/transcode/export_fame.so
-%%WITH_IMAGEMAGICK%%lib/transcode/export_im.so
-%%WITH_MJPEG%%lib/transcode/export_mjpeg.so
-lib/transcode/export_mpeg.so
-lib/transcode/export_net.so
-lib/transcode/export_null.so
-%%WITH_OGG%%lib/transcode/export_ogg.so
-lib/transcode/export_pcm.so
-lib/transcode/export_ppm.so
-lib/transcode/export_raw.so
-lib/transcode/export_toolame.so
-lib/transcode/export_wav.so
-lib/transcode/export_xvid.so
-lib/transcode/export_xvidcvs.so
-lib/transcode/export_xvidraw.so
-lib/transcode/filter_29to23.so
-lib/transcode/filter_32detect.so
-lib/transcode/filter_32drop.so
-lib/transcode/filter_aclip.so
-lib/transcode/filter_astat.so
-lib/transcode/filter_clone.so
-lib/transcode/filter_cshift.so
-lib/transcode/filter_cut.so
-lib/transcode/filter_decimate.so
-lib/transcode/filter_dilyuvmmx.so
-lib/transcode/filter_divxkey.so
-lib/transcode/filter_dnr.so
-lib/transcode/filter_extsub.so
-lib/transcode/filter_extsub2.so
-lib/transcode/filter_fields.so
-lib/transcode/filter_invert.so
-lib/transcode/filter_ivtc.so
-%%WITH_IMAGEMAGICK%%lib/transcode/filter_logo.so
-lib/transcode/filter_mask.so
-lib/transcode/filter_normalize.so
-lib/transcode/filter_null.so
-%%WITH_SDL%%lib/transcode/filter_preview.so
-lib/transcode/filter_pv.so
-lib/transcode/filter_resample.so
-lib/transcode/filter_skip.so
-lib/transcode/filter_smartdeinter.so
-lib/transcode/filter_smooth.so
-lib/transcode/filter_subtitler.so
-lib/transcode/filter_tc_audio.so
-lib/transcode/filter_tc_video.so
-lib/transcode/filter_test.so
-lib/transcode/filter_testframe.so
-lib/transcode/filter_xsharpen.so
-lib/transcode/filter_yuvdenoise.so
-lib/transcode/filter_yuy2toyv12.so
-lib/transcode/filter_yuvmedian.so
-lib/transcode/filter_videocore.so
-lib/transcode/filter_list.awk
-lib/transcode/parse_csv.awk
-lib/transcode/import_ac3.so
-%%WITH_AVIFILE%%lib/transcode/import_af6.so
-lib/transcode/import_avi.so
-lib/transcode/import_divx.so
-lib/transcode/import_dv.so
-lib/transcode/import_dvd.so
-%%WITH_IMAGEMAGICK%%lib/transcode/import_im.so
-%%WITH_IMAGEMAGICK%%lib/transcode/import_imlist.so
-lib/transcode/import_ffmpeg.so
-lib/transcode/import_lav.so
-%%WITH_MJPEG%%lib/transcode/import_mjpeg.so
-lib/transcode/import_mpeg2.so
-%%WITH_LAME%%lib/transcode/import_mp3.so
-lib/transcode/import_mplayer.so
-lib/transcode/import_net.so
-lib/transcode/import_null.so
-lib/transcode/import_nuv.so
-lib/transcode/import_nvrec.so
-%%WITH_OGG%%lib/transcode/import_ogg.so
-lib/transcode/import_raw.so
-lib/transcode/import_rawlist.so
-lib/transcode/import_vdrac3.so
-lib/transcode/import_vob.so
-%%WITH_LIBXML2%%lib/transcode/import_xml.so
-lib/transcode/import_xvid.so
-lib/transcode/import_yuv.so
-lib/transcode/import_yuv4mpeg.so
-lib/transcode/libioaux.so.0
-%%WITH_XVID%%lib/transcode/libxvidcore.so
-lib/transcode/xvid.cfg
-lib/transcode/libioaux.so
-share/doc/transcode/README.cluster
-share/doc/transcode/README.rip
-share/doc/transcode/README.sync
-share/doc/transcode/README.vcd
-share/doc/transcode/clone.txt
-share/doc/transcode/export_mpeg.txt
-share/doc/transcode/export-API.txt
-share/doc/transcode/filter_dnr.txt
-share/doc/transcode/filter_logo.txt
-share/doc/transcode/filter_yuvdenoise.txt
-share/doc/transcode/filter-socket.txt
-share/doc/transcode/filter-API.txt
-share/doc/transcode/html/about.html
-share/doc/transcode/html/anim.html
-share/doc/transcode/html/cluster_guide.txt
-share/doc/transcode/html/core.html
-share/doc/transcode/html/dv.html
-share/doc/transcode/html/dvd.html
-share/doc/transcode/html/export_af6.html
-share/doc/transcode/html/export_divx.html
-share/doc/transcode/html/export_iv50.html
-share/doc/transcode/html/export_null.html
-share/doc/transcode/html/export_raw.html
-share/doc/transcode/html/export_divx4.php
-share/doc/transcode/html/export_divx5.php
-share/doc/transcode/html/export_fame.php
-share/doc/transcode/html/export_ogg.php
-share/doc/transcode/html/export_opendivx.php
-share/doc/transcode/html/export_xvid.php
-share/doc/transcode/html/faq.html
-share/doc/transcode/html/filter.html
-share/doc/transcode/html/import_ac3.html
-share/doc/transcode/html/import_avi.html
-share/doc/transcode/html/import_dv.html
-share/doc/transcode/html/import_dvd.html
-share/doc/transcode/html/import_mp3.html
-share/doc/transcode/html/import_mpeg2.html
-share/doc/transcode/html/import_mpeg3.html
-share/doc/transcode/html/import_null.html
-share/doc/transcode/html/import_nuv.html
-share/doc/transcode/html/import_ogg.php
-share/doc/transcode/html/import_raw.html
-share/doc/transcode/html/import_vob.html
-share/doc/transcode/html/import_yuv4mpeg.html
-share/doc/transcode/html/index.html
-share/doc/transcode/html/intro.html
-share/doc/transcode/html/mes0-00000.png
-share/doc/transcode/html/mes4-00000.png
-share/doc/transcode/html/mes5-00000.png
-share/doc/transcode/html/mes6-00000.png
-share/doc/transcode/html/mes7-00000.png
-share/doc/transcode/html/misc.html
-share/doc/transcode/html/modules.html
-share/doc/transcode/html/mpeg.html
-share/doc/transcode/html/new.png
-share/doc/transcode/html/options.html
-share/doc/transcode/html/other.html
-share/doc/transcode/html/post.html
-share/doc/transcode/html/pre.html
-share/doc/transcode/html/smart.html
-share/doc/transcode/html/sorry.html
-share/doc/transcode/html/sub0-00000.png
-share/doc/transcode/html/sub1-00000.png
-share/doc/transcode/html/sub2-00000.png
-share/doc/transcode/html/sub3-00000.png
-share/doc/transcode/html/subtitles.html
-share/doc/transcode/html/table.php
-share/doc/transcode/html/tc.png
-share/doc/transcode/import-API.txt
-share/doc/transcode/import-xml.txt
-share/doc/transcode/import_nvrec.txt
-share/doc/transcode/template.cfg.txt
-@dirrm share/doc/transcode/html
-@dirrm share/doc/transcode
-@dirrm lib/transcode