OSDN Git Service

2 more missing consts found by -Wwrite-strings.
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 4 Feb 2008 01:06:04 +0000 (01:06 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 4 Feb 2008 01:06:04 +0000 (01:06 +0000)
Originally committed as revision 11849 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/movenc.c

index ce71419..13406da 100644 (file)
@@ -1194,7 +1194,7 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext* mov,
     return 0;
 }
 
-static int utf8len(uint8_t *b){
+static int utf8len(const uint8_t *b){
     int len=0;
     int val;
     while(*b){
@@ -1204,7 +1204,7 @@ static int utf8len(uint8_t *b){
     return len;
 }
 
-static int ascii_to_wc (ByteIOContext *pb, uint8_t *b)
+static int ascii_to_wc (ByteIOContext *pb, const uint8_t *b)
 {
     int val;
     while(*b){