Compare commits

..

1 Commits
rawhide ... f23

Author SHA1 Message Date
Fabiano Fidêncio
c0ee3fc7f1 Rebuild due to a mingw-nettle update 2016-02-23 08:40:33 +01:00
5 changed files with 306 additions and 674 deletions

33
.gitignore vendored
View File

@ -1,35 +1,2 @@
/gst-plugins-bad-free-1.4.4.tar.xz
/gst-plugins-bad-free-1.6.0.tar.xz
/gst-plugins-bad-free-1.8.1.tar.xz
/gst-plugins-bad-1.10.0.tar.xz
/gst-plugins-bad-free-1.10.0.tar.xz
/gst-plugins-bad-free-1.11.1.tar.xz
/gst-plugins-bad-free-1.12.1.tar.xz
/gst-plugins-bad-free-1.12.3.tar.xz
/gst-plugins-bad-free-1.14.1.tar.xz
/gst-plugins-bad-free-1.14.2.tar.xz
/gst-plugins-bad-free-1.16.2.tar.xz
/gst-plugins-bad-free-1.18.1.tar.xz
/gst-plugins-bad-free-1.18.2.tar.xz
/gst-plugins-bad-free-1.18.4.tar.xz
/gst-plugins-bad-free-1.19.1.tar.xz
/gst-plugins-bad-free-1.19.2.tar.xz
/gst-plugins-bad-free-1.19.3.tar.xz
/gst-plugins-bad-free-1.20.0.tar.xz
/gst-plugins-bad-free-1.20.3.tar.xz
/gst-plugins-bad-free-1.20.4.tar.xz
/gst-plugins-bad-free-1.22.0.tar.xz
/gst-plugins-bad-free-1.22.1.tar.xz
/gst-plugins-bad-free-1.22.2.tar.xz
/gst-plugins-bad-free-1.22.3.tar.xz
/gst-plugins-bad-free-1.22.4.tar.xz
/gst-plugins-bad-free-1.22.5.tar.xz
/gst-plugins-bad-free-1.22.6.tar.xz
/gst-plugins-bad-free-1.22.7.tar.xz
/gst-plugins-bad-free-1.22.8.tar.xz
/gst-plugins-bad-free-1.22.9.tar.xz
/gst-plugins-bad-free-1.24.0.tar.xz
/gst-plugins-bad-free-1.24.3.tar.xz
/gst-plugins-bad-free-1.24.4.tar.xz
/gst-plugins-bad-free-1.24.5.tar.xz
/gst-plugins-bad-free-1.24.6.tar.xz

View File

@ -9,10 +9,7 @@
# Bastien Nocera <bnocera@redhat.com> - 2010
#
VERSION="$1"
SOURCE_URL="http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-${VERSION}.tar.xz"
SOURCE="gst-plugins-bad-${VERSION}.tar.xz"
wget ${SOURCE_URL}
SOURCE="$1"
NEW_SOURCE=`echo $SOURCE | sed 's/bad-/bad-free-/'`
DIRECTORY=`echo $SOURCE | sed 's/\.tar\.xz//'`
@ -25,11 +22,8 @@ aiff
aiffparse
amrparse
asfmux
audiobuffersplit
audiofxbad
audiolatency
audiomixer
audiomixmatrix
audioparsers
audiovisualizers
autoconvert
@ -37,8 +31,6 @@ bayer
camerabin
camerabin2
cdxaparse
codecalpha
codectimestamper
coloreffects
colorspace
compositor
@ -46,8 +38,6 @@ dataurisrc
dccp
debugutils
dtmf
dvbsubenc
dvbsuboverlay
faceoverlay
festival
fieldanalysis
@ -61,7 +51,6 @@ h264parse
hdvparse
hls
id3tag
insertbin
inter
interlace
invtelecine
@ -73,7 +62,6 @@ legacyresample
librfb
liveadder
midi
mse
mve
mpegdemux
mpeg4videoparse
@ -82,21 +70,14 @@ mpegtsdemux
mpegtsmux
mpegvideoparse
mxf
netsim
nsf
nuvdemux
onvif
openh264
patchdetect
pcapparse
pnm
proxy
qtmux
rawparse
removesilence
rist
rtmp2
rtp
rtpmux
rtpvp8
scaletempo
@ -104,19 +85,13 @@ sdi
sdp
segmentclip
selector
siren
smooth
speed
stereo
subenc
switchbin
timecode
transcode
tta
unixfd
valve
videofilters
videoframe_audiolevel
videomaxrate
videomeasure
videoparsers
@ -127,7 +102,10 @@ y4m
"
NOT_ALLOWED="
dvbsuboverlay
dvdspu
real
siren
"
error()
@ -177,6 +155,20 @@ for subdir in gst ext sys; do
echo "**** Removing $MODULE ****"
echo "Removing directory $dir"
rm -r $dir || error "Cannot remove $dir"
if grep -q "AG_GST_CHECK_PLUGIN($MODULE)" configure.ac ; then
echo "Removing element check for $MODULE"
grep -v "AG_GST_CHECK_PLUGIN($MODULE)" configure.ac > configure.ac.new && mv configure.ac.new configure.ac
fi
echo "Removing Makefile generation for $MODULE"
grep -v "$dir/Makefile" configure.ac > configure.ac.new && mv configure.ac.new configure.ac
# Urgh
if test $MODULE = real ; then
grep -v "AG_GST_DISABLE_PLUGIN(real)" configure.ac > configure.ac.new && mv configure.ac.new configure.ac
fi
echo "Removing documentation for $MODULE"
if grep -q "$MODULE" docs/plugins/Makefile.am ; then
grep -v $dir docs/plugins/Makefile.am > docs/plugins/Makefile.am.new && mv docs/plugins/Makefile.am.new docs/plugins/Makefile.am
fi
echo
elif test $subdir = ext || test $subdir = sys; then
# Ignore library or system non-blacklisted plugins
@ -196,6 +188,8 @@ if test "x$unknown" != "x"; then
exit 1
fi
autoreconf
popd > /dev/null
tar cJf $NEW_SOURCE $DIRECTORY

View File

@ -1,93 +0,0 @@
diff -rupN gst-plugins-bad-1.24.3/gst-libs/gst/d3d11/gstd3d11converter.cpp gst-plugins-bad-1.24.3-new/gst-libs/gst/d3d11/gstd3d11converter.cpp
--- gst-plugins-bad-1.24.3/gst-libs/gst/d3d11/gstd3d11converter.cpp 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/gst-libs/gst/d3d11/gstd3d11converter.cpp 2024-05-02 11:19:58.008578735 +0200
@@ -43,7 +43,7 @@
#ifndef HAVE_DIRECTX_MATH_SIMD
#define _XM_NO_INTRINSICS_
#endif
-#include <DirectXMath.h>
+#include <directxmath/DirectXMath.h>
/**
* SECTION:gstd3d11converter
diff -rupN gst-plugins-bad-1.24.3/gst-libs/gst/d3d11/meson.build gst-plugins-bad-1.24.3-new/gst-libs/gst/d3d11/meson.build
--- gst-plugins-bad-1.24.3/gst-libs/gst/d3d11/meson.build 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/gst-libs/gst/d3d11/meson.build 2024-05-02 11:19:58.039578140 +0200
@@ -183,7 +183,7 @@ endif
have_dx_math = cxx.compiles('''
#include <windows.h>
- #include <DirectXMath.h>
+ #include <directxmath/DirectXMath.h>
using namespace DirectX;
int main(int argc, char ** argv) {
XMMATRIX matrix;
@@ -211,7 +211,7 @@ endif
if host_machine.cpu_family() != 'x86'
have_dx_math_simd = cxx.compiles('''
#include <windows.h>
- #include <DirectXMath.h>
+ #include <directxmath/DirectXMath.h>
using namespace DirectX;
int main(int argc, char ** argv) {
XMVerifyCPUSupport ();
diff -rupN gst-plugins-bad-1.24.3/sys/d3d11/gstd3d11dxgicapture.cpp gst-plugins-bad-1.24.3-new/sys/d3d11/gstd3d11dxgicapture.cpp
--- gst-plugins-bad-1.24.3/sys/d3d11/gstd3d11dxgicapture.cpp 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/sys/d3d11/gstd3d11dxgicapture.cpp 2024-05-02 11:20:01.751506967 +0200
@@ -54,7 +54,7 @@
#include <wrl.h>
#define _XM_NO_INTRINSICS_
-#include <DirectXMath.h>
+#include <directxmath/DirectXMath.h>
GST_DEBUG_CATEGORY_EXTERN (gst_d3d11_screen_capture_debug);
#define GST_CAT_DEFAULT gst_d3d11_screen_capture_debug
diff -rupN gst-plugins-bad-1.24.3/sys/d3d11/gstd3d11pluginutils.cpp gst-plugins-bad-1.24.3-new/sys/d3d11/gstd3d11pluginutils.cpp
--- gst-plugins-bad-1.24.3/sys/d3d11/gstd3d11pluginutils.cpp 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/sys/d3d11/gstd3d11pluginutils.cpp 2024-05-02 11:20:01.692508099 +0200
@@ -32,7 +32,7 @@
/* Disable platform-specific intrinsics */
#define _XM_NO_INTRINSICS_
-#include <DirectXMath.h>
+#include <directxmath/DirectXMath.h>
GST_DEBUG_CATEGORY_EXTERN (gst_d3d11_plugin_utils_debug);
#define GST_CAT_DEFAULT gst_d3d11_plugin_utils_debug
diff -rupN gst-plugins-bad-1.24.3/sys/d3d12/gstd3d12converter.cpp gst-plugins-bad-1.24.3-new/sys/d3d12/gstd3d12converter.cpp
--- gst-plugins-bad-1.24.3/sys/d3d12/gstd3d12converter.cpp 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/sys/d3d12/gstd3d12converter.cpp 2024-05-02 11:20:02.270497016 +0200
@@ -35,7 +35,7 @@
#ifndef HAVE_DIRECTX_MATH_SIMD
#define _XM_NO_INTRINSICS_
#endif
-#include <DirectXMath.h>
+#include <directxmath/DirectXMath.h>
GST_DEBUG_CATEGORY (gst_d3d12_converter_debug);
#define GST_CAT_DEFAULT gst_d3d12_converter_debug
diff -rupN gst-plugins-bad-1.24.3/sys/d3d12/gstd3d12dxgicapture.cpp gst-plugins-bad-1.24.3-new/sys/d3d12/gstd3d12dxgicapture.cpp
--- gst-plugins-bad-1.24.3/sys/d3d12/gstd3d12dxgicapture.cpp 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/sys/d3d12/gstd3d12dxgicapture.cpp 2024-05-02 11:20:02.140499508 +0200
@@ -59,7 +59,7 @@
#include "VSMain_coord.h"
#define _XM_NO_INTRINSICS_
-#include <DirectXMath.h>
+#include <directxmath/DirectXMath.h>
GST_DEBUG_CATEGORY_EXTERN (gst_d3d12_screen_capture_debug);
#define GST_CAT_DEFAULT gst_d3d12_screen_capture_debug
diff -rupN gst-plugins-bad-1.24.3/sys/d3d12/gstd3d12pluginutils.cpp gst-plugins-bad-1.24.3-new/sys/d3d12/gstd3d12pluginutils.cpp
--- gst-plugins-bad-1.24.3/sys/d3d12/gstd3d12pluginutils.cpp 2024-04-30 01:15:23.000000000 +0200
+++ gst-plugins-bad-1.24.3-new/sys/d3d12/gstd3d12pluginutils.cpp 2024-05-02 11:20:02.265497112 +0200
@@ -24,7 +24,7 @@
#include "gstd3d12pluginutils.h"
#define _XM_NO_INTRINSICS_
-#include <DirectXMath.h>
+#include <directxmath/DirectXMath.h>
/* *INDENT-OFF* */
using namespace DirectX;

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
SHA512 (gst-plugins-bad-free-1.24.6.tar.xz) = 0fd26eab2d2a2cfff068ff88bb1b4e0aeae3350b04a1e910537eebc3e8e1601e8b7dcd6b866f1ba7280ae9babbbf782ed24ab1bf00a60f586fa0a723785d3973
6767eb8806a4444401bbb8a677b86020 gst-plugins-bad-free-1.6.0.tar.xz