Commit b1f63c28 authored by F. Yhuel's avatar F. Yhuel Committed by Jean-Baptiste Kempf

libmp4: fix 'mfhd' parsing

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
(cherry picked from commit 0b1b7516b965fa87c295eb0e7b9aa249f917e4e7)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent b893be20
...@@ -483,6 +483,8 @@ static int MP4_ReadBox_mfhd( stream_t *p_stream, MP4_Box_t *p_box ) ...@@ -483,6 +483,8 @@ static int MP4_ReadBox_mfhd( stream_t *p_stream, MP4_Box_t *p_box )
{ {
MP4_READBOX_ENTER( MP4_Box_data_mfhd_t ); MP4_READBOX_ENTER( MP4_Box_data_mfhd_t );
MP4_GETVERSIONFLAGS( p_box->data.p_mvhd );
MP4_GET4BYTES( p_box->data.p_mfhd->i_sequence_number ); MP4_GET4BYTES( p_box->data.p_mfhd->i_sequence_number );
#ifdef MP4_VERBOSE #ifdef MP4_VERBOSE
......
...@@ -828,9 +828,10 @@ typedef struct ...@@ -828,9 +828,10 @@ typedef struct
typedef struct MP4_Box_data_mfhd_s typedef struct MP4_Box_data_mfhd_s
{ {
uint32_t i_sequence_number; uint8_t i_version;
uint32_t i_flags;
uint8_t *p_vendor_extension; uint32_t i_sequence_number;
} MP4_Box_data_mfhd_t; } MP4_Box_data_mfhd_t;
......
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