mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 14:14:45 +08:00
16 lines
695 B
Diff
16 lines
695 B
Diff
https://git.videolan.org/?p=vlc/vlc-2.2.git;a=commitdiff;h=ce91452460a75d7424b165c4dc8db98114c3cbd9;hp=9e12195d3e4316278af1fa4bcb6a705ff27456fd
|
|
--- a/modules/demux/mp4/libmp4.c
|
|
+++ b/modules/demux/mp4/libmp4.c
|
|
@@ -3643,6 +3643,11 @@ void MP4_BoxFree( stream_t *s, MP4_Box_t *p_box )
|
|
{
|
|
for( i_index = 0; ; i_index++ )
|
|
{
|
|
+ if ( MP4_Box_Function[i_index].i_parent &&
|
|
+ p_box->p_father &&
|
|
+ p_box->p_father->i_type != MP4_Box_Function[i_index].i_parent )
|
|
+ continue;
|
|
+
|
|
if( ( MP4_Box_Function[i_index].i_type == p_box->i_type )||
|
|
( MP4_Box_Function[i_index].i_type == 0 ) )
|
|
{
|