summaryrefslogtreecommitdiffstats
path: root/Gui/interface.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-14 12:17:04 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-14 12:17:04 +0000
commitb5bb6e8f73013279d8f6fb78b658258848a760cd (patch)
treeb6fb0b7c9ea115d19a5f362e61404cc32701d712 /Gui/interface.c
parent2d55a9e67cba1c79ce79341d7aa93c387fee3763 (diff)
downloadmpv-b5bb6e8f73013279d8f6fb78b658258848a760cd.tar.bz2
mpv-b5bb6e8f73013279d8f6fb78b658258848a760cd.tar.xz
add uri2filename converter
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6997 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/interface.c')
-rw-r--r--Gui/interface.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/Gui/interface.c b/Gui/interface.c
index c446512fcf..1e4d107beb 100644
--- a/Gui/interface.c
+++ b/Gui/interface.c
@@ -29,6 +29,14 @@
#include <inttypes.h>
#include <sys/types.h>
+#ifdef USE_ICONV
+ #ifdef __FreeBSD__
+ #include <giconv.h>
+ #else
+ #include <iconv.h>
+ #endif
+#endif
+
#include "../libmpdemux/stream.h"
#include "../libmpdemux/demuxer.h"
@@ -76,6 +84,49 @@ void gset( char ** str,char * what )
else gstrcat( str,what );
}
+#ifdef USE_ICONV
+char * gconvert_uri_to_filename( char * str )
+{
+ iconv_t d;
+ char * out = strdup( str );
+ char * tmp = NULL;
+ char * ize;
+ size_t inb,outb;
+ char * charset = "ISO8859-1";
+ char * cs;
+
+ if ( !strchr( str,'%' ) ) return str;
+
+ {
+ char * t = calloc( 1,strlen( out ) );
+ int i,c = 0;
+ for ( i=0;i < (int)strlen( out );i++ )
+ if ( out[i] != '%' ) t[c++]=out[i];
+ else
+ {
+ char tmp[4] = "0xXX";
+// if ( out[++i] == '%' ) { t[c++]='%'; continue; };
+ tmp[2]=out[++i]; tmp[3]=out[++i];
+ t[c++]=(char)strtol( tmp,(char **)NULL,0 );
+ }
+ free( out );
+ out=t;
+ }
+
+ if ( (cs=getenv( "CHARSET" )) && *cs ) charset=cs;
+
+ inb=outb=strlen( out );
+ tmp=calloc( 1,outb + 1 );
+ ize=tmp;
+ d=iconv_open( charset,"UTF-8" );
+ if ( (iconv_t)(-1) == d ) return str;
+ iconv( d,&out,&inb,&tmp,&outb );
+ iconv_close( d );
+ free( out );
+ return ize;
+}
+#endif
+
void guiInit( void )
{
memset( &guiIntfStruct,0,sizeof( guiIntfStruct ) );