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
3a6c32a6
Commit
3a6c32a6
authored
Jan 26, 2010
by
JP Dinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/control/video.c: drop debug printf()s.
parent
8fa162cf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
src/control/video.c
src/control/video.c
+0
-5
No files found.
src/control/video.c
View file @
3a6c32a6
...
@@ -809,8 +809,6 @@ void libvlc_video_set_logo_string( libvlc_media_player_t *p_mi,
...
@@ -809,8 +809,6 @@ void libvlc_video_set_logo_string( libvlc_media_player_t *p_mi,
libvlc_exception_t
*
p_e
)
libvlc_exception_t
*
p_e
)
{
{
vlogo_opt_t
*
opt
=
logo_option_bynumber
(
option
,
p_e
);
vlogo_opt_t
*
opt
=
logo_option_bynumber
(
option
,
p_e
);
printf
(
"logo set string (%u)%s = %s.
\n
"
,
option
,
(
opt
?
(
opt
->
name
)
:
"<unkn>"
),(
psz_value
?
psz_value
:
"<null>"
));
if
(
!
opt
)
return
;
if
(
!
opt
)
return
;
vlc_object_t
*
logo
=
get_logo_object
(
p_mi
,
p_e
);
vlc_object_t
*
logo
=
get_logo_object
(
p_mi
,
p_e
);
if
(
!
logo
)
return
;
if
(
!
logo
)
return
;
...
@@ -834,8 +832,6 @@ void libvlc_video_set_logo_int( libvlc_media_player_t *p_mi,
...
@@ -834,8 +832,6 @@ void libvlc_video_set_logo_int( libvlc_media_player_t *p_mi,
libvlc_exception_t
*
p_e
)
libvlc_exception_t
*
p_e
)
{
{
vlogo_opt_t
*
opt
=
logo_option_bynumber
(
option
,
p_e
);
vlogo_opt_t
*
opt
=
logo_option_bynumber
(
option
,
p_e
);
printf
(
"logo set integer (%u)%s = %i.
\n
"
,
option
,
(
opt
?
(
opt
->
name
)
:
"<unkn>"
),
value
);
if
(
!
opt
)
return
;
if
(
!
opt
)
return
;
if
(
!
opt
->
type
)
/* libvlc_logo_enable */
if
(
!
opt
->
type
)
/* libvlc_logo_enable */
...
@@ -871,7 +867,6 @@ int libvlc_video_get_logo_int( libvlc_media_player_t *p_mi,
...
@@ -871,7 +867,6 @@ int libvlc_video_get_logo_int( libvlc_media_player_t *p_mi,
unsigned
option
,
libvlc_exception_t
*
p_e
)
unsigned
option
,
libvlc_exception_t
*
p_e
)
{
{
vlogo_opt_t
*
opt
=
logo_option_bynumber
(
option
,
p_e
);
vlogo_opt_t
*
opt
=
logo_option_bynumber
(
option
,
p_e
);
printf
(
"logo get integer (%u)%s.
\n
"
,
option
,
opt
?
opt
->
name
:
"<unkn>"
);
if
(
!
opt
)
return
0
;
if
(
!
opt
)
return
0
;
vlc_object_t
*
logo
=
get_logo_object
(
p_mi
,
p_e
);
vlc_object_t
*
logo
=
get_logo_object
(
p_mi
,
p_e
);
...
...
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