summaryrefslogtreecommitdiffstats
path: root/multimedia/gstreamer-plugins/files
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/gstreamer-plugins/files')
-rw-r--r--multimedia/gstreamer-plugins/files/patch-ext_a52dec_gsta52dec.c11
-rw-r--r--multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c31
-rw-r--r--multimedia/gstreamer-plugins/files/patch-ext_flac_gstflacenc.c20
-rw-r--r--multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c13
-rw-r--r--multimedia/gstreamer-plugins/files/patch-gst_rtp_rtp-packet.c10
5 files changed, 51 insertions, 34 deletions
diff --git a/multimedia/gstreamer-plugins/files/patch-ext_a52dec_gsta52dec.c b/multimedia/gstreamer-plugins/files/patch-ext_a52dec_gsta52dec.c
deleted file mode 100644
index 05c0e5366..000000000
--- a/multimedia/gstreamer-plugins/files/patch-ext_a52dec_gsta52dec.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- ext/a52dec/gsta52dec.c.orig Sun Apr 6 18:58:19 2003
-+++ ext/a52dec/gsta52dec.c Sun Apr 20 13:16:28 2003
-@@ -25,7 +25,7 @@
-
- #include <stdlib.h>
-
--#ifdef HAVE_STDINT_H
-+#if defined(HAVE_STDINT_H) || defined(__FreeBSD__)
- #include <stdint.h>
- #else
- /* (Ronald) hacky... can't include stdint.h because it's not available
diff --git a/multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c b/multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c
new file mode 100644
index 000000000..180258708
--- /dev/null
+++ b/multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c
@@ -0,0 +1,31 @@
+--- ext/ffmpeg/gstffmpegcodecmap.c.orig Fri Feb 6 15:29:09 2004
++++ ext/ffmpeg/gstffmpegcodecmap.c Fri Feb 6 15:40:14 2004
+@@ -44,13 +44,13 @@
+ "width", G_TYPE_INT, context->width, \
+ "height", G_TYPE_INT, context->height, \
+ "framerate", G_TYPE_DOUBLE, 1. * context->frame_rate / \
+- context->frame_rate_base, \
++ context->frame_rate_base , \
+ ##props, NULL) \
+ : \
+ gst_caps_new_simple (mimetype, \
+ "width", GST_TYPE_INT_RANGE, 16, 4096, \
+ "height", GST_TYPE_INT_RANGE, 16, 4096, \
+- "framerate", GST_TYPE_DOUBLE_RANGE, 0., G_MAXDOUBLE, \
++ "framerate", GST_TYPE_DOUBLE_RANGE, 0., G_MAXDOUBLE , \
+ ##props, NULL)
+
+ /* same for audio - now with channels/sample rate
+@@ -60,10 +60,10 @@
+ (context != NULL) ? \
+ gst_caps_new_simple (mimetype, \
+ "rate", G_TYPE_INT, context->sample_rate, \
+- "channels", G_TYPE_INT, context->channels, \
++ "channels", G_TYPE_INT, context->channels , \
+ ##props, NULL) \
+ : \
+- gst_caps_new_simple (mimetype, \
++ gst_caps_new_simple (mimetype , \
+ ##props, NULL)
+
+ /* Convert a FFMPEG codec ID and optional AVCodecContext
diff --git a/multimedia/gstreamer-plugins/files/patch-ext_flac_gstflacenc.c b/multimedia/gstreamer-plugins/files/patch-ext_flac_gstflacenc.c
new file mode 100644
index 000000000..b42b35cb7
--- /dev/null
+++ b/multimedia/gstreamer-plugins/files/patch-ext_flac_gstflacenc.c
@@ -0,0 +1,20 @@
+--- ext/flac/gstflacenc.c.orig Fri Feb 6 15:43:38 2004
++++ ext/flac/gstflacenc.c Fri Feb 6 16:15:23 2004
+@@ -575,7 +575,7 @@
+ gst_flacenc_set_metadata (flacenc);
+ state = FLAC__seekable_stream_encoder_init (flacenc->encoder);
+ if (state != FLAC__STREAM_ENCODER_OK) {
+- GST_ELEMENT_ERROR (flacenc, LIBRARY, INIT, NULL,
++ GST_ELEMENT_ERROR (flacenc, LIBRARY, INIT, (NULL),
+ ("could not initialize encoder (wrong parameters?)"));
+ return;
+ }
+@@ -610,7 +610,7 @@
+ flacenc->data = NULL;
+
+ if (!res) {
+- GST_ELEMENT_ERROR (flacenc, STREAM, ENCODE, NULL, NULL);
++ GST_ELEMENT_ERROR (flacenc, STREAM, ENCODE, (NULL), (NULL));
+ }
+ }
+
diff --git a/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c b/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c
deleted file mode 100644
index 288478b29..000000000
--- a/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- ext/mad/gstid3tag.c.orig Fri Dec 19 15:09:09 2003
-+++ ext/mad/gstid3tag.c Fri Dec 19 15:09:33 2003
-@@ -474,8 +474,9 @@
- tmp = strtoul (utf8, &check, 10);
- if (*check != '\0') break;
- if (strcmp (tag_name, GST_TAG_DATE) == 0) {
-+ GDate *d;
- if (tmp == 0) break;
-- GDate *d = g_date_new_dmy (1, 1, tmp);
-+ d = g_date_new_dmy (1, 1, tmp);
- tmp = g_date_get_julian (d);
- g_date_free (d);
- }
diff --git a/multimedia/gstreamer-plugins/files/patch-gst_rtp_rtp-packet.c b/multimedia/gstreamer-plugins/files/patch-gst_rtp_rtp-packet.c
deleted file mode 100644
index b65d5146a..000000000
--- a/multimedia/gstreamer-plugins/files/patch-gst_rtp_rtp-packet.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- gst/rtp/rtp-packet.c.orig Sat Nov 15 01:59:32 2003
-+++ gst/rtp/rtp-packet.c Sat Nov 15 01:59:44 2003
-@@ -26,6 +26,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
-+#include <sys/types.h>
- #include <netinet/in.h>
- #include <glib.h>
-