Commit 698e95d5 authored by Laurent Aimar's avatar Laurent Aimar

Do not display invalid fourcc for meta data atom.

parent 9bf22b54
...@@ -2099,8 +2099,8 @@ static int MP4_ReadBox_0xa9xxx( stream_t *p_stream, MP4_Box_t *p_box ) ...@@ -2099,8 +2099,8 @@ static int MP4_ReadBox_0xa9xxx( stream_t *p_stream, MP4_Box_t *p_box )
#ifdef MP4_VERBOSE #ifdef MP4_VERBOSE
msg_Dbg( p_stream, msg_Dbg( p_stream,
"read box: \"%4.4s\" text=`%s'", "read box: \"c%3.3s\" text=`%s'",
(char*)&p_box->i_type, ((char*)&p_box->i_type + 1),
p_box->data.p_0xa9xxx->psz_text ); p_box->data.p_0xa9xxx->psz_text );
#endif #endif
} }
...@@ -2134,8 +2134,8 @@ static int MP4_ReadBox_0xa9xxx( stream_t *p_stream, MP4_Box_t *p_box ) ...@@ -2134,8 +2134,8 @@ static int MP4_ReadBox_0xa9xxx( stream_t *p_stream, MP4_Box_t *p_box )
p_box->data.p_0xa9xxx->psz_text[i_data_len] = '\0'; p_box->data.p_0xa9xxx->psz_text[i_data_len] = '\0';
#ifdef MP4_VERBOSE #ifdef MP4_VERBOSE
msg_Dbg( p_stream, msg_Dbg( p_stream,
"read box: \"%4.4s\" text=`%s'", "read box: \"c%3.3s\" text=`%s'",
(char*)&p_box->i_type, ((char*)&p_box->i_type+1),
p_box->data.p_0xa9xxx->psz_text ); p_box->data.p_0xa9xxx->psz_text );
#endif #endif
} }
......
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