comparison libmpdemux/demux_mov.c @ 17860:d11c23749503

le2me_32 is not necessary, tested by Diego on BE machine
author rathann
date Tue, 14 Mar 2006 00:02:42 +0000
parents 996e419c1671
children 3fe3b2b3a6ce
comparison
equal deleted inserted replaced
17859:4d863533f100 17860:d11c23749503
739 case MOV_FOURCC('f','l','3','2'): 739 case MOV_FOURCC('f','l','3','2'):
740 case MOV_FOURCC('f','l','6','4'): 740 case MOV_FOURCC('f','l','6','4'):
741 if ((len >= 22) && 741 if ((len >= 22) &&
742 (char2int(trak->stdata,52+16)==MOV_FOURCC('e','n','d','a')) && 742 (char2int(trak->stdata,52+16)==MOV_FOURCC('e','n','d','a')) &&
743 (char2short(trak->stdata,52+20))) { 743 (char2short(trak->stdata,52+20))) {
744 sh->format=le2me_32(char2int(trak->stdata,52+8)); 744 sh->format=char2int(trak->stdata,52+8);
745 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found little endian PCM data, reversed fourcc:%04x\n", sh->format); 745 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found little endian PCM data, reversed fourcc:%04x\n", sh->format);
746 } 746 }
747 break; 747 break;
748 default: break; 748 default: break;
749 } 749 }