comparison libmpdemux/demux_mov.c @ 6865:0ab18e1433c4

skip 'pnot' and 'PICT' - fixes incoming/1.mov
author arpi
date Thu, 01 Aug 2002 21:16:57 +0000
parents 872235b50330
children 668ab67dce8f
comparison
equal deleted inserted replaced
6864:faf4ce66374f 6865:0ab18e1433c4
363 case MOV_FOURCC('f','r','e','e'): 363 case MOV_FOURCC('f','r','e','e'):
364 case MOV_FOURCC('s','k','i','p'): 364 case MOV_FOURCC('s','k','i','p'):
365 case MOV_FOURCC('j','u','n','k'): 365 case MOV_FOURCC('j','u','n','k'):
366 mp_msg(MSGT_DEMUX,MSGL_DBG2,"MOV: free space (len: %d)\n", len); 366 mp_msg(MSGT_DEMUX,MSGL_DBG2,"MOV: free space (len: %d)\n", len);
367 /* unused, if you edit a mov, you can use space provided by free atoms (redefining it) */ 367 /* unused, if you edit a mov, you can use space provided by free atoms (redefining it) */
368 break;
369 case MOV_FOURCC('p','n','o','t'):
370 case MOV_FOURCC('P','I','C','T'):
371 /* dunno what, but we shoudl ignore it */
368 break; 372 break;
369 default: 373 default:
370 if(no==0) return 0; // first chunk is bad! 374 if(no==0) return 0; // first chunk is bad!
371 id = be2me_32(id); 375 id = be2me_32(id);
372 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",&id,(int)len); 376 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",&id,(int)len);