diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-12 14:46:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-14 14:30:45 +0100 |
commit | ad2deb02e5d8bfd67c99c6409cd1d0992984fdc7 (patch) | |
tree | 688fa16930758dbcac30b75829a1d3a6450eb37c /libavformat/sdp.c | |
parent | 3b537eab27bb34f5f63b06097fbd52ff5941c3f6 (diff) | |
download | ffmpeg-ad2deb02e5d8bfd67c99c6409cd1d0992984fdc7.tar.gz |
avcodec/xiph: mark returned header pointers const from avpriv_split_xiph_headers()
Reviewed-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r-- | libavformat/sdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 5bf9de6f84..fadabbe5ae 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -348,7 +348,7 @@ static char *extradata2config(AVCodecContext *c) static char *xiph_extradata2config(AVCodecContext *c) { char *config, *encoded_config; - uint8_t *header_start[3]; + const uint8_t *header_start[3]; int headers_len, header_len[3], config_len; int first_header_size; |