libquicktime need for xawtv
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import libtools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
NoStrip = "/"
|
||||
KeepSpecial = ["libtool"]
|
||||
|
||||
def setup():
|
||||
shelltools.export("AUTOPOINT", "/bin/true")
|
||||
autotools.autoreconf("-fi")
|
||||
libtools.libtoolize("--force --copy")
|
||||
autotools.configure("--enable-shared \
|
||||
--enable-asm \
|
||||
--enable-gpl \
|
||||
--with-alsa \
|
||||
--with-faad2 \
|
||||
--with-ffmpeg \
|
||||
--with-lame \
|
||||
--with-libdv \
|
||||
--with-libjpeg \
|
||||
--with-libpng \
|
||||
--with-opengl \
|
||||
--with-schroedinger \
|
||||
--with-x \
|
||||
--with-x264 \
|
||||
--without-doxygen \
|
||||
--without-cpuflags")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.remove("/usr/lib/libquicktime.la")
|
||||
|
||||
pisitools.dodoc("README", "TODO", "ChangeLog")
|
||||
@@ -0,0 +1,12 @@
|
||||
Index: libquicktime-1.2.4/plugins/ffmpeg/ffmpeg.h
|
||||
===================================================================
|
||||
--- libquicktime-1.2.4.orig/plugins/ffmpeg/ffmpeg.h
|
||||
+++ libquicktime-1.2.4/plugins/ffmpeg/ffmpeg.h
|
||||
@@ -27,6 +27,7 @@
|
||||
|
||||
#include <quicktime/qtprivate.h>
|
||||
#include AVCODEC_HEADER
|
||||
+#include <libavutil/mem.h>
|
||||
|
||||
void quicktime_init_video_codec_ffmpeg(quicktime_codec_t * codec,
|
||||
quicktime_video_map_t *vtrack,
|
||||
@@ -0,0 +1,135 @@
|
||||
Binary files a/plugins/ffmpeg/.lqt_ffmpeg.c.swp and b/plugins/ffmpeg/.lqt_ffmpeg.c.swp differ
|
||||
diff -rupN a/plugins/ffmpeg/ffmpeg.h b/plugins/ffmpeg/ffmpeg.h
|
||||
--- a/plugins/ffmpeg/ffmpeg.h 2012-02-15 20:48:30.000000000 +0100
|
||||
+++ b/plugins/ffmpeg/ffmpeg.h 2013-07-15 15:05:19.307534593 +0200
|
||||
@@ -45,3 +45,7 @@ void lqt_ffmpeg_set_parameter(AVCodecCon
|
||||
|
||||
|
||||
#endif
|
||||
+#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000
|
||||
+#define CODEC_FLAG2_STRICT_GOP 0x00000002
|
||||
+#define CODEC_FLAG_QP_RD 0x08000000
|
||||
+#define CODEC_FLAG_CBP_RD 0x04000000
|
||||
diff -rupN a/plugins/ffmpeg/lqt_ffmpeg.c b/plugins/ffmpeg/lqt_ffmpeg.c
|
||||
--- a/plugins/ffmpeg/lqt_ffmpeg.c 2012-02-15 20:48:30.000000000 +0100
|
||||
+++ b/plugins/ffmpeg/lqt_ffmpeg.c 2013-07-15 15:19:09.730831655 +0200
|
||||
@@ -89,19 +89,8 @@ int ffmpeg_num_video_codecs = -1;
|
||||
PARAM_QSCALE, \
|
||||
PARAM_QCOMPRESS, \
|
||||
PARAM_QBLUR, \
|
||||
- PARAM_QUANTIZER_NOISE_SHAPING, \
|
||||
PARAM_TRELLIS
|
||||
|
||||
-#define ENCODE_PARAM_VIDEO_QUANTIZER_IP \
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_I, \
|
||||
- PARAM_I_QUANT_FACTOR, \
|
||||
- PARAM_I_QUANT_OFFSET
|
||||
-
|
||||
-#define ENCODE_PARAM_VIDEO_QUANTIZER_IPB \
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_IP, \
|
||||
- PARAM_B_QUANT_FACTOR, \
|
||||
- PARAM_B_QUANT_OFFSET
|
||||
-
|
||||
#define ENCODE_PARAM_VIDEO_FRAMETYPES_IP \
|
||||
{ \
|
||||
.name = "frame_types", \
|
||||
@@ -207,7 +196,6 @@ static lqt_parameter_info_static_t encod
|
||||
ENCODE_PARAM_VIDEO_FRAMETYPES_IPB,
|
||||
PARAM_FLAG_AC_PRED_MPEG4,
|
||||
ENCODE_PARAM_VIDEO_RATECONTROL,
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_IPB,
|
||||
PARAM_FLAG_CBP_RD,
|
||||
ENCODE_PARAM_VIDEO_ME,
|
||||
PARAM_FLAG_GMC,
|
||||
@@ -225,7 +213,6 @@ static lqt_parameter_info_static_t encod
|
||||
static lqt_parameter_info_static_t encode_parameters_dx50[] = {
|
||||
ENCODE_PARAM_VIDEO_FRAMETYPES_IP,
|
||||
ENCODE_PARAM_VIDEO_RATECONTROL,
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_IP,
|
||||
ENCODE_PARAM_VIDEO_ME,
|
||||
ENCODE_PARAM_VIDEO_ME_PRE,
|
||||
ENCODE_PARAM_VIDEO_MASKING,
|
||||
@@ -237,7 +224,6 @@ static lqt_parameter_info_static_t encod
|
||||
static lqt_parameter_info_static_t encode_parameters_h263[] = {
|
||||
ENCODE_PARAM_VIDEO_FRAMETYPES_IP,
|
||||
ENCODE_PARAM_VIDEO_RATECONTROL,
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_IP,
|
||||
ENCODE_PARAM_VIDEO_ME,
|
||||
PARAM_FLAG_4MV,
|
||||
ENCODE_PARAM_VIDEO_ME_PRE,
|
||||
@@ -250,7 +236,6 @@ static lqt_parameter_info_static_t encod
|
||||
static lqt_parameter_info_static_t encode_parameters_h263p[] = {
|
||||
ENCODE_PARAM_VIDEO_FRAMETYPES_IP,
|
||||
ENCODE_PARAM_VIDEO_RATECONTROL,
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_IP,
|
||||
ENCODE_PARAM_VIDEO_ME,
|
||||
PARAM_FLAG_4MV,
|
||||
ENCODE_PARAM_VIDEO_ME_PRE,
|
||||
@@ -264,7 +249,6 @@ static lqt_parameter_info_static_t encod
|
||||
static lqt_parameter_info_static_t encode_parameters_msmpeg4v3[] = {
|
||||
ENCODE_PARAM_VIDEO_FRAMETYPES_IP,
|
||||
ENCODE_PARAM_VIDEO_RATECONTROL,
|
||||
- ENCODE_PARAM_VIDEO_QUANTIZER_IP,
|
||||
ENCODE_PARAM_VIDEO_ME,
|
||||
ENCODE_PARAM_VIDEO_ME_PRE,
|
||||
ENCODE_PARAM_VIDEO_MASKING,
|
||||
diff -rupN a/plugins/ffmpeg/params.c b/plugins/ffmpeg/params.c
|
||||
--- a/plugins/ffmpeg/params.c 2012-03-07 15:10:41.000000000 +0100
|
||||
+++ b/plugins/ffmpeg/params.c 2013-07-15 15:09:38.214189953 +0200
|
||||
@@ -202,8 +202,10 @@ void lqt_ffmpeg_set_parameter(AVCodecCon
|
||||
PARAM_INT("ff_max_b_frames",max_b_frames);
|
||||
PARAM_FLOAT("ff_b_quant_factor",b_quant_factor);
|
||||
PARAM_INT("ff_b_frame_strategy",b_frame_strategy);
|
||||
+#if (LIBAVCODEC_VERSION_MAJOR < 55)
|
||||
PARAM_INT("ff_luma_elim_threshold",luma_elim_threshold);
|
||||
PARAM_INT("ff_chroma_elim_threshold",chroma_elim_threshold);
|
||||
+#endif
|
||||
PARAM_INT("ff_strict_std_compliance",strict_std_compliance);
|
||||
PARAM_QP2LAMBDA("ff_b_quant_offset",b_quant_offset);
|
||||
PARAM_INT("ff_rc_min_rate",rc_min_rate);
|
||||
@@ -241,8 +243,10 @@ void lqt_ffmpeg_set_parameter(AVCodecCon
|
||||
PARAM_QP2LAMBDA("ff_lmax", lmax);
|
||||
PARAM_INT("ff_noise_reduction",noise_reduction);
|
||||
PARAM_INT_SCALE("ff_rc_initial_buffer_occupancy",rc_initial_buffer_occupancy,1000);
|
||||
+#if #if (LIBAVCODEC_VERSION_MAJOR < 55)
|
||||
PARAM_INT("ff_inter_threshold",inter_threshold);
|
||||
PARAM_INT("ff_quantizer_noise_shaping",quantizer_noise_shaping);
|
||||
+#endif
|
||||
PARAM_INT("ff_thread_count",thread_count);
|
||||
PARAM_INT("ff_me_threshold",me_threshold);
|
||||
PARAM_INT("ff_mb_threshold",mb_threshold);
|
||||
diff -rupN a/plugins/ffmpeg/params.h b/plugins/ffmpeg/params.h
|
||||
--- a/plugins/ffmpeg/params.h 2011-05-11 17:13:39.000000000 +0200
|
||||
+++ b/plugins/ffmpeg/params.h 2013-07-15 15:09:04.860858069 +0200
|
||||
@@ -177,6 +177,7 @@ the reference. Unused for constant quant
|
||||
.val_max = { .val_int = 1 }, \
|
||||
}
|
||||
|
||||
+#if (LIBAVCODEC_VERSION_MAJOR < 55)
|
||||
#define PARAM_LUMA_ELIM_THRESHOLD \
|
||||
{ \
|
||||
.name = "ff_luma_elim_threshold", \
|
||||
@@ -202,6 +203,7 @@ recommendation") \
|
||||
chrominamce. Negative values also consider dc \
|
||||
coefficient. 7 is JVT recommendation") \
|
||||
}
|
||||
+#endif
|
||||
|
||||
#define PARAM_STRICT_STANDARD_COMPLIANCE \
|
||||
{ \
|
||||
@@ -739,6 +741,7 @@ with max and/or min bitrate, this must b
|
||||
|
||||
/* Does nothing */
|
||||
/** Frame types */
|
||||
+#if (LIBAVCODEC_VERSION_MAJOR < 55)
|
||||
#define PARAM_INTER_THRESHOLD \
|
||||
{ \
|
||||
.name = "ff_inter_threshold", \
|
||||
@@ -759,6 +762,7 @@ with max and/or min bitrate, this must b
|
||||
.help_string = TRS("Choose quantization such that noise will be masked by " \
|
||||
"similar-frequency content in the image") \
|
||||
}
|
||||
+#endif
|
||||
|
||||
/** Motion estimation */
|
||||
#define PARAM_ME_THRESHOLD \
|
||||
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libquicktime</Name>
|
||||
<Homepage>http://libquicktime.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library based on quicktime4linux with extensions</Summary>
|
||||
<Description>Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development.</Description>
|
||||
<Archive sha1sum="7008b2dc27b9b40965bd2df42d39ff4cb8b6305e" type="targz">mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>lame-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>faac-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>libdv-devel</Dependency>
|
||||
<Dependency>faad2-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>libXv-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libXaw-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>libavc1394-devel</Dependency>
|
||||
<Dependency>libraw1394-devel</Dependency>
|
||||
<Dependency>schroedinger-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency versionFrom="0.0_20130705">x264-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">libquicktime-1.2.4+libav-9.patch</Patch>
|
||||
<Patch level="1">libquicktime-1.2.4-ffmpeg2.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libquicktime</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>lame</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>faac</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>libdv</Dependency>
|
||||
<Dependency>faad2</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>libXv</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libXaw</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>libavc1394</Dependency>
|
||||
<Dependency>libraw1394</Dependency>
|
||||
<Dependency>schroedinger</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency versionFrom="0.0_20130705">x264</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libquicktime-devel</Name>
|
||||
<Summary>Development files for libquicktime</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libquicktime</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2015-11-13</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version for Pisi 2.0</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-12-18</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-12-16</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-04-05</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for x264</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-11-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-11-26</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-08</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libquicktime</Name>
|
||||
<Summary xml:lang="tr">quicktime4linux ve eklentileri tabanlı bir kütüphane</Summary>
|
||||
<Description xml:lang="tr">Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir.</Description>
|
||||
<Description xml:lang="fr">Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement.</Description>
|
||||
<Description xml:lang="es">Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libquicktime-devel</Name>
|
||||
<Summary xml:lang="tr">libquicktime için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+357
@@ -87901,6 +87901,160 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libquicktime</Name>
|
||||
<Homepage>http://libquicktime.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>multimedia.video</PartOf>
|
||||
<Summary xml:lang="en">A library based on quicktime4linux with extensions</Summary>
|
||||
<Summary xml:lang="tr">quicktime4linux ve eklentileri tabanlı bir kütüphane</Summary>
|
||||
<Description xml:lang="fr">Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement.</Description>
|
||||
<Description xml:lang="en">Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development.</Description>
|
||||
<Description xml:lang="tr">Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir.</Description>
|
||||
<Description xml:lang="es">Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo.</Description>
|
||||
<Archive type="targz" sha1sum="7008b2dc27b9b40965bd2df42d39ff4cb8b6305e">mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>lame-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>faac-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>libdv-devel</Dependency>
|
||||
<Dependency>faad2-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>libXv-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libXaw-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>libavc1394-devel</Dependency>
|
||||
<Dependency>libraw1394-devel</Dependency>
|
||||
<Dependency>schroedinger-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency versionFrom="0.0_20130705">x264-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">libquicktime-1.2.4+libav-9.patch</Patch>
|
||||
<Patch level="1">libquicktime-1.2.4-ffmpeg2.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>multimedia/video/libquicktime/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>libquicktime</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>lame</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>faac</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>libdv</Dependency>
|
||||
<Dependency>faad2</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>libXv</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libXaw</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>libavc1394</Dependency>
|
||||
<Dependency>libraw1394</Dependency>
|
||||
<Dependency>schroedinger</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency versionFrom="0.0_20130705">x264</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libquicktime-devel</Name>
|
||||
<Summary xml:lang="en">Development files for libquicktime</Summary>
|
||||
<Summary xml:lang="tr">libquicktime için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="8">libquicktime</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2015-11-13</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version for Pisi 2.0</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-12-18</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-12-16</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-04-05</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for x264</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-11-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-11-26</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-08</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gst-plugins-ugly</Name>
|
||||
@@ -96533,6 +96687,209 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<Package>
|
||||
<Name>libquicktime-devel</Name>
|
||||
<Summary xml:lang="en">Development files for libquicktime</Summary>
|
||||
<Summary xml:lang="tr">libquicktime için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="fr">Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement.</Description>
|
||||
<Description xml:lang="en">Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development.</Description>
|
||||
<Description xml:lang="tr">Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir.</Description>
|
||||
<Description xml:lang="es">Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo.</Description>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>programming.devel</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="8">libquicktime</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2015-11-13</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version for Pisi 2.0</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-12-18</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-12-16</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-04-05</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for x264</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-11-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-11-26</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-08</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<BuildHost>localhost</BuildHost>
|
||||
<Distribution>PisiLinux</Distribution>
|
||||
<DistributionRelease>1.0</DistributionRelease>
|
||||
<Architecture>x86_64</Architecture>
|
||||
<InstalledSize>146723</InstalledSize>
|
||||
<PackageSize>28598</PackageSize>
|
||||
<PackageHash>2d590bd9f636ce3be34b068027817b1dbfd8a3a7</PackageHash>
|
||||
<InstallTarHash>da39a3ee5e6b4b0d3255bfef95601890afd80709</InstallTarHash>
|
||||
<PackageURI>multimedia/video/libquicktime/libquicktime-devel-1.2.4-8-p01-x86_64.pisi</PackageURI>
|
||||
<PackageFormat>1.2</PackageFormat>
|
||||
<Source>
|
||||
<Name>libquicktime</Name>
|
||||
<Homepage>http://libquicktime.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
</Source>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libquicktime</Name>
|
||||
<Summary xml:lang="en">A library based on quicktime4linux with extensions</Summary>
|
||||
<Summary xml:lang="tr">quicktime4linux ve eklentileri tabanlı bir kütüphane</Summary>
|
||||
<Description xml:lang="fr">Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement.</Description>
|
||||
<Description xml:lang="en">Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development.</Description>
|
||||
<Description xml:lang="tr">Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir.</Description>
|
||||
<Description xml:lang="es">Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo.</Description>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>unknown</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>lame</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>faac</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>libdv</Dependency>
|
||||
<Dependency>faad2</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>libXv</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libXaw</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>libavc1394</Dependency>
|
||||
<Dependency>libraw1394</Dependency>
|
||||
<Dependency>schroedinger</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency versionFrom="0.0_20130705">x264</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2015-11-13</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version for Pisi 2.0</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2014-12-18</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild version</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-12-16</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-04-05</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for x264</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-11-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-11-26</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Rebuild for ffmpeg</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-08</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-29</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<BuildHost>localhost</BuildHost>
|
||||
<Distribution>PisiLinux</Distribution>
|
||||
<DistributionRelease>1.0</DistributionRelease>
|
||||
<Architecture>x86_64</Architecture>
|
||||
<InstalledSize>6251242</InstalledSize>
|
||||
<PackageSize>1007553</PackageSize>
|
||||
<PackageHash>602d408478b90240b18e22b5d1e1b6a112df7fb5</PackageHash>
|
||||
<InstallTarHash>f19bd5857bd2779defcef865b05e4789e085495e</InstallTarHash>
|
||||
<PackageURI>multimedia/video/libquicktime/libquicktime-1.2.4-8-p01-x86_64.pisi</PackageURI>
|
||||
<PackageFormat>1.2</PackageFormat>
|
||||
<Source>
|
||||
<Name>libquicktime</Name>
|
||||
<Homepage>http://libquicktime.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
</Source>
|
||||
</Package>
|
||||
<Component>
|
||||
<Name>system</Name>
|
||||
<LocalName xml:lang="en">FIXME</LocalName>
|
||||
|
||||
@@ -1 +1 @@
|
||||
705e68c010e566cff2ed146ca4f3997a2ca7abc9
|
||||
20f3f8c7e419f7eeabcfcede394c7a41e9c0c7a4
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
4b9d9822b5fd80334f2298c61fa6e49d9e35558e
|
||||
98394f26b4df0a5a7ee5b1c0ff8e762e5c7d5cab
|
||||
Reference in New Issue
Block a user