summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_mpeg4.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-24 23:38:14 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-24 23:38:19 +0100
commit499da717b8f3f7d7f19bd88f25b53944084f7977 (patch)
tree2d1f5457b0423c13d0a19e358c7060fa8634e397 /libavformat/rtpdec_mpeg4.c
parent1c5d9dd2b73924c7f2bd19e87939c602c6fab713 (diff)
parentac0e54fda9305cc7d149007f5b512bb8619f7c78 (diff)
Merge commit 'ac0e54fda9305cc7d149007f5b512bb8619f7c78'
* commit 'ac0e54fda9305cc7d149007f5b512bb8619f7c78': rtpdec: Add const to string parameters in internal fmtp parsing functions Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec_mpeg4.c')
-rw-r--r--libavformat/rtpdec_mpeg4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_mpeg4.c b/libavformat/rtpdec_mpeg4.c
index 27184d9faa..531d076aa5 100644
--- a/libavformat/rtpdec_mpeg4.c
+++ b/libavformat/rtpdec_mpeg4.c
@@ -98,7 +98,7 @@ static void free_context(PayloadContext *data)
av_freep(&data);
}
-static int parse_fmtp_config(AVCodecContext *codec, char *value)
+static int parse_fmtp_config(AVCodecContext *codec, const char *value)
{
/* decode the hexa encoded parameter */
int len = ff_hex_to_data(NULL, value);