Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
8ebc7def
Commit
8ebc7def
authored
Feb 22, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use @see instead of @ref
parent
99088673
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
bindings/cil/src/instance.cs
bindings/cil/src/instance.cs
+2
-4
No files found.
bindings/cil/src/instance.cs
View file @
8ebc7def
...
...
@@ -193,8 +193,6 @@ namespace VideoLAN.LibVLC
* First, you need to create a VLC instance. This will load and setup the
* native VLC runtime, the VLC configuration, the list of available plugins,
* the platform adaptation and the VLC log messages and objects subsystems
* (see \ref VideoLAN::LibVLC::VLC for details).
*
* @code
* using System;
* using VideoLAN.LibVLC;
...
...
@@ -211,15 +209,15 @@ namespace VideoLAN.LibVLC
* string[] args = new string[]{ "-v", "--ignore-config" };
* VLC vlc = new VLC(args);
* @endcode
* @see VideoLAN::LibVLC::VLC
*
* To play media, you need a media and a player.
* See the \ref VideoLAN::LibVLC::Media
* and \ref VideoLAN::LibVLC::Player classes for details.
* @code
* Media media = new Media(vlc, "http://www.example.com/video.ogv");
* Player player = new Player(media);
* player.Play();
* @endcode
* @see VideoLAN::LibVLC::Media @see VideoLAN::LibVLC::Player
*
* All these objects use unmanaged resources.
* They all implement the IDisposeable interface.
...
...
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