media - use google low end video media codec xml
- CTS testGoogVP8FlexNearMaxMax testcase will execute decoding and encoding in parallel with max resolution 2048x2048. - low end chipsets does not support the above max resolution so use low end media codec xml which has max resolution 1280x1280. Change-Id: Idc153ad182262cccd36711f20caa5143a30c3f32
This commit is contained in:
parent
aa1dac5ed3
commit
a8d5474cea
|
@ -698,10 +698,17 @@ PRODUCT_COPY_FILES += \
|
|||
PRODUCT_COPY_FILES += \
|
||||
frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:system/etc/media_codecs_google_audio.xml \
|
||||
frameworks/av/media/libstagefright/data/media_codecs_google_telephony.xml:system/etc/media_codecs_google_telephony.xml \
|
||||
frameworks/av/media/libstagefright/data/media_codecs_google_video.xml:system/etc/media_codecs_google_video.xml \
|
||||
device/qcom/common/media/media_profiles.xml:system/etc/media_profiles.xml \
|
||||
device/qcom/common/media/media_codecs.xml:system/etc/media_codecs.xml
|
||||
|
||||
ifeq ($(TARGET_DEVICE_NAME_LOW_END),true)
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/av/media/libstagefright/data/media_codecs_google_video_le.xml:system/etc/media_codecs_google_video_le.xml
|
||||
else
|
||||
PRODUCT_COPY_FILES += \
|
||||
frameworks/av/media/libstagefright/data/media_codecs_google_video.xml:system/etc/media_codecs_google_video.xml
|
||||
endif
|
||||
|
||||
# enable overlays to use our version of
|
||||
# source/resources etc.
|
||||
DEVICE_PACKAGE_OVERLAYS += device/qcom/common/device/overlay
|
||||
|
|
Loading…
Reference in New Issue