From a9b1b57cfd46f91b3dab4645d57dd16e75874b30 Mon Sep 17 00:00:00 2001 From: Nolen Johnson Date: Fri, 24 May 2024 12:31:03 -0400 Subject: [PATCH] beast: Deccommonize media codecs Change-Id: I9e6898801afe1781836b99f2adc680f2ffd7482e --- device.mk | 6 +- media/media_codecs_performance.xml | 96 ++++++++++++ media/media_profiles_V1_0.xml | 229 +++++++++++++++++++++++++++++ 3 files changed, 330 insertions(+), 1 deletion(-) create mode 100644 media/media_codecs_performance.xml create mode 100644 media/media_profiles_V1_0.xml diff --git a/device.mk b/device.mk index 30021ae..058f821 100644 --- a/device.mk +++ b/device.mk @@ -30,9 +30,13 @@ PRODUCT_COPY_FILES += \ $(LOCAL_PATH)/keylayout/Vendor_0001_Product_0001.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/Vendor_0001_Product_0001.kl ## Media +PRODUCT_COPY_FILES += \ + $(LOCAL_PATH)/media/media_profiles_V1_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml + ifneq ($(PRODUCT_USE_SW_OMX),true) PRODUCT_COPY_FILES += \ - $(LOCAL_PATH)/media/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml + $(LOCAL_PATH)/media/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \ + $(LOCAL_PATH)/media/media_codecs_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_performance.xml endif ## Platform diff --git a/media/media_codecs_performance.xml b/media/media_codecs_performance.xml new file mode 100644 index 0000000..dbf161f --- /dev/null +++ b/media/media_codecs_performance.xml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/media_profiles_V1_0.xml b/media/media_profiles_V1_0.xml new file mode 100644 index 0000000..16e8eb8 --- /dev/null +++ b/media/media_profiles_V1_0.xml @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.20.1