summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/gstreamer/files')
-rw-r--r--media-libs/gstreamer/files/digest-gstreamer-0.6.0-r21
-rw-r--r--media-libs/gstreamer/files/digest-gstreamer-0.6.1-r11
-rw-r--r--media-libs/gstreamer/files/digest-gstreamer-0.6.21
-rw-r--r--media-libs/gstreamer/files/digest-gstreamer-0.6.31
-rw-r--r--media-libs/gstreamer/files/digest-gstreamer-0.8.11
-rw-r--r--media-libs/gstreamer/files/gstreamer-0.6.0-sparc.patch53
-rw-r--r--media-libs/gstreamer/files/gstreamer-0.6.3-Werror.patch63
-rw-r--r--media-libs/gstreamer/files/gstreamer-0.6.3-gcc33.patch11
-rw-r--r--media-libs/gstreamer/files/gstreamer-default_scheduler_opt.patch33
-rw-r--r--media-libs/gstreamer/files/gstreamer-error_report.patch20
10 files changed, 1 insertions, 184 deletions
diff --git a/media-libs/gstreamer/files/digest-gstreamer-0.6.0-r2 b/media-libs/gstreamer/files/digest-gstreamer-0.6.0-r2
deleted file mode 100644
index 3650f861360a..000000000000
--- a/media-libs/gstreamer/files/digest-gstreamer-0.6.0-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3d0dec37678b33bbcb23cb2e20a83fe4 gstreamer-0.6.0.tar.bz2 1094712
diff --git a/media-libs/gstreamer/files/digest-gstreamer-0.6.1-r1 b/media-libs/gstreamer/files/digest-gstreamer-0.6.1-r1
deleted file mode 100644
index 847fdcb30108..000000000000
--- a/media-libs/gstreamer/files/digest-gstreamer-0.6.1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e9db8443c7679978b72d485c744f3189 gstreamer-0.6.1.tar.bz2 1063325
diff --git a/media-libs/gstreamer/files/digest-gstreamer-0.6.2 b/media-libs/gstreamer/files/digest-gstreamer-0.6.2
deleted file mode 100644
index 33c130bb276a..000000000000
--- a/media-libs/gstreamer/files/digest-gstreamer-0.6.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2eafaa3b7de1f501ed4b0462b3e065f9 gstreamer-0.6.2.tar.bz2 1222558
diff --git a/media-libs/gstreamer/files/digest-gstreamer-0.6.3 b/media-libs/gstreamer/files/digest-gstreamer-0.6.3
deleted file mode 100644
index cea7618af715..000000000000
--- a/media-libs/gstreamer/files/digest-gstreamer-0.6.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f9e9401c709074dc7bd600b0f3baab37 gstreamer-0.6.3.tar.bz2 1081182
diff --git a/media-libs/gstreamer/files/digest-gstreamer-0.8.1 b/media-libs/gstreamer/files/digest-gstreamer-0.8.1
new file mode 100644
index 000000000000..2fe884410c74
--- /dev/null
+++ b/media-libs/gstreamer/files/digest-gstreamer-0.8.1
@@ -0,0 +1 @@
+MD5 154c95169f343b53f15cc5a124ef673d gstreamer-0.8.1.tar.bz2 1177592
diff --git a/media-libs/gstreamer/files/gstreamer-0.6.0-sparc.patch b/media-libs/gstreamer/files/gstreamer-0.6.0-sparc.patch
deleted file mode 100644
index 885fcd7b5e67..000000000000
--- a/media-libs/gstreamer/files/gstreamer-0.6.0-sparc.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-*** gstreamer-0.6.0/gst/gstatomic_impl.h Tue Jan 28 19:22:32 2003
---- gstreamer-0.6.0.patched/gst/gstatomic_impl.h Mon Mar 3 19:05:11 2003
-***************
-*** 204,214 ****
-
- return result == 0;
- }
-
- /***** Sun SPARC *****/
-! #elif defined(HAVE_CPU_SPARC) && defined(__GNUC__)
-
- GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
-
- #ifdef GST_CONFIG_NO_SMP
- GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; }
---- 204,215 ----
-
- return result == 0;
- }
-
- /***** Sun SPARC *****/
-! /* disabled for now */
-! #elif defined(HAVE_CPU_SPARC) && defined(__GNUC__) && 0
-
- GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
-
- #ifdef GST_CONFIG_NO_SMP
- GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; }
-***************
-*** 269,279 ****
- {
- register volatile int *ptr asm ("g1");
- register int increment asm ("g2");
-
- ptr = &aint->counter;
-! increment = val;
-
- __asm__ __volatile__(
- "mov %%o7, %%g4\n\t"
- "call ___atomic_sub\n\t"
- " add %%o7, 8, %%o7\n"
---- 270,280 ----
- {
- register volatile int *ptr asm ("g1");
- register int increment asm ("g2");
-
- ptr = &aint->counter;
-! increment = 1;
-
- __asm__ __volatile__(
- "mov %%o7, %%g4\n\t"
- "call ___atomic_sub\n\t"
- " add %%o7, 8, %%o7\n"
diff --git a/media-libs/gstreamer/files/gstreamer-0.6.3-Werror.patch b/media-libs/gstreamer/files/gstreamer-0.6.3-Werror.patch
deleted file mode 100644
index ea904eb7f2dc..000000000000
--- a/media-libs/gstreamer/files/gstreamer-0.6.3-Werror.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-gstreamer is built with -Werror. However on platforms that don't have
-architecture specific implementations of the atomic functions, this
-code would cause the compile to fail, so comment out the line. This
-is particularly important at the moment on IA-64.
- -- agriffis, 13 Nov 2003
-
---- gstreamer-0.6.3/gst/gstatomic_impl.h.old 2003-08-03 16:52:19.000000000 -0400
-+++ gstreamer-0.6.3/gst/gstatomic_impl.h 2003-11-13 14:43:34.000000000 -0500
-@@ -415,7 +415,7 @@
- }
-
- #else
--#warning consider putting your architecture specific atomic implementations here
-+//#warning consider putting your architecture specific atomic implementations here
-
- /*
- * generic implementation
---- gstreamer-0.6.3/gst/elements/gstfilesrc.c.old 2003-11-14 13:41:30.000000000 -0500
-+++ gstreamer-0.6.3/gst/elements/gstfilesrc.c 2003-11-14 14:28:12.000000000 -0500
-@@ -396,8 +396,8 @@
- return NULL;
- }
- else if (mmapregion == MAP_FAILED) {
-- GST_DEBUG (0, "mmap (0x%x, %d, 0x%llx) : %s",
-- size, src->fd, offset, strerror (errno));
-+ GST_DEBUG (0, "mmap (0x%lx, %ld, %d, 0x%llx) : %s",
-+ (unsigned long)NULL, size, src->fd, offset, strerror (errno));
- return NULL;
- }
- GST_DEBUG (0, "mapped region %08lx+%08lx from file into memory at %p",
-@@ -667,8 +667,7 @@
-
- /* check for EOF */
- if (src->curoffset == src->filelen) {
-- GST_DEBUG (0, "filesrc eos %" G_GINT64_FORMAT
-- " %" G_GINT64_FORMAT, src->curoffset, src->filelen);
-+ GST_DEBUG (0, "filesrc eos %llx %lld", src->curoffset, src->filelen);
- gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
- }
-@@ -836,19 +835,19 @@
- if (offset > src->filelen)
- goto error;
- src->curoffset = offset;
-- GST_DEBUG(0, "seek set pending to %" G_GINT64_FORMAT, src->curoffset);
-+ GST_DEBUG(0, "seek set pending to %llx", src->curoffset);
- break;
- case GST_SEEK_METHOD_CUR:
- if (offset + src->curoffset > src->filelen)
- goto error;
- src->curoffset += offset;
-- GST_DEBUG(0, "seek cur pending to %" G_GINT64_FORMAT, src->curoffset);
-+ GST_DEBUG(0, "seek cur pending to %llx", src->curoffset);
- break;
- case GST_SEEK_METHOD_END:
- if (ABS (offset) > src->filelen)
- goto error;
- src->curoffset = src->filelen - ABS (offset);
-- GST_DEBUG(0, "seek end pending to %" G_GINT64_FORMAT, src->curoffset);
-+ GST_DEBUG(0, "seek end pending to %llx", src->curoffset);
- break;
- default:
- goto error;
diff --git a/media-libs/gstreamer/files/gstreamer-0.6.3-gcc33.patch b/media-libs/gstreamer/files/gstreamer-0.6.3-gcc33.patch
deleted file mode 100644
index cad137ea0765..000000000000
--- a/media-libs/gstreamer/files/gstreamer-0.6.3-gcc33.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- gstreamer-0.6.3/gst/gstplugin.c.old 2003-08-29 09:39:45.301019616 +0800
-+++ gstreamer-0.6.3/gst/gstplugin.c 2003-08-29 09:55:03.862377064 +0800
-@@ -180,7 +180,7 @@
- module = g_module_open (filename, G_MODULE_BIND_LAZY);
-
- if (module != NULL) {
-- if (g_module_symbol (module, "plugin_desc", (gpointer *)&desc)) {
-+ if (g_module_symbol (module, "plugin_desc", (gpointer *)((void *)&desc))) {
- GST_DEBUG (GST_CAT_PLUGIN_LOADING, "plugin \"%s\" loaded, called entry function...", filename);
-
- plugin->filename = g_strdup (filename);
diff --git a/media-libs/gstreamer/files/gstreamer-default_scheduler_opt.patch b/media-libs/gstreamer/files/gstreamer-default_scheduler_opt.patch
deleted file mode 100644
index f502be794a93..000000000000
--- a/media-libs/gstreamer/files/gstreamer-default_scheduler_opt.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -ur gstreamer-0.6.0/gst/gst.c gstreamer-0.6.0.optsched/gst/gst.c
---- gstreamer-0.6.0/gst/gst.c 2003-01-21 23:10:07.000000000 +0100
-+++ gstreamer-0.6.0.optsched/gst/gst.c 2003-02-05 22:07:30.000000000 +0100
-@@ -94,7 +94,7 @@
- #define NUL '\0'
- #endif
-
--/* default scheduler, 'basicomega', can be changed in
-+/* default scheduler, 'opt', can be changed in
- * gstscheduler.c in function gst_scheduler_factory_class_init
- */
- static const struct poptOption options[] = {
-@@ -108,7 +108,7 @@
- {"gst-plugin-spew", NUL, POPT_ARG_NONE|POPT_ARGFLAG_STRIP, NULL, ARG_PLUGIN_SPEW, "enable verbose plugin loading diagnostics", NULL},
- {"gst-plugin-path", NUL, POPT_ARG_STRING|POPT_ARGFLAG_STRIP, NULL, ARG_PLUGIN_PATH, "'" G_SEARCHPATH_SEPARATOR_S "'--separated path list for loading plugins", "PATHS"},
- {"gst-plugin-load", NUL, POPT_ARG_STRING|POPT_ARGFLAG_STRIP, NULL, ARG_PLUGIN_LOAD, "comma-separated list of plugins to preload in addition to the list stored in env variable GST_PLUGIN_PATH", "PLUGINS"},
-- {"gst-scheduler", NUL, POPT_ARG_STRING|POPT_ARGFLAG_STRIP, NULL, ARG_SCHEDULER, "scheduler to use ('basicomega' is the default)", "SCHEDULER"},
-+ {"gst-scheduler", NUL, POPT_ARG_STRING|POPT_ARGFLAG_STRIP, NULL, ARG_SCHEDULER, "scheduler to use ('opt' is the default)", "SCHEDULER"},
- {"gst-nothreads", NUL, POPT_ARG_NONE|POPT_ARGFLAG_STRIP, NULL, ARG_NOTHREADS, "use NOPs for all threading and locking operations", NULL},
- {"gst-registry", NUL, POPT_ARG_STRING|POPT_ARGFLAG_STRIP, NULL, ARG_REGISTRY, "registry to use" , "REGISTRY"},
- POPT_TABLEEND
-diff -ur gstreamer-0.6.0/gst/gstscheduler.c gstreamer-0.6.0.optsched/gst/gstscheduler.c
---- gstreamer-0.6.0/gst/gstscheduler.c 2003-01-18 15:11:36.000000000 +0100
-+++ gstreamer-0.6.0.optsched/gst/gstscheduler.c 2003-02-05 22:07:34.000000000 +0100
-@@ -802,7 +802,7 @@
- factory_parent_class = g_type_class_ref (GST_TYPE_PLUGIN_FEATURE);
-
- if (!_default_name)
-- _default_name = g_strdup ("basicomega");
-+ _default_name = g_strdup ("opt");
- }
-
- static void
diff --git a/media-libs/gstreamer/files/gstreamer-error_report.patch b/media-libs/gstreamer/files/gstreamer-error_report.patch
deleted file mode 100644
index 7254f4319f0f..000000000000
--- a/media-libs/gstreamer/files/gstreamer-error_report.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -ur gstreamer-0.6.0/gst/registries/gstxmlregistry.c gstreamer-0.6.0.patched/gst/registries/gstxmlregistry.c
---- gstreamer-0.6.0/gst/registries/gstxmlregistry.c 2003-01-16 22:22:06.000000000 +0100
-+++ gstreamer-0.6.0.patched/gst/registries/gstxmlregistry.c 2003-02-02 16:23:44.000000000 +0100
-@@ -625,11 +625,14 @@
- static GstRegistryReturn
- gst_xml_registry_load_plugin (GstRegistry *registry, GstPlugin *plugin)
- {
-+ GError *error = NULL;
- /* FIXME: add gerror support */
-- if (!gst_plugin_load_plugin (plugin, NULL)) {
-+ if (!gst_plugin_load_plugin (plugin, &error)) {
-+ if (error) {
-+ g_warning ("could not load plugin %s: %s", plugin->name, error->message);
-+ }
- return GST_REGISTRY_PLUGIN_LOAD_ERROR;
- }
--
- return GST_REGISTRY_OK;
- }
-