]> git.sesse.net Git - vlc/blobdiff - modules/lua/meta.c
OpenCV example: move to C++ and opencv2 APIs
[vlc] / modules / lua / meta.c
index 650fb0d98db1dd76651624949dc987346f1834cd..824dd866a24f5279325ccfa368e1120c1ce41b27 100644 (file)
@@ -71,9 +71,7 @@ static lua_State * init( vlc_object_t *p_this, input_item_t * p_item, const char
     luaopen_strings( L );
     luaopen_variables( L );
     luaopen_object( L );
-    luaopen_misc( L );
     luaopen_xml( L );
-    luaopen_md5( L );
     luaopen_input_item( L, p_item );
 
     if( vlclua_add_modules_path( p_this, L, psz_filename ) )
@@ -194,7 +192,7 @@ static int read_meta( vlc_object_t *p_this, const char * psz_filename,
     int i_ret = run(p_this, psz_filename, L, "read_meta");
     lua_close( L );
 
-    // Continue even if an error occured: all "meta reader" are always run.
+    // Continue even if an error occurred: all "meta reader" are always run.
     return i_ret == VLC_SUCCESS ? VLC_EGENERIC : i_ret;
 }