sm8250-common: video: enbale adaptive b-frame capability

'enc_default_bframe_count' set to 1.
'enc_max_mbs_per_sec' set to max-hw-load.

Bug: 156724722
Test: run ECO experiments
Change-Id: I884be887e9ae71bb9f8778f8bd0f5dd728d1ba7e
This commit is contained in:
wenchangliu
2020-06-20 18:47:09 +08:00
committed by Sebastiano Barezzi
parent b9a3cf999d
commit fc373f395f
3 changed files with 16 additions and 1 deletions

View File

@@ -244,7 +244,8 @@ PRODUCT_PACKAGES += \
# Media configs
PRODUCT_PACKAGES += \
media_codecs_c2.xml \
media_codecs_performance_c2.xml
media_codecs_performance_c2.xml \
video_system_specs.json
# NFC
PRODUCT_PACKAGES += \

View File

@@ -15,3 +15,9 @@ prebuilt_etc {
src: "media_codecs_performance_c2.xml",
vendor: true,
}
prebuilt_etc {
name: "video_system_specs.json",
src: "video_system_specs.json",
vendor: true,
}

View File

@@ -0,0 +1,8 @@
{
"Video": {
"Presets": {
"enc_default_bframe_count": 1,
"enc_max_mbs_per_sec": 7833600
}
}
}