diff 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
line wrap: on
line diff
--- a/libmpdemux/demux_mov.c	Mon Mar 13 23:35:41 2006 +0000
+++ b/libmpdemux/demux_mov.c	Tue Mar 14 00:02:42 2006 +0000
@@ -741,7 +741,7 @@
 			  if ((len >= 22) &&
 			      (char2int(trak->stdata,52+16)==MOV_FOURCC('e','n','d','a')) &&
 			      (char2short(trak->stdata,52+20))) {
-				sh->format=le2me_32(char2int(trak->stdata,52+8));
+				sh->format=char2int(trak->stdata,52+8);
 				mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found little endian PCM data, reversed fourcc:%04x\n", sh->format);
 			  }
 		          break;