Commit 97cd7a3d authored by Diego Biurrun's avatar Diego Biurrun

rtpdec_mpeg4: const correctness for parse_fmtp_config()

libavformat/rtpdec_mpeg4.c:282:38: warning: passing argument 2 of ‘parse_fmtp_config’ discards ‘const’ qualifier from pointer target type
parent 81a3c42a
...@@ -97,7 +97,7 @@ static void close_context(PayloadContext *data) ...@@ -97,7 +97,7 @@ static void close_context(PayloadContext *data)
av_free(data->mode); av_free(data->mode);
} }
static int parse_fmtp_config(AVCodecParameters *par, char *value) static int parse_fmtp_config(AVCodecParameters *par, const char *value)
{ {
/* decode the hexa encoded parameter */ /* decode the hexa encoded parameter */
int len = ff_hex_to_data(NULL, value); int len = ff_hex_to_data(NULL, value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment