提交 211c4920 编写于 作者: M Michael Niedermayer

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

Originally committed as revision 3988 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
上级 4b001a13
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册