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
cf6cd768
Commit
cf6cd768
authored
Aug 18, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused NODBG object flag
parent
ce946ab3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
include/vlc_objects.h
include/vlc_objects.h
+0
-1
src/misc/messages.c
src/misc/messages.c
+1
-2
No files found.
include/vlc_objects.h
View file @
cf6cd768
...
@@ -32,7 +32,6 @@
...
@@ -32,7 +32,6 @@
*/
*/
/* Object flags */
/* Object flags */
#define OBJECT_FLAGS_NODBG 0x0001
#define OBJECT_FLAGS_QUIET 0x0002
#define OBJECT_FLAGS_QUIET 0x0002
#define OBJECT_FLAGS_NOINTERACT 0x0004
#define OBJECT_FLAGS_NOINTERACT 0x0004
...
...
src/misc/messages.c
View file @
cf6cd768
...
@@ -266,8 +266,7 @@ void msg_GenericVa (vlc_object_t *p_this, int i_type,
...
@@ -266,8 +266,7 @@ void msg_GenericVa (vlc_object_t *p_this, int i_type,
assert
(
p_this
);
assert
(
p_this
);
if
(
p_this
->
i_flags
&
OBJECT_FLAGS_QUIET
||
if
(
p_this
->
i_flags
&
OBJECT_FLAGS_QUIET
)
(
p_this
->
i_flags
&
OBJECT_FLAGS_NODBG
&&
i_type
==
VLC_MSG_DBG
)
)
return
;
return
;
msg_bank_t
*
bank
=
libvlc_bank
(
p_this
->
p_libvlc
);
msg_bank_t
*
bank
=
libvlc_bank
(
p_this
->
p_libvlc
);
...
...
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