Skip to content
Snippets Groups Projects

WIP: Add Wasm video display

Closed Mehdi Sabwat requested to merge wasm-video into master

The video output module will be the same as the one used for asmjs.

  • Window implementation
  • GL implementation
  • Display implementation (?)

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
132 132 LD := emcc
133 133 AR := emar
134 134 RANLIB := emranlib
135 CFLAGS="-pthread"
    • The commit title is misleading, it should be "mscripten: add implementation for clock_nanosleep"

      Did you implemented it yourself ? If not, you should write a comment about where it come from.

    • Please register or sign in to reply
  • Thomas Guillem
    Thomas Guillem @tguillem started a thread on commit 2e2271d1
  • 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);
  • Thomas Guillem
    Thomas Guillem @tguillem started a thread on commit 2e2271d1
  • 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
  • closed

  • Please register or sign in to reply
    Loading