Commit 7a89ce3e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

libmpeg2: enable ARM optimizations

(libmpeg2 does not autodetect on that architecture)
parent 8b5a3699
......@@ -211,6 +211,9 @@ static int OpenDecoder( vlc_object_t *p_this )
i_accel |= MPEG2_ACCEL_PPC_ALTIVEC;
}
#elif defined(__arm__)
i_accel | MPEG2_ACCEL_ARM;
#else
/* If we do not know this CPU, trust libmpeg2's feature detection */
i_accel = MPEG2_ACCEL_DETECT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment