WIP: Add Wasm video display
The video output module will be the same as the one used for asmjs.
- Window implementation
- GL implementation
- Display implementation (?)
Merge request reports
Activity
Filter activity
- modules/logger/emscripten.c 0 → 100644
41 return; 42 43 if (asprintf(&format2, "[LIBVLC DEBUG] %s %s: %s", p_item->psz_module, p_item->psz_object_type, format) < 0) 44 return; 45 switch (type) { 46 case VLC_MSG_ERR: 47 prio = EM_LOG_ERROR; 48 break; 49 case VLC_MSG_WARN: 50 prio = EM_LOG_WARN; 51 break; 52 default: 53 case VLC_MSG_DBG: 54 prio = EM_LOG_CONSOLE; 55 } 56 //__android_log_vprint(prio, "VLC", format2, ap); 22 22 if HAVE_ANDROID 23 23 logger_LTLIBRARIES += libandroid_logger_plugin.la 24 24 endif 25 26 libemscripten_logger_plugin_la_SOURCES = logger/emscripten.c 27 libemscripten_logger_plugin_la_CFLAGS = $(AM_CFLAGS) 28 libemscripten_logger_plugin_la_LIBADD = -llog