[FFmpeg-cvslog] postprocess: make some variables in pp_get_mode_by_name_and_quality() const
Michael Niedermayer
git at videolan.org
Thu Sep 18 14:55:15 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Sep 18 14:19:08 2014 +0200| [921caf620386cc480da5166dd38dc136bfcd754e] | committer: Michael Niedermayer
postprocess: make some variables in pp_get_mode_by_name_and_quality() const
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=921caf620386cc480da5166dd38dc136bfcd754e
---
libpostproc/postprocess.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index 691c9bf..af32194 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -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);
for(;;){
- char *filterName;
+ const char *filterName;
int q= 1000000; //PP_QUALITY_MAX;
int chrom=-1;
int luma=-1;
- char *option;
- char *options[OPTIONS_ARRAY_SIZE];
+ const char *option;
+ const char *options[OPTIONS_ARRAY_SIZE];
int i;
int filterNameOk=0;
int numOfUnknownOptions=0;
More information about the ffmpeg-cvslog
mailing list