OSDN Git Service

sdp: Use static const char arrays instead of pointers to strings
authorMartin Storsjö <martin@martin.st>
Tue, 28 Aug 2012 16:24:14 +0000 (19:24 +0300)
committerMartin Storsjö <martin@martin.st>
Tue, 28 Aug 2012 19:35:17 +0000 (22:35 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/sdp.c

index 7413386..9bb4815 100644 (file)
@@ -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;