Commit d4bba93f authored by Martin Storsjö's avatar Martin Storsjö

sdp: Use static const char arrays instead of pointers to strings

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent bcc45d63
...@@ -154,8 +154,8 @@ static char *extradata2psets(AVCodecContext *c) ...@@ -154,8 +154,8 @@ static char *extradata2psets(AVCodecContext *c)
{ {
char *psets, *p; char *psets, *p;
const uint8_t *r; const uint8_t *r;
const char *pset_string = "; sprop-parameter-sets="; static const char pset_string[] = "; sprop-parameter-sets=";
const char *profile_string = "; profile-level-id="; static const char profile_string[] = "; profile-level-id=";
uint8_t *orig_extradata = NULL; uint8_t *orig_extradata = NULL;
int orig_extradata_size = 0; int orig_extradata_size = 0;
const uint8_t *sps = NULL, *sps_end; const uint8_t *sps = NULL, *sps_end;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment