Commit f7edf2f7 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: split debug info

parent b648022c
...@@ -123,7 +123,7 @@ int MP4_ReadBoxCommon( stream_t *p_stream, MP4_Box_t *p_box ) ...@@ -123,7 +123,7 @@ int MP4_ReadBoxCommon( stream_t *p_stream, MP4_Box_t *p_box )
{ {
CreateUUID( &p_box->i_uuid, p_box->i_type ); CreateUUID( &p_box->i_uuid, p_box->i_type );
} }
#ifdef MP4_VERBOSE #ifdef MP4_ULTRA_VERBOSE
if( p_box->i_size ) if( p_box->i_size )
{ {
if MP4_BOX_TYPE_ASCII() if MP4_BOX_TYPE_ASCII()
...@@ -284,7 +284,7 @@ static int MP4_ReadBoxSkip( stream_t *p_stream, MP4_Box_t *p_box ) ...@@ -284,7 +284,7 @@ static int MP4_ReadBoxSkip( stream_t *p_stream, MP4_Box_t *p_box )
} }
/* Nothing to do */ /* Nothing to do */
#ifdef MP4_VERBOSE #ifdef MP4_ULTRA_VERBOSE
if MP4_BOX_TYPE_ASCII() if MP4_BOX_TYPE_ASCII()
msg_Dbg( p_stream, "skip box: \"%4.4s\"", (char*)&p_box->i_type ); msg_Dbg( p_stream, "skip box: \"%4.4s\"", (char*)&p_box->i_type );
else else
......
...@@ -278,6 +278,7 @@ ...@@ -278,6 +278,7 @@
/* Do you want some debug information on all read boxes ? */ /* Do you want some debug information on all read boxes ? */
#ifndef NDEBUG #ifndef NDEBUG
# define MP4_VERBOSE 1 # define MP4_VERBOSE 1
//# define MP4_ULTRA_VERBOSE 1
#endif #endif
struct MP4_Box_s; struct MP4_Box_s;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment