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
976c7dd2
Commit
976c7dd2
authored
Sep 05, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some debug
parent
a7f6a75d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
17 deletions
+0
-17
modules/codec/wmafixed/wma.c
modules/codec/wmafixed/wma.c
+0
-6
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+0
-4
modules/gui/qt4/util/customwidgets.cpp
modules/gui/qt4/util/customwidgets.cpp
+0
-7
No files found.
modules/codec/wmafixed/wma.c
View file @
976c7dd2
...
@@ -197,9 +197,6 @@ static aout_buffer_t *DecodeFrame( decoder_t *p_dec, block_t **pp_block )
...
@@ -197,9 +197,6 @@ static aout_buffer_t *DecodeFrame( decoder_t *p_dec, block_t **pp_block )
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
block_t
*
p_block
=
*
pp_block
;
block_t
*
p_block
=
*
pp_block
;
aout_buffer_t
*
p_aout_buffer
=
NULL
;
aout_buffer_t
*
p_aout_buffer
=
NULL
;
#ifdef NDEBUG
mtime_t
start
=
mdate
();
/* for statistics */
#endif
if
(
!
p_block
)
return
NULL
;
if
(
!
p_block
)
return
NULL
;
...
@@ -300,9 +297,6 @@ static aout_buffer_t *DecodeFrame( decoder_t *p_dec, block_t **pp_block )
...
@@ -300,9 +297,6 @@ static aout_buffer_t *DecodeFrame( decoder_t *p_dec, block_t **pp_block )
p_aout_buffer
=
SplitBuffer
(
p_dec
);
p_aout_buffer
=
SplitBuffer
(
p_dec
);
assert
(
p_aout_buffer
);
assert
(
p_aout_buffer
);
#ifdef NDEBUG
msg_Dbg
(
p_dec
,
"%s took %"
PRIi64
" us"
,
__func__
,
mdate
()
-
start
);
#endif
return
p_aout_buffer
;
return
p_aout_buffer
;
}
}
...
...
modules/gui/qt4/components/interface_widgets.cpp
View file @
976c7dd2
...
@@ -144,10 +144,6 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
...
@@ -144,10 +144,6 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
XSelectInput
(
dpy
,
w
,
attr
.
your_event_mask
);
XSelectInput
(
dpy
,
w
,
attr
.
your_event_mask
);
#endif
#endif
sync
();
sync
();
#ifndef NDEBUG
msg_Dbg
(
p_intf
,
"embedded video ready (handle %p)"
,
(
void
*
)
stable
->
winId
()
);
#endif
return
stable
->
winId
();
return
stable
->
winId
();
}
}
...
...
modules/gui/qt4/util/customwidgets.cpp
View file @
976c7dd2
...
@@ -337,18 +337,11 @@ void AnimatedIcon::play( int loops, int interval )
...
@@ -337,18 +337,11 @@ void AnimatedIcon::play( int loops, int interval )
{
{
if
(
interval
<
20
)
if
(
interval
<
20
)
{
{
#ifndef NDEBUG
printf
(
"AnimatedIcon::play(): interval is too short (%d ms)"
,
interval
);
#endif
interval
=
20
;
interval
=
20
;
}
}
if
(
!
mIdleFrame
&&
(
mFrames
.
isEmpty
()
||
loops
!=
0
)
)
if
(
!
mIdleFrame
&&
(
mFrames
.
isEmpty
()
||
loops
!=
0
)
)
{
{
#ifndef NDEBUG
printf
(
"AnimatedIcon::play(): no frames to display"
);
#endif
return
;
return
;
}
}
...
...
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