changeset 6068:7fdda2416684 libavformat

Declare the url_write buffer parameter as const
author mstorsjo
date Tue, 01 Jun 2010 07:46:23 +0000
parents 51ae348d4511
children f3000d7fad52
files avio.c avio.h file.c gopher.c http.c librtmp.c rtmpproto.c rtpproto.c tcp.c udp.c
diffstat 10 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/avio.c	Mon May 31 10:47:36 2010 +0000
+++ b/avio.c	Tue Jun 01 07:46:23 2010 +0000
@@ -184,7 +184,7 @@
     return len;
 }
 
-int url_write(URLContext *h, unsigned char *buf, int size)
+int url_write(URLContext *h, const unsigned char *buf, int size)
 {
     int ret;
     if (!(h->flags & (URL_WRONLY | URL_RDWR)))
--- a/avio.h	Mon May 31 10:47:36 2010 +0000
+++ b/avio.h	Tue Jun 01 07:46:23 2010 +0000
@@ -112,7 +112,7 @@
  * certain there was either an error or the end of file was reached.
  */
 int url_read_complete(URLContext *h, unsigned char *buf, int size);
-int url_write(URLContext *h, unsigned char *buf, int size);
+int url_write(URLContext *h, const unsigned char *buf, int size);
 
 /**
  * Changes the position that will be used by the next read/write
@@ -224,7 +224,7 @@
     const char *name;
     int (*url_open)(URLContext *h, const char *url, int flags);
     int (*url_read)(URLContext *h, unsigned char *buf, int size);
-    int (*url_write)(URLContext *h, unsigned char *buf, int size);
+    int (*url_write)(URLContext *h, const unsigned char *buf, int size);
     int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
     int (*url_close)(URLContext *h);
     struct URLProtocol *next;
--- a/file.c	Mon May 31 10:47:36 2010 +0000
+++ b/file.c	Tue Jun 01 07:46:23 2010 +0000
@@ -64,7 +64,7 @@
     return read(fd, buf, size);
 }
 
-static int file_write(URLContext *h, unsigned char *buf, int size)
+static int file_write(URLContext *h, const unsigned char *buf, int size)
 {
     int fd = (intptr_t) h->priv_data;
     return write(fd, buf, size);
--- a/gopher.c	Mon May 31 10:47:36 2010 +0000
+++ b/gopher.c	Tue Jun 01 07:46:23 2010 +0000
@@ -31,7 +31,7 @@
     URLContext *hd;
 } GopherContext;
 
-static int gopher_write(URLContext *h, uint8_t *buf, int size)
+static int gopher_write(URLContext *h, const uint8_t *buf, int size)
 {
     GopherContext *s = h->priv_data;
     return url_write(s->hd, buf, size);
--- a/http.c	Mon May 31 10:47:36 2010 +0000
+++ b/http.c	Tue Jun 01 07:46:23 2010 +0000
@@ -49,7 +49,7 @@
 
 static int http_connect(URLContext *h, const char *path, const char *hoststr,
                         const char *auth, int *new_location);
-static int http_write(URLContext *h, uint8_t *buf, int size);
+static int http_write(URLContext *h, const uint8_t *buf, int size);
 
 
 /* return non zero if error */
@@ -358,7 +358,7 @@
 }
 
 /* used only when posting data */
-static int http_write(URLContext *h, uint8_t *buf, int size)
+static int http_write(URLContext *h, const uint8_t *buf, int size)
 {
     char temp[11];  /* 32-bit hex + CRLF + nul */
     int ret;
--- a/librtmp.c	Mon May 31 10:47:36 2010 +0000
+++ b/librtmp.c	Tue Jun 01 07:46:23 2010 +0000
@@ -109,7 +109,7 @@
     return rc;
 }
 
-static int rtmp_write(URLContext *s, uint8_t *buf, int size)
+static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
 {
     RTMP *r = s->priv_data;
 
--- a/rtmpproto.c	Mon May 31 10:47:36 2010 +0000
+++ b/rtmpproto.c	Tue Jun 01 07:46:23 2010 +0000
@@ -922,7 +922,7 @@
     return orig_size;
 }
 
-static int rtmp_write(URLContext *h, uint8_t *buf, int size)
+static int rtmp_write(URLContext *h, const uint8_t *buf, int size)
 {
     RTMPContext *rt = h->priv_data;
     int size_temp = size;
--- a/rtpproto.c	Mon May 31 10:47:36 2010 +0000
+++ b/rtpproto.c	Tue Jun 01 07:46:23 2010 +0000
@@ -279,7 +279,7 @@
     return len;
 }
 
-static int rtp_write(URLContext *h, uint8_t *buf, int size)
+static int rtp_write(URLContext *h, const uint8_t *buf, int size)
 {
     RTPContext *s = h->priv_data;
     int ret;
--- a/tcp.c	Mon May 31 10:47:36 2010 +0000
+++ b/tcp.c	Tue Jun 01 07:46:23 2010 +0000
@@ -154,7 +154,7 @@
     }
 }
 
-static int tcp_write(URLContext *h, uint8_t *buf, int size)
+static int tcp_write(URLContext *h, const uint8_t *buf, int size)
 {
     TCPContext *s = h->priv_data;
     int ret, size1, fd_max, len;
--- a/udp.c	Mon May 31 10:47:36 2010 +0000
+++ b/udp.c	Tue Jun 01 07:46:23 2010 +0000
@@ -456,7 +456,7 @@
     return len;
 }
 
-static int udp_write(URLContext *h, uint8_t *buf, int size)
+static int udp_write(URLContext *h, const uint8_t *buf, int size)
 {
     UDPContext *s = h->priv_data;
     int ret;