[FFmpeg-cvslog] r18027 - in trunk/libavcodec: atrac3.c cook.c

ramiro subversion
Tue Mar 17 21:47:31 CET 2009


Author: ramiro
Date: Tue Mar 17 21:47:31 2009
New Revision: 18027

Log:
use intptr_t to cast pointers to int in codecs maintained by benjamin larsson

Modified:
   trunk/libavcodec/atrac3.c
   trunk/libavcodec/cook.c

Modified: trunk/libavcodec/atrac3.c
==============================================================================
--- trunk/libavcodec/atrac3.c	Tue Mar 17 19:35:58 2009	(r18026)
+++ trunk/libavcodec/atrac3.c	Tue Mar 17 21:47:31 2009	(r18027)
@@ -230,7 +230,7 @@ static int decode_bytes(const uint8_t* i
     const uint32_t* buf;
     uint32_t* obuf = (uint32_t*) out;
 
-    off = (int)((long)inbuffer & 3);
+    off = (intptr_t)inbuffer & 3;
     buf = (const uint32_t*) (inbuffer - off);
     c = be2me_32((0x537F6103 >> (off*8)) | (0x537F6103 << (32-(off*8))));
     bytes += 3 + off;

Modified: trunk/libavcodec/cook.c
==============================================================================
--- trunk/libavcodec/cook.c	Tue Mar 17 19:35:58 2009	(r18026)
+++ trunk/libavcodec/cook.c	Tue Mar 17 21:47:31 2009	(r18027)
@@ -302,7 +302,7 @@ static inline int decode_bytes(const uin
      *     (int64_t)out[i] = 0x37c511f237c511f2^be2me_64(int64_t)in[i]);
      * Buffer alignment needs to be checked. */
 
-    off = (int)((long)inbuffer & 3);
+    off = (intptr_t)inbuffer & 3;
     buf = (const uint32_t*) (inbuffer - off);
     c = be2me_32((0x37c511f2 >> (off*8)) | (0x37c511f2 << (32-(off*8))));
     bytes += 3 + off;




More information about the ffmpeg-cvslog mailing list