mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
sdp: Use static const char arrays instead of pointers to strings
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
bcc45d6348
commit
d4bba93f4d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user