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
Martin Finkel
LibVLCSharp
Commits
1288f911
Commit
1288f911
authored
Jan 14, 2019
by
Martin Finkel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cppSharp comment formating
parent
2de68eff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
LibVLCSharp/Shared/Media.cs
LibVLCSharp/Shared/Media.cs
+2
-1
No files found.
LibVLCSharp/Shared/Media.cs
View file @
1288f911
...
@@ -548,7 +548,7 @@ namespace LibVLCSharp.Shared
...
@@ -548,7 +548,7 @@ namespace LibVLCSharp.Shared
/// </remarks>
/// </remarks>
public
void
ParseStop
()
=>
Native
.
LibVLCMediaParseStop
(
NativeReference
);
public
void
ParseStop
()
=>
Native
.
LibVLCMediaParseStop
(
NativeReference
);
/// <summary>Get media descriptor's elementary streams description
</summary>
/// <summary>Get media descriptor's elementary streams description
/// <para>address to store an allocated array of Elementary Streams</para>
/// <para>address to store an allocated array of Elementary Streams</para>
/// <para>descriptions (must be freed with libvlc_media_tracks_release</para>
/// <para>descriptions (must be freed with libvlc_media_tracks_release</para>
/// <para>by the caller) [OUT]</para>
/// <para>by the caller) [OUT]</para>
...
@@ -559,6 +559,7 @@ namespace LibVLCSharp.Shared
...
@@ -559,6 +559,7 @@ namespace LibVLCSharp.Shared
/// <para>Not doing this will result in an empty array.</para>
/// <para>Not doing this will result in an empty array.</para>
/// <para>LibVLC 2.1.0 and later.</para>
/// <para>LibVLC 2.1.0 and later.</para>
/// </remarks>
/// </remarks>
/// </summary>
public
MediaTrack
[]
Tracks
=>
MarshalUtils
.
Retrieve
(
NativeReference
,
(
IntPtr
nativeRef
,
out
IntPtr
array
)
=>
Native
.
LibVLCMediaTracksGet
(
nativeRef
,
out
array
),
public
MediaTrack
[]
Tracks
=>
MarshalUtils
.
Retrieve
(
NativeReference
,
(
IntPtr
nativeRef
,
out
IntPtr
array
)
=>
Native
.
LibVLCMediaTracksGet
(
nativeRef
,
out
array
),
MarshalUtils
.
PtrToStructure
<
MediaTrackStructure
>,
MarshalUtils
.
PtrToStructure
<
MediaTrackStructure
>,
m
=>
m
.
Build
(),
m
=>
m
.
Build
(),
...
...
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