Re: Transcode and FC9
Fabio Bizzi <[email protected]> Mon, 16 Jun 2008 18:42:14 +0200
| Newsgroups | gmane.linux.freshrpms.user |
|---|---|
| Organization | bizzi.org |
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format.
--------------070705000001040301060905
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Hi David,
Ok, partially solved! :)
The issues are:
- Wrong include path in the ffmpeg patch
- Nuppelvideo plugin with double assignment on the __32 bit variables
- Wrong path in the FFMPEG file /usr/include/ffmpeg/libavcodec/avcodec.h
1) I have corrected the include ffmpeg paths in the file
transcode-1.0.5-ffmpeg.patch (attached)
2) modified the file /usr/include/ffmpeg/libavcodec/avcodec.h
Line 30:
from this:
#include "libavutil/avutil.h"
to this:
#include "ffmpeg/libavutil/avutil.h"
3) modified the spec file to avoid the build of the NupperVideo plugin
with --disable-nuv (the file is attached)
I know that excluding the NuppelVideo plugin is a dirty solution, but I
don't know how to fix the double declaration problem, for now it could
be better to have a transcode without the nuppelvideo plugin that have
nothing! :)
For the ffmpeg wrong path in the avcodec.h file, I suppose that the rpm
of ffmpeg-devel should be fixed and rebuilt.
Matthias can you build now an "official" transcode rpm? :)
Thanks to everybody!
Cheers.
Fabio.
David Timms ha scritto:
> Fabio Bizzi wrote:
>> Thank you Mathias,
>>
>> If I want to try it out, what Have I to do?
>> Have I to install all the required transcode packages and after try to
>> build the rpm from the source rpm aivailable from you?
> go to package page at:
> http://sulphur.freshrpms.net/rpm.html?id=299
>
> download the srpm
>
> follow: http://fedoraproject.org/wiki/Docs/CustomKernel, but replace
> kernel with the transcode source rpm. Go through parts that make a dev
> environment, install the src rpm {and build requires}, and try building,
>
> some general guides:
> http://docs.fedoraproject.org/drafts/rpm-guide-en/ch-creating-rpms.html
>
> The errors that you probably will get are what is stopping the x86
> build. If you can't work it out try posting the error message bits of
> the rpmbuild process; someone might have ideas to try...
>
--------------070705000001040301060905
Content-Type: text/plain;
name="transcode-1.0.5-ffmpeg.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="transcode-1.0.5-ffmpeg.patch"
diff -Naupr transcode-1.0.5.orig/configure.in transcode-1.0.5/configure.in
--- transcode-1.0.5.orig/configure.in 2008-01-05 15:37:14.000000000 +0100
+++ transcode-1.0.5/configure.in 2008-05-13 01:29:14.000000000 +0200
@@ -611,14 +611,14 @@ AC_ARG_ENABLE(libavcodec-static,
esac],
[enable_libavcodec_static=no])
LIBAVCODEC_EXTRA_LIBS="$LIBAVCODEC_EXTRA_LIBS $($PKG_CONFIG --libs libavcodec)"
-TC_PKG_CHECK(libavcodec, required, LIBAVCODEC, no, [ffmpeg/avcodec.h],
+TC_PKG_CHECK(libavcodec, required, LIBAVCODEC, no, [ffmpeg/libavcodec/avcodec.h],
avcodec, avcodec_thread_init, FFMpeg, [http://www.ffmpeg.org/])
if test x"$have_libavcodec" = x"yes" ; then
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $LIBAVCODEC_CFLAGS"
AC_TRY_RUN([
#include <stdio.h>
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
int
main()
{
@@ -640,8 +640,8 @@ main()
],
[LIBAVCODEC_VERSION="`./conftest$ac_exeext | sed -ne 's,VER=\(.*\),\1,p'`"
LIBAVCODEC_BUILD="`./conftest$ac_exeext | sed -ne 's,BUILD=\(.*\),\1,p'`"],
- [TC_PKG_ERROR(libavcodec, ffmpeg/avcodec.h, required, libavcodec, [http://www.ffmpeg.org],
- [cannot compile ffmpeg/avcodec.h])],
+ [TC_PKG_ERROR(libavcodec, ffmpeg/libavcodec/avcodec.h, required, libavcodec, [http://www.ffmpeg.org],
+ [cannot compile ffmpeg/libavcodec/avcodec.h])],
[echo $ac_n "cross compiling; assumed OK... $ac_c"
LIBAVCODEC_VERSION=""
LIBAVCODEC_BUILD=""])
@@ -653,7 +653,7 @@ main()
dnl $_w_libavcodec_l comes from TC_PKG_CHECK()
LIBS="$LIBS $w_libavcodec_l${deflib}/libavcodec.a $LIBAVCODEC_EXTRA_LIBS"
AC_TRY_LINK([
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
],[
AVCodecContext *ctx = (void *)0;
avcodec_thread_init(ctx, 0);
@@ -820,7 +820,7 @@ AM_CONDITIONAL(HAVE_IBP, test x"$have_ib
dnl
dnl libpostproc
dnl
-TC_PKG_CHECK(libpostproc, no, LIBPOSTPROC, no, postprocess.h,
+TC_PKG_CHECK(libpostproc, no, LIBPOSTPROC, no, ffmpeg/libpostproc/postprocess.h,
postproc, pp_postprocess, libpostproc, [http://www.ffmpeg.org/])
TC_PKG_HAVE(libpostproc, LIBPOSTPROC)
diff -Naupr transcode-1.0.5.orig/export/aud_aux.c transcode-1.0.5/export/aud_aux.c
--- transcode-1.0.5.orig/export/aud_aux.c 2007-08-06 11:56:57.000000000 +0200
+++ transcode-1.0.5/export/aud_aux.c 2008-05-13 01:29:14.000000000 +0200
@@ -31,7 +31,7 @@
#include <inttypes.h>
#include <assert.h>
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
#include "aud_aux.h"
#include "ac3.h"
diff -Naupr transcode-1.0.5.orig/export/export_ffmpeg.c transcode-1.0.5/export/export_ffmpeg.c
--- transcode-1.0.5.orig/export/export_ffmpeg.c 2007-11-17 10:35:31.000000000 +0100
+++ transcode-1.0.5/export/export_ffmpeg.c 2008-05-13 01:29:14.000000000 +0200
@@ -36,7 +36,7 @@
#include "vid_aux.h"
// FIXME
#undef EMULATE_FAST_INT
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
#if !defined(INFINITY) && defined(HUGE_VAL)
#define INFINITY HUGE_VAL
diff -Naupr transcode-1.0.5.orig/export/ffmpeg_cfg.h transcode-1.0.5/export/ffmpeg_cfg.h
--- transcode-1.0.5.orig/export/ffmpeg_cfg.h 2004-10-18 04:04:14.000000000 +0200
+++ transcode-1.0.5/export/ffmpeg_cfg.h 2008-05-13 01:29:14.000000000 +0200
@@ -2,7 +2,7 @@
#define __FFMPEG_CFG_H
#include "libioaux/configs.h"
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
//char *lavc_param_vcodec = "mpeg4";
//extern int lavc_param_vbitrate;
diff -Naupr transcode-1.0.5.orig/filter/filter_resample.c transcode-1.0.5/filter/filter_resample.c
--- transcode-1.0.5.orig/filter/filter_resample.c 2005-07-04 09:23:01.000000000 +0200
+++ transcode-1.0.5/filter/filter_resample.c 2008-05-13 01:29:14.000000000 +0200
@@ -30,7 +30,7 @@
#include "filter.h"
#include "optstr.h"
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
static char * resample_buffer = NULL;
static int bytes_per_sample;
diff -Naupr transcode-1.0.5.orig/filter/pp/filter_pp.c transcode-1.0.5/filter/pp/filter_pp.c
--- transcode-1.0.5.orig/filter/pp/filter_pp.c 2005-07-04 09:23:01.000000000 +0200
+++ transcode-1.0.5/filter/pp/filter_pp.c 2008-05-13 01:29:34.000000000 +0200
@@ -35,7 +35,7 @@
#include <ctype.h>
#include <inttypes.h>
-#include "postprocess.h"
+#include "ffmpeg/libpostproc/postprocess.h"
static pp_mode_t *mode[MAX_FILTER];
static pp_context_t *context[MAX_FILTER];
diff -Naupr transcode-1.0.5.orig/import/decode_lavc.c transcode-1.0.5/import/decode_lavc.c
--- transcode-1.0.5.orig/import/decode_lavc.c 2005-07-04 09:23:01.000000000 +0200
+++ transcode-1.0.5/import/decode_lavc.c 2008-05-13 01:29:14.000000000 +0200
@@ -31,7 +31,7 @@
#ifdef EMULATE_FAST_INT
#undef EMULATE_FAST_INT
#endif
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
#include "yuv2rgb.h"
#define READ_BUFFER_SIZE (10*1024*1024)
diff -Naupr transcode-1.0.5.orig/import/import_ffmpeg.c transcode-1.0.5/import/import_ffmpeg.c
--- transcode-1.0.5.orig/import/import_ffmpeg.c 2007-10-09 20:32:22.000000000 +0200
+++ transcode-1.0.5/import/import_ffmpeg.c 2008-05-13 01:29:14.000000000 +0200
@@ -38,7 +38,7 @@ static int capability_flag = TC_CAP_YUV
// FIXME
#undef EMULATE_FAST_INT
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
#include "libvo/yuv2rgb.h"
#include "avilib/avilib.h"
diff -Naupr transcode-1.0.5.orig/src/transcode.c transcode-1.0.5/src/transcode.c
--- transcode-1.0.5.orig/src/transcode.c 2008-01-05 15:37:15.000000000 +0100
+++ transcode-1.0.5/src/transcode.c 2008-05-13 01:29:14.000000000 +0200
@@ -4609,7 +4609,7 @@ int main(int argc, char *argv[]) {
// unneeded object files from a .a file.
#if 0
-#include <ffmpeg/avcodec.h>
+#include <ffmpeg/libavcodec/avcodec.h>
void dummy_avcodec(void) {
AVCodecContext *ctx = NULL;
--------------070705000001040301060905
Content-Type: text/plain;
name="transcode.spec"
Content-Disposition: inline;
filename="transcode.spec"
Content-Transfer-Encoding: quoted-printable
Summary: Linux video stream processing utility
Name: transcode
Version: 1.0.5
Release: 1%{?dist}
License: GPL
Group: Applications/Multimedia
URL: http://www.transcoding.org/
Source: http://fromani.exit1.org/transcode-%{version}.tar.bz2
Patch0: transcode-1.0.3-lzo2.patch
Patch1: transcode-1.0.5-ffmpeg.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: SDL-devel
BuildRequires: libxml2-devel
BuildRequires: libjpeg-devel
BuildRequires: freetype-devel >=3D 2.0
BuildRequires: libogg-devel, libvorbis-devel
BuildRequires: libdv-devel
BuildRequires: bzip2-devel
BuildRequires: ed
BuildRequires: lzo-devel
BuildRequires: libpng-devel
BuildRequires: mpeg2dec-devel
BuildRequires: ffmpeg-devel
BuildRequires: libXv-devel, libXaw-devel, libXpm-devel
%{!?_without_postproc:BuildRequires: ffmpeg-libpostproc-devel}
%{!?_without_lame:BuildRequires: lame-devel >=3D 3.89}
%{!?_without_theora:BuildRequires: libtheora-devel}
%{!?_without_dvdread:BuildRequires: libdvdread-devel}
%{!?_without_quicktime:BuildRequires: libquicktime-devel}
%{!?_without_a52:BuildRequires: a52dec-devel >=3D 0.7.3}
%{!?_without_mpeg3:BuildRequires: libmpeg3-devel}
%{!?_without_mjpeg:BuildRequires: mjpegtools-devel}
%{!?_without_libfame:BuildRequires: libfame-devel}
%{!?_without_magick:BuildRequires: ImageMagick-devel >=3D 5.4.3}
# Non configure options
%{!?_without_xvidcore:BuildRequires: xvidcore-devel}
# For the configure.in patch
BuildRequires: autoconf, automake, libtool
Conflicts: perl-Video-DVDRip < 0.51.2
%description
Transcode is a linux text-console utility for video stream processing.
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.
Please see the included README file for more.
Available rpmbuild rebuild options :
--without : lame theora dvdread quicktime a52 mpeg3 mjpeg libfame magick
nasm postproc xvidcore
%prep
%setup -q
%patch0 -p1 -b .lzo2
%patch1 -p1 -b .ffmpeg
autoreconf
%build
# This is required to get ffmpeg includes to work
export CFLAGS=3D"%{optflags} -I%{_includedir}/ffmpeg -DSDL_VIDEO_DRIVER_X=
11"
# This is required for libmpeg3 to link properly
export LIBMPEG3_EXTRA_LIBS=3D"-lpthread"
%configure \
--enable-netstream \
--enable-v4l \
%{!?_without_postproc:--enable-libpostproc} \
--enable-freetype2 \
%{?_without_lame:--disable-lame} \
--enable-ogg \
--enable-vorbis \
%{!?_without_theora:--enable-theora} \
%{?_without_dvdread:--disable-dvdread} \
--enable-libdv \
%{!?_without_quicktime:--enable-libquicktime} \
--enable-lzo \
--with-lzo-includes=3D%{_includedir}/lzo \
%{!?_without_a52:--enable-a52 --enable-a52-default-decoder} \
%{!?_without_mpeg3:--enable-libmpeg3} \
--enable-libxml2 \
%{!?_without_mjpeg:--enable-mjpegtools} \
--enable-sdl \
--enable-gtk \
--disable-nuv \
%{!?_without_libfame:--enable-libfame} \
%{!?_without_magick:--enable-imagemagick}
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot} _docs
%makeinstall \
docsdir=3D"../_docs/"
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README TODO _docs/*
%{_bindir}/*
%dir %{_libdir}/transcode/
%{_libdir}/transcode/*.so
%config %{_libdir}/transcode/xvid2.cfg
%config %{_libdir}/transcode/xvid3.cfg
%config %{_libdir}/transcode/xvid4.cfg
%config %{_libdir}/transcode/export_af6.conf
%{_libdir}/transcode/filter_list.awk
%{_libdir}/transcode/parse_csv.awk
%exclude %{_libdir}/transcode/*.la
%{_mandir}/man1/*
%changelog
* Tue May 13 2008 Matthias Saou <http://freshrpms.net/> 1.0.5-1
- Update to 1.0.5.
- Include ffmpeg patch to build against the latest snapshot.
* Sat Sep 22 2007 Dag Wieers <[email protected]> - 1.0.4-1
- Updated to release 1.0.4.
* Fri Apr 20 2007 Matthias Saou <http://freshrpms.net/> 1.0.3-1
- Update to 1.0.3.
- Update lzo2 patch.
- Remove all now unneeded patches.
* Thu Jan 11 2007 Dag Wieers <[email protected]> - 1.0.2-12
- Rebuild against newer ffmpeg and mjpegtools.
* Tue Sep 19 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-11
- Add patch for recent ffmpeg (libavcodec) versions detection.
* Mon Jul 31 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-10
- Add lzo2 patch from Gentoo.
- Add patch to compile against libmpeg3 1.7 (mpeg3_open error_return chan=
ge).
* Mon Jun 19 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-9
- Include transcode-1.0.x-filter-patch.txt from dvd::rip to fix filters a=
nd
previews in dvd::rip.
* Thu Jun 15 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-8
- Rebuild on FC development for the ImageMagick update (.so.10).
- Add -DSDL_VIDEO_DRIVER_X11 to the CFLAGS to fix building on FC developm=
ent.
* Tue Mar 28 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-7
- Include transcode-1.0.2-filter_compare-fixes-try1.patch and
transcode-1.0.2-filter_logo-hangup-try1.patch to fix hang.
* Thu Mar 23 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-6
- Rebuild against mjpegtools 1.8 and not 1.9, although 1.9 seems like it =
will
have to be introduced at some point to fix compatibility with the lates=
t
libquicktime 0.9.8, and fix the ppc build.
* Wed Mar 22 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-5
- Add missing modular X build requirements.
* Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-4
- Release bump to drop the disttag number in FC5 build.
* Fri Jan 13 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-3
- Add modular xorg build conditional.
- No longer override pkgdir and MOD_PATH, it's not needed anymore.
* Fri Dec 9 2005 Matthias Saou <http://freshrpms.net/> 1.0.2-2
- Rebuild against mjpegtools 1.8.0.
* Thu Dec 8 2005 Matthias Saou <http://freshrpms.net/> 1.0.2-1
- Update to 1.0.2.
- No longer explicitly disable MMX, it builds again now.
* Tue Aug 16 2005 Matthias Saou <http://freshrpms.net/> 1.0.0-2
- Rebuild against new mjpegtools.
* Mon Jul 18 2005 Matthias Saou <http://freshrpms.net/> 1.0.0-1
- Update to 1.0.0.
* Tue Jun 28 2005 Matthias Saou <http://freshrpms.net/> 1.0.0-0.1.rc1
- Update to 1.0.0rc1.
* Sun Apr 17 2005 Matthias Saou <http://freshrpms.net/> 1.0.0-0.1.beta3
- Update to 1.0.0beta3 (not the released tarball, a CVS checkout with fix=
es).
- Explicitly disable MMX for now, it makes the build fail :-(
- Add libpng-devel build requirement (libquicktime test fails otherwise..=
.).
- Explicitly change postproc and freetype2 configure options.
- Mark all cfg and config files in libdir as %%config (but not noreplace)=
.
* Mon Dec 13 2004 Matthias Saou <http://freshrpms.net/> 0.6.14-1
- Update to 0.6.14 final.
- Override pkgdir and MOD_PATH to fix lib vs. lib64.
* Mon Nov 15 2004 Matthias Saou <http://freshrpms.net/> 0.6.14-0.pre1.1
- Rebuild with mjpegtools (fixed at last) support on FC3.
* Thu Nov 11 2004 Matthias Saou <http://freshrpms.net/> 0.6.14-0.pre1.0
- Update to 0.6.14pre1.
* Fri Oct 29 2004 Matthias Saou <http://freshrpms.net/> 0.6.13-0
- Update to 0.6.13.
- Reworked the configure options, build reqs and rpmbuild conditionals.
- Remove gcc 2.96 patch, it doesn't apply anymore.
- Include bitstream patch to fix dvd::rip usage.
- Re-add ffmpeg-devel build dep, it builds shared again now.
* Fri Jul 30 2004 Dag Wieers <[email protected]> - 0.6.12-6
- Added patch for building with gcc < 3. (Edward Rudd, ATbz #183)
* Fri Jul 23 2004 Matthias Saou <http://freshrpms.net/> 0.6.12-6
- Added ed build requirement for x86_64 build to succeed...
- Fix missing \ to configure lines.
- Remove explicit binary dependencies.
* Tue Jul 20 2004 Dag Wieers <[email protected]> - 0.6.12-6
- Rebuild for x86_64 with quicktime support.
* Wed May 19 2004 Matthias Saou <http://freshrpms.net/> 0.6.12-5
- Rebuild for Fedora Core 2.
- Remove explicit stripping, it goes into the debuginfo package.
- Change some of the obvious conditional builds to be static (ogg...).
- Make xvid4 the default instead of xvid2.
- Added theora and libmpeg3 support.
- Added libexif-devel build requirement, although ImageMagick-devel shoul=
d.
* Fri Apr 16 2004 Matthias Saou <http://freshrpms.net/> 0.6.12-3
- Rebuild against new libdv.
* Thu Mar 25 2004 Matthias Saou <http://freshrpms.net/> 0.6.12-2
- Fix bzip2-devel dependency.
* Sat Jan 10 2004 Matthias Saou <http://freshrpms.net/> 0.6.12-1
- Update to 0.6.12.
* Mon Nov 10 2003 Matthias Saou <http://freshrpms.net/> 0.6.11-1
- Rebuild for Fedora Core 1.
- Update to 0.6.11.
- Remove ffmpeg, looks like a snapshot is included now.
- libpostproc is currently broken, "undefined reference to 'fast_memcpy'"=
:-(
* Tue Sep 9 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.10.
* Sun Aug 24 2003 Matthias Saou <http://freshrpms.net/>
- Added bzip2-devel ImageMagick dependency.
* Fri Aug 8 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.9.
* Tue Jul 8 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.8.
* Thu Jul 3 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.7.
- Removed obsolete lame patch.
* Fri May 23 2003 Matthias Saou <http://freshrpms.net/>
- Added aud_aux-lame-enoding-error-1.patch to fix lame encoding problems.
* Wed May 21 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.6.
- Removed the snapshot macro stuff, as future releases won't need it.
- Added "--without text" option for the new freetype2 support.
* Sat May 10 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.5.20030510.
* Fri May 2 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.4 final.
* Wed Apr 9 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.4.20030409.
- Change mplayer dep to libpostproc.
- Re-enabled ImageMagick support by default, as it's fixed in RHL9.
- Removed obsoleted ffmpeg & xvid fix.
- Added libquicktime support and explicit xvidcore.
- Enable lzo by default.
* Sat Apr 5 2003 Matthias Saou <http://freshrpms.net/>
- Exclude .la files.
- Added fix for xvid and ffmpeg export modules, thanks to Dag Wieers.
- Strip all libs by default.
- Add ffmpeg requirement.
* Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
- Rebuilt for Red Hat Linux 9.
* Tue Mar 25 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.4.20030325 in order to fix ppc build.
* Tue Feb 18 2003 Matthias Saou <http://freshrpms.net/>
- Added lzo support, thanks to Jos=C3=A9 Romildo Malaquias.
* Sun Feb 16 2003 Matthias Saou <http://freshrpms.net/>
- Rebuild against new libdvdread.
* Fri Jan 31 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.3 final.
* Tue Jan 28 2003 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.3.20030123 snapshot.
* Sat Jan 11 2003 Matthias Saou <http://freshrpms.net/>
- Fix the avifile dependency (disabled by default).
* Tue Dec 24 2002 Matthias Saou <http://freshrpms.net/>
- Added mjpegtools.
* Mon Dec 9 2002 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.2 final.
* Sun Nov 17 2002 Matthias Saou <http://freshrpms.net/>
- Updated to latest snapshot, 20021114.
- Rebuilt to use mplayer's libpostproc.
- Added libfame support.
* Sun Oct 6 2002 Matthias Saou <http://freshrpms.net/>
- Rebuilt for Red Hat Linux 8.0.
- Added --with and --without build options.
* Mon Sep 23 2002 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.1.
* Mon Aug 19 2002 Matthias Saou <http://freshrpms.net/>
- Added nasm dependency.
* Fri Aug 2 2002 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.0 final!
* Thu Aug 1 2002 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.0rc4... doesn't compile :-(
- Added libdv, libogg and libvorbis dependencies.
* Fri Jun 14 2002 Matthias Saou <http://freshrpms.net/>
- Update to 0.6.0rc1.
- Spec file updates and fixes.
* Mon Dec 24 2001 Matthias Saou <http://freshrpms.net/>
- Update to 0.5.3.
* Sun Dec 2 2001 Matthias Saou <http://freshrpms.net/>
- Update to 0.5.1.
* Sun Nov 25 2001 Matthias Saou <http://freshrpms.net/>
- Major spec file cleanup.
* Wed Jul 11 2001 Thomas =C3=96streich
- update to transcode v0.3.3
- small changes suggested by VM
* Tue Jul 10 2001 Thomas =C3=96streich
- update to transcode v0.3.2
- added pkgdir in install section
* Tue Jul 10 2001 Volker Moell <[email protected]>
- Wrote this specfile; first build
--------------070705000001040301060905--