Looking through the source code, I get this;
less ffmbc.c|grep "(ost->target"
if (!strcmp(ost->target, "vcd") || !strcmp(ost->target, "svcd"))
if (!strcmp(ost->target, "vcd") || !strcmp(ost->target, "svcd") ||
!strcmp(ost->target, "dvd") || !strcmp(ost->target, "dvcpro50") ||
!strcmp(ost->target, "dvcpro") || !strcmp(ost->target, "dvcam") ||
!strncmp(ost->target, "imx", 3)) {
if (!strcmp(ost->target, "vcd")) {
} else if (!strcmp(ost->target, "svcd")) {
} else if (!strcmp(ost->target, "dvd") || !strcmp(ost->target, "dvcpro50") ||
!strcmp(ost->target, "dvcpro") || !strcmp(ost->target, "dvcam")) {
} else if (!strcmp(ost->target, "dvcprohd")) {
} else if (!strncmp(ost->target, "imx", 3)) {
} else if (!strcmp(ost->target, "xdcamhd422")) {
Phillip