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
5d29b339
Commit
5d29b339
authored
Oct 26, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Plugin path
parent
998b5e6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
bindings/cil/testvlc.cs
bindings/cil/testvlc.cs
+7
-2
No files found.
bindings/cil/testvlc.cs
View file @
5d29b339
...
@@ -30,10 +30,12 @@ namespace VideoLAN.LibVLC.Test
...
@@ -30,10 +30,12 @@ namespace VideoLAN.LibVLC.Test
{
{
public
static
int
Main
(
string
[]
args
)
public
static
int
Main
(
string
[]
args
)
{
{
string
[]
argv
=
new
string
[
3
]{
"-vvv"
,
"-I"
,
"dummy"
};
string
[]
argv
=
new
string
[]{
"-vvv"
,
"-I"
,
"dummy"
,
"--plugin-path=../../modules"
};
Instance
vlc
=
VLC
.
CreateInstance
(
argv
);
Instance
vlc
=
VLC
.
CreateInstance
(
argv
);
MediaDescriptor
md
=
vlc
.
CreateDescriptor
(
args
[
0
]
);
MediaDescriptor
md
=
vlc
.
CreateDescriptor
(
"/dev/null"
);
md
.
Dispose
();
md
.
Dispose
();
PlaylistItem
item
=
null
;
PlaylistItem
item
=
null
;
...
@@ -44,10 +46,13 @@ namespace VideoLAN.LibVLC.Test
...
@@ -44,10 +46,13 @@ namespace VideoLAN.LibVLC.Test
vlc
.
Loop
=
false
;
vlc
.
Loop
=
false
;
vlc
.
TogglePause
();
vlc
.
TogglePause
();
Console
.
ReadLine
();
Console
.
ReadLine
();
vlc
.
Stop
();
if
(
item
!=
null
)
if
(
item
!=
null
)
vlc
.
Delete
(
item
);
vlc
.
Delete
(
item
);
vlc
.
Clear
();
vlc
.
Clear
();
Console
.
ReadLine
();
vlc
.
Dispose
();
vlc
.
Dispose
();
return
0
;
return
0
;
}
}
...
...
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