Mercurial > libavformat.hg
changeset 2377:2a44e9c75bf3 libavformat
pass *fr2 chunks to decoder (Toy-Story2_better-image-quality.4xa contains them)
author | michael |
---|---|
date | Sun, 12 Aug 2007 00:23:47 +0000 |
parents | a67b89ba136d |
children | 214978878a19 |
files | 4xm.c |
diffstat | 1 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/4xm.c Sat Aug 11 23:58:10 2007 +0000 +++ b/4xm.c Sun Aug 12 00:23:47 2007 +0000 @@ -44,6 +44,9 @@ #define ifrm_TAG MKTAG('i', 'f', 'r', 'm') #define pfrm_TAG MKTAG('p', 'f', 'r', 'm') #define cfrm_TAG MKTAG('c', 'f', 'r', 'm') +#define ifr2_TAG MKTAG('i', 'f', 'r', '2') +#define pfr2_TAG MKTAG('p', 'f', 'r', '2') +#define cfr2_TAG MKTAG('c', 'f', 'r', '2') #define snd__TAG MKTAG('s', 'n', 'd', '_') #define vtrk_SIZE 0x44 @@ -248,7 +251,11 @@ case ifrm_TAG: case pfrm_TAG: - case cfrm_TAG:{ + case cfrm_TAG: + case ifr2_TAG: + case pfr2_TAG: + case cfr2_TAG: + { /* allocate 8 more bytes than 'size' to account for fourcc * and size */