diff options
author | Michael Gernoth <michael@gernoth.net> | 2015-02-15 21:06:22 +0100 |
---|---|---|
committer | Andreas Blaesius <skate4life@gmx.de> | 2015-02-16 19:46:45 +0100 |
commit | 55a5dac2e82a820786a17dcf7fd3d6ef7ceab62e (patch) | |
tree | 2e0a9f39fa7e7a3c9d06249900d955aa25944a7c /p31xx-common.mk | |
parent | 05705811249d6975f217c38133cece49d9c2cfb2 (diff) | |
download | device_samsung_espressowifi-55a5dac2e82a820786a17dcf7fd3d6ef7ceab62e.zip device_samsung_espressowifi-55a5dac2e82a820786a17dcf7fd3d6ef7ceab62e.tar.gz device_samsung_espressowifi-55a5dac2e82a820786a17dcf7fd3d6ef7ceab62e.tar.bz2 |
media_codecs: fix Netflix
The current Netflix app tries very hard to find a codec which supports
AdaptivePlayback. As our HW-codec doesn't support that, the Google
H.264 software-codec gets used. But it is incapable of decoding the
stream from Netflix, returning H264SWDEC_STRM_ERR. The hw-codec
plays the stream just fine.
This removes the declaration of adaptive-playback from the (broken)
software-codec which causes Netflix to use hw-based decoding.
Change-Id: I50b33f445a7db5bd7ad59d200277c193c68e3ba7
Diffstat (limited to 'p31xx-common.mk')
-rwxr-xr-x | p31xx-common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p31xx-common.mk b/p31xx-common.mk index afe0c62..4e217ed 100755 --- a/p31xx-common.mk +++ b/p31xx-common.mk @@ -57,10 +57,10 @@ PRODUCT_PROPERTY_OVERRIDES += \ # Media profiles PRODUCT_COPY_FILES += \ $(LOCAL_PATH)/configs/media_codecs.xml:system/etc/media_codecs.xml \ + $(LOCAL_PATH)/configs/media_codecs_google_video.xml:system/etc/media_codecs_google_video.xml \ $(LOCAL_PATH)/configs/media_profiles.xml:system/etc/media_profiles.xml \ 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 \ frameworks/av/media/libstagefright/data/media_codecs_ffmpeg.xml:system/etc/media_codecs_ffmpeg.xml # Keylayout |