1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

fixed -npp help ... i think i need more sleep ;)

Originally committed as revision 3988 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
Michael Niedermayer 2002-01-04 21:56:11 +00:00
parent 4b001a1312
commit 211c4920ea

View File

@ -580,13 +580,6 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality)
strncpy(temp, name, GET_MODE_BUFFER_SIZE);
if(!strcmp("help", name))
{
printf("%s", help);
ppMode.error++;
return ppMode;
}
if(verbose) printf("%s\n", name);
for(;;){
@ -768,6 +761,13 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality)
int readPPOpt(void *conf, char *arg)
{
int quality;
if(!strcmp("help", arg))
{
printf("%s", help);
exit(1);
}
for(quality=0; quality<GET_PP_QUALITY_MAX+1; quality++)
{
gPPMode[quality]= getPPModeByNameAndQuality(arg, quality);