diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 23:38:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 23:38:19 +0100 |
commit | 499da717b8f3f7d7f19bd88f25b53944084f7977 (patch) | |
tree | 2d1f5457b0423c13d0a19e358c7060fa8634e397 /libavformat | |
parent | 1c5d9dd2b73924c7f2bd19e87939c602c6fab713 (diff) | |
parent | ac0e54fda9305cc7d149007f5b512bb8619f7c78 (diff) | |
download | ffmpeg-499da717b8f3f7d7f19bd88f25b53944084f7977.tar.gz |
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')
-rw-r--r-- | libavformat/rtpdec_h264.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_latm.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_mpeg4.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index aa75062a61..e237a03d76 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -66,7 +66,7 @@ static const uint8_t start_sequence[] = { 0, 0, 0, 1 }; static void parse_profile_level_id(AVFormatContext *s, PayloadContext *h264_data, - char *value) + const char *value) { char buffer[3]; // 6 characters=3 bytes, in hex. diff --git a/libavformat/rtpdec_latm.c b/libavformat/rtpdec_latm.c index 8527bff6f8..bf255f83c0 100644 --- a/libavformat/rtpdec_latm.c +++ b/libavformat/rtpdec_latm.c @@ -96,7 +96,7 @@ static int latm_parse_packet(AVFormatContext *ctx, PayloadContext *data, return data->pos < data->len; } -static int parse_fmtp_config(AVStream *st, char *value) +static int parse_fmtp_config(AVStream *st, const char *value) { int len = ff_hex_to_data(NULL, value), i, ret = 0; GetBitContext gb; 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); |