Skip to content
Snippets Groups Projects
Commit 921caf62 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

postprocess: make some variables in pp_get_mode_by_name_and_quality() const

parent 44dabf1f
No related branches found
No related tags found
No related merge requests found
...@@ -698,12 +698,12 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality) ...@@ -698,12 +698,12 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality)
av_log(NULL, AV_LOG_DEBUG, "pp: %s\n", name); av_log(NULL, AV_LOG_DEBUG, "pp: %s\n", name);
for(;;){ for(;;){
char *filterName; const char *filterName;
int q= 1000000; //PP_QUALITY_MAX; int q= 1000000; //PP_QUALITY_MAX;
int chrom=-1; int chrom=-1;
int luma=-1; int luma=-1;
char *option; const char *option;
char *options[OPTIONS_ARRAY_SIZE]; const char *options[OPTIONS_ARRAY_SIZE];
int i; int i;
int filterNameOk=0; int filterNameOk=0;
int numOfUnknownOptions=0; int numOfUnknownOptions=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment