Commit a8fd9a2e authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

demux: mp4: fix rmda/rmra box restrictions

comment was wrong

(cherry picked from commit 7f80a94dcf70d28b8ddedc7a86baaab32399a258)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 7c00ec4f
......@@ -3428,11 +3428,11 @@ static const struct
/* found in hnti */
{ ATOM_rtp, MP4_ReadBox_default, NULL, 0 },
/* found in rmra */
{ ATOM_rdrf, MP4_ReadBox_rdrf, MP4_FreeBox_rdrf , ATOM_rmra },
{ ATOM_rmdr, MP4_ReadBox_rmdr, MP4_FreeBox_Common, ATOM_rmra },
{ ATOM_rmqu, MP4_ReadBox_rmqu, MP4_FreeBox_Common, ATOM_rmra },
{ ATOM_rmvc, MP4_ReadBox_rmvc, MP4_FreeBox_Common, ATOM_rmra },
/* found in rmra/rmda */
{ ATOM_rdrf, MP4_ReadBox_rdrf, MP4_FreeBox_rdrf , ATOM_rmda },
{ ATOM_rmdr, MP4_ReadBox_rmdr, MP4_FreeBox_Common, ATOM_rmda },
{ ATOM_rmqu, MP4_ReadBox_rmqu, MP4_FreeBox_Common, ATOM_rmda },
{ ATOM_rmvc, MP4_ReadBox_rmvc, MP4_FreeBox_Common, ATOM_rmda },
{ ATOM_drms, MP4_ReadBox_sample_soun, MP4_FreeBox_sample_soun, 0 },
{ ATOM_sinf, MP4_ReadBoxContainer, MP4_FreeBox_Common, 0 },
......
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