Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
vlc.js
Manage
Activity
Members
Labels
Plan
Issues
43
Issue boards
Milestones
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jean-Baptiste Kempf
vlc.js
Merge requests
!25
Add support for native file system
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Add support for native file system
access_nativefs
into
incoming
Overview
6
Commits
4
Pipelines
0
Changes
8
All threads resolved!
Hide all comments
Closed
Mehdi Sabwat
requested to merge
access_nativefs
into
incoming
3 years ago
Overview
6
Commits
4
Pipelines
0
Changes
8
All threads resolved!
Hide all comments
Expand
supersedes
!19 (closed)
resolves
#29
Edited
3 years ago
by
Jean-Baptiste Kempf
0
0
Merge request reports
Compare
incoming
version 1
b02717a7
3 years ago
incoming (base)
and
latest version
latest version
8a02b39d
4 commits,
3 years ago
version 1
b02717a7
1 commit,
3 years ago
8 files
+
203
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
lib/libvlc.js
+
1
−
1
Options
@@ -228,7 +228,7 @@ export class Media {
this
.
module
=
module
;
let
path_ptr
=
module
.
allocateUTF8
(
path
)
this
.
media_ptr
=
module
.
_wasm_media_new_
path
(
path_ptr
);
this
.
media_ptr
=
module
.
_wasm_media_new_
location
(
path_ptr
);
module
.
_free
(
path_ptr
);
if
(
this
.
media_ptr
==
0
)
{
Loading