summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_dv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-24 23:44:20 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-24 23:44:25 +0100
commitd2a5c6f2104db563491be0d16b722a1f7bbe65e4 (patch)
treed00a64f0a8bb89341c16b007d840af868bb370bd /libavformat/rtpdec_dv.c
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_dv.c')
-rw-r--r--libavformat/rtpdec_dv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_dv.c b/libavformat/rtpdec_dv.c
index bd18e8fc82..d8a4de4c07 100644
--- a/libavformat/rtpdec_dv.c
+++ b/libavformat/rtpdec_dv.c
@@ -48,7 +48,7 @@ static av_cold void dv_free_context(PayloadContext *data)
static av_cold int dv_sdp_parse_fmtp_config(AVFormatContext *s,
AVStream *stream,
PayloadContext *dv_data,
- char *attr, char *value)
+ const char *attr, const char *value)
{
/* does the DV stream include audio? */
if (!strcmp(attr, "audio") && !strcmp(value, "bundled"))