libquicktime: 1.1.3 -> 1.2.2

This commit is contained in:
Danny Rawlins 2011-01-11 04:18:18 +11:00
parent 68a24f7862
commit 71357ca822
4 changed files with 5 additions and 39 deletions

View File

@ -1,9 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/libquicktime_config
-rwxr-xr-x root/root usr/bin/lqt-config
-rwxr-xr-x root/root usr/bin/lqt_transcode
-rwxr-xr-x root/root usr/bin/lqtplay
-rwxr-xr-x root/root usr/bin/lqtremux
-rwxr-xr-x root/root usr/bin/qt2text
-rwxr-xr-x root/root usr/bin/qtdechunk
-rwxr-xr-x root/root usr/bin/qtdump
@ -14,9 +14,9 @@ drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/lqt/
-rw-r--r-- root/root usr/include/lqt/colormodels.h
-rw-r--r-- root/root usr/include/lqt/compression.h
-rw-r--r-- root/root usr/include/lqt/lqt.h
-rw-r--r-- root/root usr/include/lqt/lqt_atoms.h
-rw-r--r-- root/root usr/include/lqt/lqt_codecapi.h
-rw-r--r-- root/root usr/include/lqt/lqt_codecinfo.h
-rw-r--r-- root/root usr/include/lqt/lqt_qtvr.h
-rw-r--r-- root/root usr/include/lqt/lqt_version.h
@ -56,6 +56,3 @@ drwxr-xr-x root/root usr/lib/pkgconfig/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/lqtplay.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/lqt.m4

View File

@ -1,2 +1 @@
e4fcda219f1e0ca508d9baa3700e4a59 libquicktime-1.1.3.tar.gz
a4b50c0c01351ffc0aa17b4bcdb249fd libquicktime-1.1.3_x264-abi.patch
016a0513a7d3fb1b8e64a265152e559d libquicktime-1.2.2.tar.gz

View File

@ -5,16 +5,13 @@
# Depends on: ffmpeg gtk libdivx libdv xorg-libxaw xorg-libxcomposite
name=libquicktime
version=1.1.3
version=1.2.2
release=1
source=(http://downloads.sourceforge.net/project/$name/$name-$version.tar.gz
$name-1.1.3_x264-abi.patch)
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
build() {
cd $name-$version
patch -p 1 -i $SRC/$name-1.1.3_x264-abi.patch
./configure \
--prefix=/usr \
--mandir=/usr/man \

View File

@ -1,27 +0,0 @@
diff -pruN libquicktime-1.1.3.orig/plugins/x264/x264.c libquicktime-1.1.3/plugins/x264/x264.c
--- libquicktime-1.1.3.orig/plugins/x264/x264.c 2009-12-26 04:46:40.321825062 +0000
+++ libquicktime-1.1.3/plugins/x264/x264.c 2009-12-26 04:51:20.991825275 +0000
@@ -67,7 +67,11 @@ static void dump_params(x264_param_t * p
lqt_dump(" i_bframe: %d\n", params->i_bframe); // 0.. X264_BFRAME_MAX
lqt_dump(" b_bframe_adaptive: %d\n", params->b_bframe_adaptive);
lqt_dump(" i_bframe_bias: %d\n", params->i_bframe_bias);
+#if X264_BUILD < 78
lqt_dump(" b_bframe_pyramid: %d\n", params->b_bframe_pyramid);
+#else
+ lqt_dump(" i_bframe_pyramid: %d\n", params->i_bframe_pyramid);
+#endif
lqt_dump(" b_deblocking_filter: %d\n", params->b_deblocking_filter);
lqt_dump(" i_deblocking_filter_alphac0: %d\n", params->i_deblocking_filter_alphac0); // -6..6
@@ -782,7 +786,11 @@ static int set_parameter(quicktime_t *fi
ENUMPARAM("x264_i_bframe_adaptive", codec->params.i_bframe_adaptive, bframe_adaptives);
#endif
INTPARAM("x264_i_bframe_bias", codec->params.i_bframe_bias);
+#if X264_BUILD < 78
INTPARAM("x264_b_bframe_pyramid", codec->params.b_bframe_pyramid);
+#else
+ INTPARAM("x264_b_bframe_pyramid", codec->params.i_bframe_pyramid);
+#endif
ENUMPARAM("x264_i_rc_method", codec->params.rc.i_rc_method, rc_methods);
INTPARAM("x264_i_bitrate", codec->params.rc.i_bitrate);