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
f957d62e
Commit
f957d62e
authored
Mar 19, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix string format.
parent
b6c753c6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/skins2/controls/ctrl_video.cpp
modules/gui/skins2/controls/ctrl_video.cpp
+1
-1
modules/gui/skins2/src/vout_manager.cpp
modules/gui/skins2/src/vout_manager.cpp
+2
-2
No files found.
modules/gui/skins2/controls/ctrl_video.cpp
View file @
f957d62e
...
...
@@ -118,7 +118,7 @@ void CtrlVideo::setLayout( GenericLayout *pLayout,
// register Video Control
VoutManager
::
instance
(
getIntf
()
)
->
registerCtrlVideo
(
this
);
msg_Dbg
(
getIntf
(),
"New VideoControl detected(%
x
), useability=%s"
,
msg_Dbg
(
getIntf
(),
"New VideoControl detected(%
p
), useability=%s"
,
this
,
m_bIsUseable
?
"true"
:
"false"
);
}
...
...
modules/gui/skins2/src/vout_manager.cpp
View file @
f957d62e
...
...
@@ -199,7 +199,7 @@ void* VoutManager::acceptVout( vout_thread_t* pVout, int width, int height )
// save vout characteristics
m_SavedVoutVec
.
push_back
(
SavedVout
(
pVout
,
pVoutWindow
,
pCtrlVideo
)
);
msg_Dbg
(
getIntf
(),
"New incoming vout=0x%
x, handle=0x%x, VideoCtrl=0x%x
"
,
msg_Dbg
(
getIntf
(),
"New incoming vout=0x%
p, handle=0x%p, VideoCtrl=0x%p
"
,
pVout
,
handle
,
pCtrlVideo
);
return
handle
;
...
...
@@ -249,7 +249,7 @@ void VoutManager::releaseWindow( intf_thread_t *pIntf, vout_window_t *pWnd )
{
if
(
(
*
it
).
pVout
==
pVout
)
{
msg_Dbg
(
pIntf
,
"vout released vout=0x%
x, VideoCtrl=0x%x
"
,
msg_Dbg
(
pIntf
,
"vout released vout=0x%
p, VideoCtrl=0x%p
"
,
pVout
,
(
*
it
).
pCtrlVideo
);
// if a video control was being used, detach from it
...
...
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