Mercurial > libavformat.hg
changeset 4634:77a5de3c9116 libavformat
Remove size_t cast in setting s->priv_data directly to the (integer) file
descriptor returned by open(). This removes some dubious doublecasts such
as priv_data = (void *) (size_t) some_integer, and is always safe on systems
we care about because sizeof(int)<=sizeof(void*). See comments from Mans and
Michael in "[RFC] rtsp.c EOF support" thread.
author | rbultje |
---|---|
date | Tue, 03 Mar 2009 13:57:09 +0000 |
parents | 0c69b895a01f |
children | 158706fa656f |
files | file.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/file.c Tue Mar 03 13:51:34 2009 +0000 +++ b/file.c Tue Mar 03 13:57:09 2009 +0000 @@ -53,32 +53,32 @@ fd = open(filename, access, 0666); if (fd < 0) return AVERROR(ENOENT); - h->priv_data = (void *)(size_t)fd; + h->priv_data = (void *) fd; return 0; } static int file_read(URLContext *h, unsigned char *buf, int size) { - int fd = (size_t)h->priv_data; + int fd = (int) h->priv_data; return read(fd, buf, size); } static int file_write(URLContext *h, unsigned char *buf, int size) { - int fd = (size_t)h->priv_data; + int fd = (int) 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 = (size_t)h->priv_data; + int fd = (int) h->priv_data; return lseek(fd, pos, whence); } static int file_close(URLContext *h) { - int fd = (size_t)h->priv_data; + int fd = (int) h->priv_data; return close(fd); } @@ -110,7 +110,7 @@ #if HAVE_SETMODE setmode(fd, O_BINARY); #endif - h->priv_data = (void *)(size_t)fd; + h->priv_data = (void *) fd; h->is_streamed = 1; return 0; }