Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
cc072d46
Commit
cc072d46
authored
Jun 17, 2016
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc: media: Fix inverted parameters
parent
f8acefe5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/media.c
lib/media.c
+2
-2
No files found.
lib/media.c
View file @
cc072d46
...
...
@@ -795,7 +795,7 @@ static int media_parse(libvlc_media_t *media, bool b_async,
void
libvlc_media_parse
(
libvlc_media_t
*
media
)
{
media_parse
(
media
,
false
,
-
1
,
libvlc_media_fetch_local
);
media_parse
(
media
,
false
,
libvlc_media_fetch_local
,
-
1
);
}
/**************************************************************************
...
...
@@ -804,7 +804,7 @@ libvlc_media_parse(libvlc_media_t *media)
void
libvlc_media_parse_async
(
libvlc_media_t
*
media
)
{
media_parse
(
media
,
true
,
-
1
,
libvlc_media_fetch_local
);
media_parse
(
media
,
true
,
libvlc_media_fetch_local
,
-
1
);
}
/**************************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment