]> git.sesse.net Git - vlc/commitdiff
lua: makes sure metadata is UTF8 encoded (some websites aren't using UTF8 charset)
authorRafaël Carré <funman@videolan.org>
Sun, 21 Oct 2007 13:44:22 +0000 (13:44 +0000)
committerRafaël Carré <funman@videolan.org>
Sun, 21 Oct 2007 13:44:22 +0000 (13:44 +0000)
modules/misc/lua/vlclua.c

index 35dcca4e274e5dbf77714586c7f182a0d89ef8eb..c7480e39256b5411ed28ed51b5985c37d19cd937 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <vlc/vlc.h>
 #include <vlc_meta.h>
+#include <vlc_charset.h>
 
 #include <lua.h>        /* Low level lua C API */
 #include <lauxlib.h>    /* Higher level C API */
@@ -349,8 +350,9 @@ void vlclua_read_meta_data( vlc_object_t *p_this, lua_State *p_state,
     if( lua_isstring( p_state, t ) )                        \
     {                                                       \
         psz_value = lua_tostring( p_state, t );             \
-        msg_Dbg( p_this, #b ": %s", psz_value );           \
-        input_item_Set ## b ( p_input, psz_value );   \
+        EnsureUTF8( psz_value );                            \
+        msg_Dbg( p_this, #b ": %s", psz_value );            \
+        input_item_Set ## b ( p_input, psz_value );         \
     }                                                       \
     lua_pop( p_state, 1 ); /* pop a */
     TRY_META( "title", Title );