libs: encoder: Add MB ratecontrol mode to get its string

This commit is contained in:
Wangfei 2019-07-01 17:02:33 +08:00 committed by Víctor Manuel Jáquez Leal
parent 66d6754fce
commit b8739a89b0

View file

@ -338,6 +338,10 @@ string_of_VARateControl (guint rate_control)
return "VBR";
case VA_RC_VBR_CONSTRAINED:
return "VBR-Constrained";
#if VA_CHECK_VERSION(0,39,1)
case VA_RC_MB:
return "MB";
#endif
default:
break;
}