summaryrefslogtreecommitdiff
path: root/audio/xmms-wma/patches
diff options
context:
space:
mode:
authorrillig <rillig>2008-01-06 18:21:37 +0000
committerrillig <rillig>2008-01-06 18:21:37 +0000
commitcce7fcfa77a39cdf3108d47e62660a5ea5b83f45 (patch)
tree4bd6c8068acb07125c3aa9b48fd0eafd2552eb7c /audio/xmms-wma/patches
parentd778ac13ac57ce4140bcf2979e557cb62ce156d6 (diff)
downloadpkgsrc-cce7fcfa77a39cdf3108d47e62660a5ea5b83f45.tar.gz
Updated xmms-wma to 1.0.5.
Changes in 1.0.5 - Added opportunity to build plug-in for player BMP. - Fix bug with blanks with use gnome-vfs in BMP. - WARNING: BEEPMP-WMA conflict with BMP-WMA. Remove BMP-WMA or do not use BEEPMP-WMA.
Diffstat (limited to 'audio/xmms-wma/patches')
-rw-r--r--audio/xmms-wma/patches/patch-ac59
1 files changed, 0 insertions, 59 deletions
diff --git a/audio/xmms-wma/patches/patch-ac b/audio/xmms-wma/patches/patch-ac
deleted file mode 100644
index 79c07927937..00000000000
--- a/audio/xmms-wma/patches/patch-ac
+++ /dev/null
@@ -1,59 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2005/05/23 08:50:36 rillig Exp $
-
---- ffmpeg-strip-wma/asf.c.orig Wed May 26 19:16:39 2004
-+++ ffmpeg-strip-wma/asf.c Sat Dec 11 21:32:58 2004
-@@ -16,10 +16,13 @@
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-+
-+#ifdef USE_ICONV
-+#include <iconv.h>
-+#endif
-+
- #include "avformat.h"
- #include "avi.h"
--//#include "mpegaudio.h"
--#include <iconv.h>
-
- #undef NDEBUG
- #include <assert.h>
-@@ -830,6 +833,7 @@
- return str;
- }
-
-+#ifdef USE_ICONV
- static void tag_recode(char *before, int len)
- {
- int result;
-@@ -859,6 +863,7 @@
- return;
- return;
- }
-+#endif
-
- static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size)
- {
-@@ -868,12 +873,17 @@
- q = buf;
- lenz = len;
- while (len > 0) {
-- c = get_byte(pb);
-- if ((q - buf) < buf_size-1)
-- *q++ = c;
-- len--;
-+ c = get_byte(pb);
-+ if ((q - buf) < buf_size - 1)
-+ *q++ = c;
-+ len--;
- }
-- tag_recode(buf, lenz);
-+
-+#ifdef USE_ICONV
-+ tag_recode(buf, lenz);
-+#else
-+ *q = '\0';
-+#endif
- }
-
- static int asf_probe(AVProbeData *pd)