automatic version update by autodist [release 1.24.0-1mamba;Thu Mar 07 2024]
This commit is contained in:
parent
d44ccd2297
commit
2f105f3de8
@ -1,11 +0,0 @@
|
||||
--- gst-plugins-ugly-0.10.10/common/m4/gst-feature.m4 2008-11-08 15:48:44.000000000 +0100
|
||||
+++ gst-plugins-ugly-0.10.10/common/m4/gst-feature.m4-gil 2009-01-01 03:23:11.000000000 +0100
|
||||
@@ -139,7 +139,7 @@
|
||||
[$1]_CFLAGS=
|
||||
HAVE_[$1]=no
|
||||
else
|
||||
- if [$2] --plugin-libs [$3] &> /dev/null; then
|
||||
+ if [$2] --plugin-libs [$3] > /dev/null 2> /dev/null; then
|
||||
[$1]_LIBS=`[$2] --plugin-libs [$3]`
|
||||
else
|
||||
[$1]_LIBS=`[$2] --libs [$3]`
|
@ -1,15 +0,0 @@
|
||||
diff -up gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c.x264 gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c
|
||||
--- gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c.x264 2009-06-05 22:02:52.000000000 +0200
|
||||
+++ gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c 2009-10-26 16:44:43.000000000 +0100
|
||||
@@ -576,7 +576,11 @@ gst_x264_enc_init_encoder (GstX264Enc *
|
||||
encoder->x264param.analyse.i_noise_reduction = encoder->noise_reduction;
|
||||
encoder->x264param.i_frame_reference = encoder->ref;
|
||||
encoder->x264param.i_bframe = encoder->bframes;
|
||||
+#if X264_BUILD < 78
|
||||
encoder->x264param.b_bframe_pyramid = encoder->b_pyramid;
|
||||
+#else
|
||||
+ encoder->x264param.i_bframe_pyramid = encoder->b_pyramid;
|
||||
+#endif
|
||||
#if X264_BUILD < 63
|
||||
encoder->x264param.b_bframe_adaptive = encoder->b_adapt;
|
||||
#else
|
@ -1,6 +1,6 @@
|
||||
%define apiver %(echo %version | cut -d. -f 1).0
|
||||
Name: gst-plugins-ugly
|
||||
Version: 1.22.10
|
||||
Version: 1.24.0
|
||||
Release: 1mamba
|
||||
Summary: A set of plug-ins for gstreamer considered to have ugly quality code
|
||||
Group: System/Multimedia
|
||||
@ -9,8 +9,6 @@ Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://gstreamer.freedesktop.org/modules/gst-plugins-ugly.html
|
||||
Source: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz
|
||||
Patch: gst-plugins-ugly-0.10.10-featurem4.patch
|
||||
Patch1: gst-plugins-ugly-0.10.13-x264.patch
|
||||
License: LGPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
@ -18,39 +16,9 @@ BuildRequires: liba52dec-devel
|
||||
BuildRequires: libglib-devel
|
||||
BuildRequires: libgst-plugins-base-devel
|
||||
BuildRequires: libgstreamer-devel
|
||||
BuildRequires: libopencore-amr-devel
|
||||
BuildRequires: liborc-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: libdvdnav-devel
|
||||
#configure: *** Plug-ins without external dependencies that will be built:
|
||||
# asfdemux
|
||||
# dvdlpcmdec
|
||||
# dvdsub
|
||||
# iec958
|
||||
# mpegaudioparse
|
||||
# mpegstream
|
||||
# realmedia
|
||||
|
||||
#configure: *** Plug-ins without external dependencies that will NOT be built:
|
||||
# synaesthesia
|
||||
|
||||
#configure: *** Plug-ins with dependencies that will be built:
|
||||
# a52dec
|
||||
# amrnb
|
||||
# cdio
|
||||
# dvdreadsrc
|
||||
# id3tag
|
||||
# lame
|
||||
# mad
|
||||
# mpeg2dec
|
||||
# sid
|
||||
|
||||
#configure: *** Plug-ins with dependencies that will NOT be built:
|
||||
# dvdnav
|
||||
#configure: *** checking feature: dvdnav library ***
|
||||
#configure: *** for plug-ins: dvdnav ***
|
||||
#configure: *** These plugins will not be built: dvdnav
|
||||
#configure: dvdnavsrc not stable yet, not building
|
||||
|
||||
%description
|
||||
GStreamer Ugly Plug-ins is a set of plug-ins that we consider to have ugly quality code, correct functionality, our preferred license (LGPL for the plug-in code, LGPL or LGPL-compatible for the supporting library).
|
||||
@ -76,10 +44,7 @@ This package includes the %{name} API documentation.
|
||||
%debug_package
|
||||
|
||||
%prep
|
||||
|
||||
%setup -q
|
||||
#%patch -p1
|
||||
#%patch1 -p1
|
||||
|
||||
%build
|
||||
%meson
|
||||
@ -98,11 +63,12 @@ This package includes the %{name} API documentation.
|
||||
%files -f %{name}-%{apiver}.lang
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/gstreamer-%{apiver}/libgst*.so
|
||||
#%{_datadir}/gstreamer-%{apiver}/presets/GstX264Enc.prs
|
||||
%{_datadir}/gstreamer-%{apiver}/presets/GstAmrnbEnc.prs
|
||||
%doc AUTHORS COPYING
|
||||
|
||||
%changelog
|
||||
* Thu Mar 07 2024 Automatic Build System <autodist@openmamba.org> 1.24.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Feb 14 2024 Automatic Build System <autodist@openmamba.org> 1.22.10-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user