git.videolan.org
/
vlc.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed wrong type used in mp4 parsing.
[vlc.git]
/
modules
/
demux
/
mp4
/
libmp4.c
diff --git
a/modules/demux/mp4/libmp4.c
b/modules/demux/mp4/libmp4.c
index
479ada4
..
4d5def5
100644
(file)
--- a/
modules/demux/mp4/libmp4.c
+++ b/
modules/demux/mp4/libmp4.c
@@
-1679,7
+1679,7
@@
static int MP4_ReadBox_elst( stream_t *p_stream, MP4_Box_t *p_box )
{
unsigned int i;
{
unsigned int i;
- MP4_READBOX_ENTER( MP4_Box_data_
padb
_t );
+ MP4_READBOX_ENTER( MP4_Box_data_
elst
_t );
MP4_GETVERSIONFLAGS( p_box->data.p_elst );
MP4_GETVERSIONFLAGS( p_box->data.p_elst );
@@
-1719,9
+1719,7
@@
static int MP4_ReadBox_elst( stream_t *p_stream, MP4_Box_t *p_box )
}
#ifdef MP4_VERBOSE
}
#ifdef MP4_VERBOSE
- msg_Dbg( p_stream, "read box: \"elst\" entry-count "I64Fd,
- i_read / 2 );
-
+ msg_Dbg( p_stream, "read box: \"elst\" entry-count "I64Fd, p_box->data.p_elst->i_entry_count );
#endif
MP4_READBOX_EXIT( 1 );
}
#endif
MP4_READBOX_EXIT( 1 );
}