Mercurial > libavformat.hg
changeset 24:215c0f0f916e libavformat
Fix probing for some files (ew.mov, april.mov)
author | mmu_man |
---|---|
date | Fri, 17 Jan 2003 08:29:37 +0000 |
parents | f6aae828c320 |
children | bceee17e8d75 |
files | mov.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Tue Jan 14 15:30:42 2003 +0000 +++ b/mov.c Fri Jan 17 08:29:37 2003 +0000 @@ -1111,7 +1111,8 @@ case MKTAG( 'm', 'o', 'o', 'v' ): case MKTAG( 'w', 'i', 'd', 'e' ): case MKTAG( 'f', 'r', 'e', 'e' ): - case MKTAG( 'm', 'd', 'a', 't'): + case MKTAG( 'm', 'd', 'a', 't' ): + case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */ return AVPROBE_SCORE_MAX; case MKTAG( 'f', 't', 'y', 'p' ): case MKTAG( 's', 'k', 'i', 'p' ):