Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-25 01:44:20 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-02-25 01:44:25 +0300
commitd2a5c6f2104db563491be0d16b722a1f7bbe65e4 (patch)
treed00a64f0a8bb89341c16b007d840af868bb370bd /libavformat/rtpdec.h
parent499da717b8f3f7d7f19bd88f25b53944084f7977 (diff)
parentec96a89c3e507cf0fb1f2b159b28a53f2bad9a74 (diff)
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.h')
-rw-r--r--libavformat/rtpdec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h
index b950160c45..0fb88c795c 100644
--- a/libavformat/rtpdec.h
+++ b/libavformat/rtpdec.h
@@ -207,7 +207,7 @@ int ff_parse_fmtp(AVFormatContext *s,
int (*parse_fmtp)(AVFormatContext *s,
AVStream *stream,
PayloadContext *data,
- char *attr, char *value));
+ const char *attr, const char *value));
void ff_register_rtp_dynamic_payload_handlers(void);