]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Use intptr_t when casting pointers to int.
authorramiro <ramiro@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 26 Mar 2009 01:34:02 +0000 (01:34 +0000)
committerramiro <ramiro@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 26 Mar 2009 01:34:02 +0000 (01:34 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18192 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/dsputil.c
libavcodec/h263.c
libavformat/avc.c
libavformat/file.c

index 86a6c3779355dfbe01bbd5045bc9f58a124983f2..3e7bfc35e3a7cd0c49326e32c5537fc7cf589794 100644 (file)
@@ -4271,7 +4271,7 @@ int ff_check_alignment(void){
     static int did_fail=0;
     DECLARE_ALIGNED_16(int, aligned);
 
-    if((long)&aligned & 15){
+    if((intptr_t)&aligned & 15){
         if(!did_fail){
 #if HAVE_MMX || HAVE_ALTIVEC
             av_log(NULL, AV_LOG_ERROR,
index b2adae6e8a7ed024a87f2cb6d85aff46a2b68d34..170513dc2798ff8f63e5d0f047441904a2b2cc3e 100644 (file)
@@ -3056,7 +3056,7 @@ void ff_mpeg4_init_partitions(MpegEncContext *s)
     uint8_t *start= pbBufPtr(&s->pb);
     uint8_t *end= s->pb.buf_end;
     int size= end - start;
-    int pb_size = (((long)start + size/3)&(~3)) - (long)start;
+    int pb_size = (((intptr_t)start + size/3)&(~3)) - (intptr_t)start;
     int tex_size= (size - 2*pb_size)&(~3);
 
     set_put_bits_buffer_size(&s->pb, pb_size);
index 6ecea38a4752251a1b7332f87c4c308163af2dd9..578e7d0462216cbb0f0e7f0f6fc1a5384f0c1186 100644 (file)
@@ -25,7 +25,7 @@
 
 const uint8_t *ff_avc_find_startcode(const uint8_t *p, const uint8_t *end)
 {
-    const uint8_t *a = p + 4 - ((long)p & 3);
+    const uint8_t *a = p + 4 - ((intptr_t)p & 3);
 
     for( end -= 3; p < a && p < end; p++ ) {
         if( p[0] == 0 && p[1] == 0 && p[2] == 1 )
index bec991ae44dc544b9d7a31b324acf6faafeb451a..da0ce150947bfb9b1671b740fbb581b3613dfdb3 100644 (file)
@@ -53,38 +53,38 @@ static int file_open(URLContext *h, const char *filename, int flags)
     fd = open(filename, access, 0666);
     if (fd < 0)
         return AVERROR(ENOENT);
-    h->priv_data = (void *) fd;
+    h->priv_data = (void *) (intptr_t) fd;
     return 0;
 }
 
 static int file_read(URLContext *h, unsigned char *buf, int size)
 {
-    int fd = (int) h->priv_data;
+    int fd = (intptr_t) h->priv_data;
     return read(fd, buf, size);
 }
 
 static int file_write(URLContext *h, unsigned char *buf, int size)
 {
-    int fd = (int) h->priv_data;
+    int fd = (intptr_t) h->priv_data;
     return write(fd, buf, size);
 }
 
 /* XXX: use llseek */
 static int64_t file_seek(URLContext *h, int64_t pos, int whence)
 {
-    int fd = (int) h->priv_data;
+    int fd = (intptr_t) h->priv_data;
     return lseek(fd, pos, whence);
 }
 
 static int file_close(URLContext *h)
 {
-    int fd = (int) h->priv_data;
+    int fd = (intptr_t) h->priv_data;
     return close(fd);
 }
 
 static int file_get_handle(URLContext *h)
 {
-    return (int) h->priv_data;
+    return (intptr_t) h->priv_data;
 }
 
 URLProtocol file_protocol = {
@@ -116,7 +116,7 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
 #if HAVE_SETMODE
     setmode(fd, O_BINARY);
 #endif
-    h->priv_data = (void *) fd;
+    h->priv_data = (void *) (intptr_t) fd;
     h->is_streamed = 1;
     return 0;
 }