Files
redroid-c2/redroid.c2.sh
Ziyang Zhou 25c5f2a89e fix remote-android/redroid-doc#216 auto enable c2
auto enable codec2 if dmabuf_heap or ion available
2022-08-17 09:47:51 +08:00

8 lines
218 B
Bash
Executable File

#!/system/bin/sh
# enable codec2 only when dmabuf_heap or ion available
if [ -c /dev/dma_heap/system ] || [ -c /dev/ion ];then
setprop debug.stagefright.c2inputsurface -1
setprop debug.stagefright.ccodec 4
fi