changeset 1409:0f6573c34500 trunk

[svn] - properly hook up mms
author nenolod
date Sat, 15 Jul 2006 16:52:52 -0700
parents 8accd819fa5e
children 93c0af9bb521
files ChangeLog Plugins/Input/wma/libffwma/file.c
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Jul 15 16:47:58 2006 -0700
+++ b/ChangeLog	Sat Jul 15 16:52:52 2006 -0700
@@ -1,3 +1,12 @@
+2006-07-15 23:47:58 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1730]
+  - bump to version 1.1.1
+  
+
+  Changes:        Modified:
+  +1 -1           trunk/configure.ac  
+
+
 2006-07-15 23:39:37 +0000  Tony Vroon <chainsaw@gentoo.org>
   revision [1728]
   Newer libmms, from their CVS. Needs to be hooked up properly as it wants more arguments to its functions.
--- a/Plugins/Input/wma/libffwma/file.c	Sat Jul 15 16:47:58 2006 -0700
+++ b/Plugins/Input/wma/libffwma/file.c	Sat Jul 15 16:52:52 2006 -0700
@@ -136,7 +136,7 @@
 
 static int _mms_open(URLContext *h, const char *filename, int flags)
 {
-    mms_t *mms = mms_connect(filename);
+    mms_t *mms = mms_connect(NULL, NULL, filename, 1);
 
     if (mms == NULL)
 	return -ENOENT;
@@ -148,7 +148,7 @@
 static int _mms_read(URLContext *h, unsigned char *buf, int size)
 {
     mms_t *mms = (mms_t *) h->priv_data;
-    return mms_read(mms, (char*)buf, size);
+    return mms_read(NULL, mms, (char*)buf, size);
 }
 
 static int _mms_close(URLContext *h)