From 1459cf62969294ed84e3c9431470a65f43682f70 Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 1 Aug 2002 21:16:57 +0000 Subject: skip 'pnot' and 'PICT' - fixes incoming/1.mov git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6866 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/demux_mov.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libmpdemux/demux_mov.c b/libmpdemux/demux_mov.c index ee9efbc758..516dacb503 100644 --- a/libmpdemux/demux_mov.c +++ b/libmpdemux/demux_mov.c @@ -366,6 +366,10 @@ int mov_check_file(demuxer_t* demuxer){ mp_msg(MSGT_DEMUX,MSGL_DBG2,"MOV: free space (len: %d)\n", len); /* unused, if you edit a mov, you can use space provided by free atoms (redefining it) */ break; + case MOV_FOURCC('p','n','o','t'): + case MOV_FOURCC('P','I','C','T'): + /* dunno what, but we shoudl ignore it */ + break; default: if(no==0) return 0; // first chunk is bad! id = be2me_32(id); -- cgit v1.2.3