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
b321beb4
Commit
b321beb4
authored
Mar 19, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use NDEBUG
parent
484c9311
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
modules/access/http.c
modules/access/http.c
+1
-1
modules/audio_output/sdl.c
modules/audio_output/sdl.c
+1
-1
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+1
-1
modules/mux/mpeg/pes.c
modules/mux/mpeg/pes.c
+1
-1
modules/video_output/sdl.c
modules/video_output/sdl.c
+1
-1
src/video_output/vout_pictures.c
src/video_output/vout_pictures.c
+1
-1
src/vlc.c
src/vlc.c
+1
-1
No files found.
modules/access/http.c
View file @
b321beb4
...
...
@@ -332,7 +332,7 @@ connect:
if
(
p_access
->
b_die
||
Connect
(
p_access
,
0
)
)
goto
error
;
#if
def
DEBUG
#if
ndef N
DEBUG
case
0
:
break
;
...
...
modules/audio_output/sdl.c
View file @
b321beb4
...
...
@@ -94,7 +94,7 @@ static int Open ( vlc_object_t *p_this )
/* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet */
i_flags
|=
SDL_INIT_EVENTTHREAD
;
#endif
#if
def
DEBUG
#if
ndef N
DEBUG
/* In debug mode you may want vlc to dump a core instead of staying
* stuck */
i_flags
|=
SDL_INIT_NOPARACHUTE
;
...
...
modules/gui/macosx/playlist.m
View file @
b321beb4
...
...
@@ -1384,7 +1384,7 @@
[
o_outline_dict
setObject
:
o_value
forKey
:[
NSString
stringWithFormat
:
@"%p"
,
[
o_value
pointerValue
]]];
#if
def
DEBUG
#if
ndef N
DEBUG
msg_Dbg
(
VLCIntf
,
"adding item %p"
,
[
o_value
pointerValue
]
);
#endif
return
o_value
;
...
...
modules/mux/mpeg/pes.c
View file @
b321beb4
...
...
@@ -273,7 +273,7 @@ int E_( EStoPES )( sout_instance_t *p_sout, block_t **pp_pes, block_t *p_es,
*
pp_pes
=
p_pes
=
NULL
;
#if
def
DEBUG
#if
ndef N
DEBUG
memset
(
header
,
0
,
50
);
#endif
...
...
modules/video_output/sdl.c
View file @
b321beb4
...
...
@@ -198,7 +198,7 @@ static int Open ( vlc_object_t *p_this )
/* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet*/
|
SDL_INIT_EVENTTHREAD
#endif
#if
def
DEBUG
#if
ndef N
DEBUG
/* In debug mode you may want vlc to dump a core instead of staying
* stuck */
|
SDL_INIT_NOPARACHUTE
...
...
src/video_output/vout_pictures.c
View file @
b321beb4
...
...
@@ -217,7 +217,7 @@ void vout_DestroyPicture( vout_thread_t *p_vout, picture_t *p_pic )
{
vlc_mutex_lock
(
&
p_vout
->
picture_lock
);
#if
def
DEBUG
#if
ndef N
DEBUG
/* Check if picture status is valid */
if
(
(
p_pic
->
i_status
!=
RESERVED_PICTURE
)
&&
(
p_pic
->
i_status
!=
RESERVED_DATED_PICTURE
)
&&
...
...
src/vlc.c
View file @
b321beb4
...
...
@@ -92,7 +92,7 @@ int main( int i_argc, const char *ppsz_argv[] )
#endif
#ifdef HAVE_PUTENV
# if
def
DEBUG
# if
ndef N
DEBUG
/* Activate malloc checking routines to detect heap corruptions. */
putenv
(
(
char
*
)
"MALLOC_CHECK_=2"
);
# ifdef __APPLE__
...
...
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