diff options
author | 2005-04-25 14:34:39 +0000 | |
---|---|---|
committer | 2005-04-25 14:34:39 +0000 | |
commit | 82f51825a1f7350660cd6b61dd2d1b72e20743c3 (patch) | |
tree | 68b0772eaeef7e90c7b726e5d3e49c87020ad9e8 /media-libs/gst-plugins/files | |
parent | cleaning (diff) | |
download | gentoo-2-82f51825a1f7350660cd6b61dd2d1b72e20743c3.tar.gz gentoo-2-82f51825a1f7350660cd6b61dd2d1b72e20743c3.tar.bz2 gentoo-2-82f51825a1f7350660cd6b61dd2d1b72e20743c3.zip |
removing 0.6.x
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-libs/gst-plugins/files')
-rw-r--r-- | media-libs/gst-plugins/files/digest-gst-plugins-0.6.4 | 1 | ||||
-rw-r--r-- | media-libs/gst-plugins/files/gst-plugins-0.6.4-gcc2_fix.patch | 19 |
2 files changed, 0 insertions, 20 deletions
diff --git a/media-libs/gst-plugins/files/digest-gst-plugins-0.6.4 b/media-libs/gst-plugins/files/digest-gst-plugins-0.6.4 deleted file mode 100644 index fee3febfe402..000000000000 --- a/media-libs/gst-plugins/files/digest-gst-plugins-0.6.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 d62e6cd3750863b6395e4c1030223690 gst-plugins-0.6.4.tar.bz2 1900957 diff --git a/media-libs/gst-plugins/files/gst-plugins-0.6.4-gcc2_fix.patch b/media-libs/gst-plugins/files/gst-plugins-0.6.4-gcc2_fix.patch deleted file mode 100644 index dab58a0ee927..000000000000 --- a/media-libs/gst-plugins/files/gst-plugins-0.6.4-gcc2_fix.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -uNr gst-plugins-0.6.4/gst/level/filter.func gst-plugins-0.6.4.patch/gst/level/filter.func ---- gst-plugins-0.6.4/gst/level/filter.func 2003-10-05 18:46:21.000000000 +0200 -+++ gst-plugins-0.6.4.patch/gst/level/filter.func 2003-10-29 10:54:36.000000000 +0100 -@@ -6,13 +6,14 @@ - */ - { - register int j; -+ gdouble normalizer; - double squaresum = 0.0; /* square sum of the integer samples */ - register double square = 0.0; /* Square */ - register double PSS = 0.0; /* Peak Square Sample */ - - *CS = 0.0; /* Cumulative Square for this block */ - -- gdouble normalizer = (double) (1 << resolution); -+ normalizer = (double) (1 << resolution); - - /* - * process data here |