mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 13:36:39 +00:00
libs: encoder: Add MB ratecontrol mode to get its string
This commit is contained in:
parent
66d6754fce
commit
b8739a89b0
1 changed files with 4 additions and 0 deletions
|
@ -338,6 +338,10 @@ string_of_VARateControl (guint rate_control)
|
||||||
return "VBR";
|
return "VBR";
|
||||||
case VA_RC_VBR_CONSTRAINED:
|
case VA_RC_VBR_CONSTRAINED:
|
||||||
return "VBR-Constrained";
|
return "VBR-Constrained";
|
||||||
|
#if VA_CHECK_VERSION(0,39,1)
|
||||||
|
case VA_RC_MB:
|
||||||
|
return "MB";
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue