From d4bba93f4d9942ffede16c0f9d810eef7f81fe97 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Tue, 28 Aug 2012 19:24:14 +0300 Subject: sdp: Use static const char arrays instead of pointers to strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/sdp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/sdp.c') diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 74133863f9..9bb4815bae 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -154,8 +154,8 @@ static char *extradata2psets(AVCodecContext *c) { char *psets, *p; const uint8_t *r; - const char *pset_string = "; sprop-parameter-sets="; - const char *profile_string = "; profile-level-id="; + static const char pset_string[] = "; sprop-parameter-sets="; + static const char profile_string[] = "; profile-level-id="; uint8_t *orig_extradata = NULL; int orig_extradata_size = 0; const uint8_t *sps = NULL, *sps_end; -- cgit v1.2.3