Commit 12c5de8e authored by benoit's avatar benoit

Make filterDelimiters and optionDelimiters two static constant array of

characters, should move them to .rodata.
Patch by Diego 'Flameeyes' Pettenò flameeyes § gmail dot com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11380 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 320d7197
......@@ -745,8 +745,8 @@ pp_mode_t *pp_get_mode_by_name_and_quality(char *name, int quality)
{
char temp[GET_MODE_BUFFER_SIZE];
char *p= temp;
const char *filterDelimiters= ",/";
const char *optionDelimiters= ":";
static const char filterDelimiters[] = ",/";
static const char optionDelimiters[] = ":";
struct PPMode *ppMode;
char *filterToken;
......
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