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_xiph.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_xiph.c')
-rw-r--r-- | libavformat/rtpdec_xiph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_xiph.c b/libavformat/rtpdec_xiph.c index 6ed8667726..7c32cdb2a9 100644 --- a/libavformat/rtpdec_xiph.c +++ b/libavformat/rtpdec_xiph.c @@ -295,7 +295,7 @@ parse_packed_headers(const uint8_t * packed_headers, static int xiph_parse_fmtp_pair(AVFormatContext *s, AVStream* stream, PayloadContext *xiph_data, - char *attr, char *value) + const char *attr, const char *value) { AVCodecContext *codec = stream->codec; int result = 0; |