android boot animation path

http://androidxref.com/7.1.1_r6/xref/frameworks/base/cmds/bootanimation/BootAnimation.cpp#SYSTEM_ENCRYPTED_BOOTANIMATION_FILE

65static const char OEM_BOOTANIMATION_FILE[] = "/oem/media/bootanimation.zip";
66static const char SYSTEM_BOOTANIMATION_FILE[] = "/system/media/bootanimation.zip";
67static const char SYSTEM_ENCRYPTED_BOOTANIMATION_FILE[] = "/system/media/bootanimation-encrypted.zip";

 

309    if (encryptedAnimation && (access(SYSTEM_ENCRYPTED_BOOTANIMATION_FILE, R_OK) == 0)) {
310        mZipFileName = SYSTEM_ENCRYPTED_BOOTANIMATION_FILE;
311    }
312    else if (access(OEM_BOOTANIMATION_FILE, R_OK) == 0) {
313        mZipFileName = OEM_BOOTANIMATION_FILE;
314    }
315    else if (access(SYSTEM_BOOTANIMATION_FILE, R_OK) == 0) {
316        mZipFileName = SYSTEM_BOOTANIMATION_FILE;
317    }