Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
99aeeff1
Commit
99aeeff1
authored
Feb 22, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
play command fix by ILEoo (see [18938]).
parent
877636c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/input/vlm.c
src/input/vlm.c
+3
-3
No files found.
src/input/vlm.c
View file @
99aeeff1
...
...
@@ -2500,7 +2500,7 @@ static int Manage( vlc_object_t* p_object )
{
/* FIXME, find a way to select the right instance */
char
buffer
[
12
];
sprintf
(
buffer
,
"%d"
,
p_instance
->
i_index
);
sprintf
(
buffer
,
"%d"
,
p_instance
->
i_index
+
1
);
vlm_MediaControl
(
vlm
,
p_media
,
p_instance
->
psz_name
,
"play"
,
buffer
);
}
...
...
@@ -2509,8 +2509,8 @@ static int Manage( vlc_object_t* p_object )
if
(
vlm_MediaControl
(
vlm
,
p_media
,
p_instance
->
psz_name
,
"stop"
,
0
)
==
VLC_SUCCESS
)
{
j
--
;
/* the aray is one element smaller now. */
}
j
--
;
/* the aray is one element smaller now. */
}
}
}
}
...
...
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