diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-01-13 20:51:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-01-13 20:51:49 +0000 |
commit | 162c9c2e0dfe2c84d4ca2d80f9221c5e6e74f04c (patch) | |
tree | 43616c09d6949f2be0d0795deefa94e431deea6f /postproc | |
parent | 99180fe39d9a65eb803718a8f6004a11231bc734 (diff) | |
download | ffmpeg-162c9c2e0dfe2c84d4ca2d80f9221c5e6e74f04c.tar.gz |
dont print -npp parser debug info if only -v
print "using pp filters ..." if -v
Originally committed as revision 4144 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/postprocess.c | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c index 2289a9333b..86df3be581 100644 --- a/postproc/postprocess.c +++ b/postproc/postprocess.c @@ -580,7 +580,7 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality) strncpy(temp, name, GET_MODE_BUFFER_SIZE); - if(verbose) printf("%s\n", name); + if(verbose>1) printf("pp: %s\n", name); for(;;){ char *filterName; @@ -597,7 +597,7 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality) if(filterToken == NULL) break; p+= strlen(filterToken) + 1; // p points to next filterToken filterName= strtok(filterToken, optionDelimiters); - if(verbose) printf("%s::%s\n", filterToken, filterName); + if(verbose>1) printf("pp: %s::%s\n", filterToken, filterName); if(*filterName == '-') { @@ -609,7 +609,7 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality) option= strtok(NULL, optionDelimiters); if(option == NULL) break; - if(verbose) printf(" option: %s\n", option); + if(verbose>1) printf("pp: option: %s\n", option); if(!strcmp("autoq", option) || !strcmp("a", option)) q= quality; else if(!strcmp("nochrom", option) || !strcmp("y", option)) chrom=0; else if(!strcmp("chrom", option) || !strcmp("c", option)) chrom=1; @@ -751,7 +751,7 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality) if(ppMode.chromMode & DERING) ppMode.oldMode |= PP_DERING_C; #endif - if(verbose) printf("lumMode=%X, chromMode=%X\n", ppMode.lumMode, ppMode.chromMode); + if(verbose>1) printf("pp: lumMode=%X, chromMode=%X\n", ppMode.lumMode, ppMode.chromMode); return ppMode; } @@ -794,6 +794,7 @@ void postprocess(unsigned char * src[], int src_stride, { struct PPMode ppMode; static QP_STORE_T zeroArray[2048/8]; + static int firstTime=1; if(newPPFlag) { @@ -804,7 +805,13 @@ void postprocess(unsigned char * src[], int src_stride, return; } - + + if(firstTime && verbose) + { + printf("using pp filters 0x%X\n", mode); + firstTime=0; + } + if(QP_store==NULL) { QP_store= zeroArray; @@ -874,6 +881,8 @@ void postprocess2(unsigned char * src[], int src_stride, { QP_STORE_T quantArray[2048/8]; + static int firstTime=1; + if(QP_store==NULL || (mode->lumMode & FORCE_QUANT)) { int i; @@ -885,6 +894,12 @@ void postprocess2(unsigned char * src[], int src_stride, for(i=0; i<2048/8; i++) quantArray[i]= 1; } + if(firstTime && verbose) + { + printf("using npp filters 0x%X/0x%X\n", mode->lumMode, mode->chromMode); + firstTime=0; + } + #ifdef HAVE_ODIVX_POSTPROCESS // Note: I could make this shit outside of this file, but it would mean one // more function call... |