diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 23:44:20 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 23:44:25 +0100 |
commit | d2a5c6f2104db563491be0d16b722a1f7bbe65e4 (patch) | |
tree | d00a64f0a8bb89341c16b007d840af868bb370bd /libavformat/rtpdec_hevc.c | |
parent | 499da717b8f3f7d7f19bd88f25b53944084f7977 (diff) | |
parent | ec96a89c3e507cf0fb1f2b159b28a53f2bad9a74 (diff) | |
download | ffmpeg-d2a5c6f2104db563491be0d16b722a1f7bbe65e4.tar.gz |
Merge commit 'ec96a89c3e507cf0fb1f2b159b28a53f2bad9a74'
* commit 'ec96a89c3e507cf0fb1f2b159b28a53f2bad9a74':
rtpdec: Don't pass non-const pointers to fmtp attribute parsing functions
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec_hevc.c')
-rw-r--r-- | libavformat/rtpdec_hevc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_hevc.c b/libavformat/rtpdec_hevc.c index 7e4003c82b..8e25e96044 100644 --- a/libavformat/rtpdec_hevc.c +++ b/libavformat/rtpdec_hevc.c @@ -49,7 +49,7 @@ static const uint8_t start_sequence[] = { 0x00, 0x00, 0x00, 0x01 }; static av_cold int hevc_sdp_parse_fmtp_config(AVFormatContext *s, AVStream *stream, PayloadContext *hevc_data, - char *attr, char *value) + const char *attr, const char *value) { /* profile-space: 0-3 */ /* profile-id: 0-31 */ |