Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
39df3350
Commit
39df3350
authored
May 04, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"[PATCH] show input index-number in vlm show" by Ilkka Ollakka
parent
970109d8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
THANKS
THANKS
+1
-1
src/input/vlm.c
src/input/vlm.c
+7
-1
No files found.
THANKS
View file @
39df3350
...
@@ -81,7 +81,7 @@ Haakon Meland Eriksen - Norwegian translation
...
@@ -81,7 +81,7 @@ Haakon Meland Eriksen - Norwegian translation
Han HoJoong <0demon0 at paran dot com> - Korean translation
Han HoJoong <0demon0 at paran dot com> - Korean translation
Hans-Peter Jansen <hpj at urpla.net> - patch for module options handling
Hans-Peter Jansen <hpj at urpla.net> - patch for module options handling
Igor Helman - VLM msecseek command
Igor Helman - VLM msecseek command
Ilkka Ollakka - SDP bitrate patch,
VLM play indexing start fix
Ilkka Ollakka - SDP bitrate patch,
various VLM fixes
Jan Gerber <j at v2v dot org> - patch theora decoding aspect ratio
Jan Gerber <j at v2v dot org> - patch theora decoding aspect ratio
Jan Van Boghout <vlc at macrabbit.com> - iTunes like slider for OSX intf
Jan Van Boghout <vlc at macrabbit.com> - iTunes like slider for OSX intf
Javier Varela <tonxabar at hotmail.com> - Spanish translation
Javier Varela <tonxabar at hotmail.com> - Spanish translation
...
...
src/input/vlm.c
View file @
39df3350
...
@@ -1373,7 +1373,13 @@ static vlm_message_t *vlm_ShowMedia( vlm_t *p_vlm, vlm_media_sys_t *p_media )
...
@@ -1373,7 +1373,13 @@ static vlm_message_t *vlm_ShowMedia( vlm_t *p_vlm, vlm_media_sys_t *p_media )
p_msg_sub
=
vlm_MessageAdd
(
p_msg
,
vlm_MessageNew
(
"inputs"
,
NULL
)
);
p_msg_sub
=
vlm_MessageAdd
(
p_msg
,
vlm_MessageNew
(
"inputs"
,
NULL
)
);
for
(
i
=
0
;
i
<
p_cfg
->
i_input
;
i
++
)
for
(
i
=
0
;
i
<
p_cfg
->
i_input
;
i
++
)
vlm_MessageAdd
(
p_msg_sub
,
vlm_MessageNew
(
p_cfg
->
ppsz_input
[
i
],
NULL
)
);
{
char
*
psz_tmp
;
asprintf
(
&
psz_tmp
,
"%d"
,
i
+
1
);
vlm_MessageAdd
(
p_msg_sub
,
vlm_MessageNew
(
psz_tmp
,
p_cfg
->
ppsz_input
[
i
]
)
);
free
(
psz_tmp
);
}
vlm_MessageAdd
(
p_msg
,
vlm_MessageAdd
(
p_msg
,
vlm_MessageNew
(
"output"
,
p_cfg
->
psz_output
?
p_cfg
->
psz_output
:
""
)
);
vlm_MessageNew
(
"output"
,
p_cfg
->
psz_output
?
p_cfg
->
psz_output
:
""
)
);
...
...
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