Browse Source

http: Declare more parameters as const where possible

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n2.3
Martin Storsjö 12 years ago
parent
commit
e77a2ea950
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/http.c

+ 2
- 2
libavformat/http.c View File

@@ -353,7 +353,7 @@ static int parse_location(HTTPContext *s, const char *p)
}

/* "bytes $from-$to/$document_size" */
static void parse_content_range(URLContext *h, char *p)
static void parse_content_range(URLContext *h, const char *p)
{
HTTPContext *s = h->priv_data;
const char *slash;
@@ -367,7 +367,7 @@ static void parse_content_range(URLContext *h, char *p)
h->is_streamed = 0; /* we _can_ in fact seek */
}

static int parse_content_encoding(URLContext *h, char *p)
static int parse_content_encoding(URLContext *h, const char *p)
{
HTTPContext *s = h->priv_data;



Loading…
Cancel
Save