# HG changeset patch # User michael # Date 1088623483 0 # Node ID aeb69a5f37564ad27b2da4d82a7fd736c4f346aa # Parent e25b5ad6603ea17b098fcf782b8292dfc94d5b9e The atom 'skip' should be handled by 'mov_read_leaf()', not by 'mov_read_default()'. This atom has the same behaviour than the atom 'free'. patch by (Cedric VINCENT ) the second part of the patch hasnt been applied, but fixed slightly differently diff -r e25b5ad6603e -r aeb69a5f3756 mov.c --- a/mov.c Wed Jun 30 17:34:15 2004 +0000 +++ b/mov.c Wed Jun 30 19:24:43 2004 +0000 @@ -490,6 +490,7 @@ url_fskip(pb, len); } + url_fskip(pb, atom.size - (url_ftell(pb) - atom.offset)); return 0; } @@ -1444,7 +1445,7 @@ { MKTAG( 'n', 'm', 'h', 'd' ), mov_read_leaf }, { MKTAG( 'o', 'd', 'h', 'd' ), mov_read_default }, { MKTAG( 's', 'd', 'h', 'd' ), mov_read_default }, -{ MKTAG( 's', 'k', 'i', 'p' ), mov_read_default }, +{ MKTAG( 's', 'k', 'i', 'p' ), mov_read_leaf }, { MKTAG( 's', 'm', 'h', 'd' ), mov_read_leaf }, /* sound media info header */ { MKTAG( 'S', 'M', 'I', ' ' ), mov_read_smi }, /* Sorrenson extension ??? */ { MKTAG( 's', 't', 'b', 'l' ), mov_read_default },