comparison libvo/vo_aa.c @ 4258:31ed0b5d8126

Added reverting support for -aa* options
author albeu
date Sat, 19 Jan 2002 17:01:48 +0000
parents f2abd12e9231
children ed5b85b713a3
comparison
equal deleted inserted replaced
4257:ab189f1f876f 4258:31ed0b5d8126
741 741
742 } 742 }
743 return ERR_NOT_AN_OPTION; 743 return ERR_NOT_AN_OPTION;
744 744
745 } 745 }
746
747 void
748 vo_aa_revertoption(config_t* opt,char* param) {
749 if (!strcasecmp(opt, "aaosdcolor"))
750 aaopt_osdcolor= AA_SPECIAL;
751 else if (!strcasecmp(opt, "aasubcolor"))
752 aaopt_subcolor= AA_SPECIAL;
753 }
754