[xiph-commits] r8220 - trunk/ffmpeg2theora
j at motherfish-iii.xiph.org
j at motherfish-iii.xiph.org
Thu Nov 18 10:39:26 PST 2004
Author: j
Date: 2004-11-18 10:39:26 -0800 (Thu, 18 Nov 2004)
New Revision: 8220
Added:
trunk/ffmpeg2theora/build.mac.sh
Modified:
trunk/ffmpeg2theora/ChangeLog
trunk/ffmpeg2theora/Makefile.am
trunk/ffmpeg2theora/configure.ac
Log:
ffmpeg2theora version 0.12
Modified: trunk/ffmpeg2theora/ChangeLog
===================================================================
--- trunk/ffmpeg2theora/ChangeLog 2004-11-18 18:36:49 UTC (rev 8219)
+++ trunk/ffmpeg2theora/ChangeLog 2004-11-18 18:39:26 UTC (rev 8220)
@@ -1,3 +1,7 @@
+0.12 2004-11-18
+ - add more command line options, for bitrate modes, metadata
+ - update kino plugin
+
0.11 2004-09-04
- changed default, then called without parameters to -p preview mode
- changed PREVIEW(PAL) settings to 384x288 to make pixel aspect ratio 1:1
Modified: trunk/ffmpeg2theora/Makefile.am
===================================================================
--- trunk/ffmpeg2theora/Makefile.am 2004-11-18 18:36:49 UTC (rev 8219)
+++ trunk/ffmpeg2theora/Makefile.am 2004-11-18 18:39:26 UTC (rev 8220)
@@ -1,4 +1,4 @@
-AUTOMAKE_OPTIONS = 1.6 dist-zip
+AUTOMAKE_OPTIONS = 1.6 dist-bzip2 no-dist-gzip
SUBDIRS = kino_export
Added: trunk/ffmpeg2theora/build.mac.sh
===================================================================
--- trunk/ffmpeg2theora/build.mac.sh 2004-11-18 18:36:49 UTC (rev 8219)
+++ trunk/ffmpeg2theora/build.mac.sh 2004-11-18 18:39:26 UTC (rev 8220)
@@ -0,0 +1,18 @@
+prefix=/Users/j/local
+outdir=/Users/j/Desktop
+export PATH=$prefix/bin:$PATH
+export PKG_CONFIG_PATH=$prefix/lib/pkgconfig/
+
+./configure --prefix=$prefix/local/ --with-ffmpegprefix=$prefix/src/ffmpeg-0.4.9-pre1 && make || exit
+strip ffmpeg2theora
+mkdir inst
+mkdir inst/ffmpeg2theora
+cp ffmpeg2theora inst/ffmpeg2theora
+
+cd inst
+hdiutil create -srcfolder 'ffmpeg2theora' ffmpeg2theora.tmp
+hdiutil convert ffmpeg2theora.tmp.dmg -format UDZO -o ffmpeg2theora
+rm -f $outdir/ffmpeg2theora.dmg
+mv ffmpeg2theora.dmg $outdir
+cd ..
+rm -rf inst
Property changes on: trunk/ffmpeg2theora/build.mac.sh
___________________________________________________________________
Name: svn:executable
+ *
Modified: trunk/ffmpeg2theora/configure.ac
===================================================================
--- trunk/ffmpeg2theora/configure.ac 2004-11-18 18:36:49 UTC (rev 8219)
+++ trunk/ffmpeg2theora/configure.ac 2004-11-18 18:39:26 UTC (rev 8220)
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT(ffmpeg2theora,0.11)
+AC_INIT(ffmpeg2theora,0.12)
AC_CONFIG_SRCDIR([Makefile.am])
AM_INIT_AUTOMAKE([dist-bzip2])
@@ -18,8 +18,16 @@
dnl only check for libavcodec.a and libformat.a if not crosscompiling
dnl
+dnl so LIBPREF and LIBSUF are configured by default,
+
LIBPREF=lib
LIBSUF=.a
+case "$host" in
+ *mingw*)
+ LIBPREF=
+ LIBSUF=.lib
+ ;;
+esac
if test "$cross_compiling" = yes; then
HAVE_FFMPEG=yes
LIBPREF=
More information about the commits
mailing list