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
25c59e90
Commit
25c59e90
authored
Aug 25, 2009
by
Erwan Tulou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skins2: cosmetic (replace \t with 4 spaces)
parent
f0270d55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
22 deletions
+22
-22
modules/gui/skins2/commands/cmd_update_item.cpp
modules/gui/skins2/commands/cmd_update_item.cpp
+22
-22
No files found.
modules/gui/skins2/commands/cmd_update_item.cpp
View file @
25c59e90
...
...
@@ -39,38 +39,38 @@ void CmdUpdateItem::execute()
if
(
pPlaylist
==
NULL
)
return
;
input_thread_t
*
p_input
=
playlist_CurrentInput
(
pPlaylist
);
input_thread_t
*
p_input
=
playlist_CurrentInput
(
pPlaylist
);
if
(
!
p_input
)
return
;
// Get playlist item information
input_item_t
*
pItem
=
input_GetItem
(
p_input
);
// Get playlist item information
input_item_t
*
pItem
=
input_GetItem
(
p_input
);
char
*
pszName
=
input_item_GetName
(
pItem
);
char
*
pszUri
=
input_item_GetURI
(
pItem
);
string
name
=
pszName
;
// XXX: This should be done in VLC core, not here...
// Remove path information if any
OSFactory
*
pFactory
=
OSFactory
::
instance
(
getIntf
()
);
string
::
size_type
pos
=
name
.
rfind
(
pFactory
->
getDirSeparator
()
);
if
(
pos
!=
string
::
npos
)
{
name
=
name
.
substr
(
pos
+
1
,
name
.
size
()
-
pos
+
1
);
}
UString
srcName
(
getIntf
(),
name
.
c_str
()
);
UString
srcURI
(
getIntf
(),
pszUri
);
string
name
=
pszName
;
// XXX: This should be done in VLC core, not here...
// Remove path information if any
OSFactory
*
pFactory
=
OSFactory
::
instance
(
getIntf
()
);
string
::
size_type
pos
=
name
.
rfind
(
pFactory
->
getDirSeparator
()
);
if
(
pos
!=
string
::
npos
)
{
name
=
name
.
substr
(
pos
+
1
,
name
.
size
()
-
pos
+
1
);
}
UString
srcName
(
getIntf
(),
name
.
c_str
()
);
UString
srcURI
(
getIntf
(),
pszUri
);
free
(
pszName
);
free
(
pszUri
);
// Create commands to update the stream variables
CmdSetText
*
pCmd1
=
new
CmdSetText
(
getIntf
(),
m_rStreamName
,
srcName
);
CmdSetText
*
pCmd2
=
new
CmdSetText
(
getIntf
(),
m_rStreamURI
,
srcURI
);
// Push the commands in the asynchronous command queue
AsyncQueue
*
pQueue
=
AsyncQueue
::
instance
(
getIntf
()
);
pQueue
->
push
(
CmdGenericPtr
(
pCmd1
),
false
);
pQueue
->
push
(
CmdGenericPtr
(
pCmd2
),
false
);
vlc_object_release
(
p_input
);
// Create commands to update the stream variables
CmdSetText
*
pCmd1
=
new
CmdSetText
(
getIntf
(),
m_rStreamName
,
srcName
);
CmdSetText
*
pCmd2
=
new
CmdSetText
(
getIntf
(),
m_rStreamURI
,
srcURI
);
// Push the commands in the asynchronous command queue
AsyncQueue
*
pQueue
=
AsyncQueue
::
instance
(
getIntf
()
);
pQueue
->
push
(
CmdGenericPtr
(
pCmd1
),
false
);
pQueue
->
push
(
CmdGenericPtr
(
pCmd2
),
false
);
vlc_object_release
(
p_input
);
}
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