diff stream/asf_mmst_streaming.c @ 29291:79f3477b277e

Using nl_langinfo in the asf mmst implementation makes no sense since MPlayer does not use setlocale. Just default to UTF-8 as input charset until there is a better solution.
author reimar
date Sun, 31 May 2009 13:09:48 +0000
parents 0f1b5b68af32
children c6356454b724
line wrap: on
line diff
--- a/stream/asf_mmst_streaming.c	Sun May 31 13:00:51 2009 +0000
+++ b/stream/asf_mmst_streaming.c	Sun May 31 13:09:48 2009 +0000
@@ -49,9 +49,6 @@
 
 #ifdef CONFIG_ICONV
 #include <iconv.h>
-#ifdef HAVE_LANGINFO
-#include <langinfo.h>
-#endif
 #endif
 
 #include "url.h"
@@ -574,11 +571,7 @@
 
   /* prepare for the url encoding conversion */
 #ifdef CONFIG_ICONV
-#ifdef HAVE_LANGINFO
-  url_conv = iconv_open("UTF-16LE",nl_langinfo(CODESET));
-#else
-  url_conv = iconv_open("UTF-16LE", NULL);
-#endif
+  url_conv = iconv_open("UTF-16LE", "UTF-8");
 #endif
 
   snprintf (str, 1023, "\034\003NSPlayer/7.0.0.1956; {33715801-BAB3-9D85-24E9-03B90328270A}; Host: %s", url1->hostname);