]> git.sesse.net Git - ffmpeg/commit
configure: fix --enable-omx compile on raspberry pi
authorAman Gupta <aman@tmm1.net>
Thu, 29 Aug 2019 15:44:45 +0000 (08:44 -0700)
committerAman Gupta <aman@tmm1.net>
Thu, 29 Aug 2019 15:52:37 +0000 (08:52 -0700)
commit59e651c0524450e2acb0cfb2838cd989e806899b
tree303acf0ccdb6a52d35743ffcaad6b7ee30cebce3
parent15a65c13e18464fa3077812f0a21131dcf7830cb
configure: fix --enable-omx compile on raspberry pi

Many ffmpeg + rpi compilation guides on the internet recommend
using `./configure --enable-omx --enable-omx-rpi`. This fails
to find the IL OMX headers on device because the omx require_headers
check happens first before the add_cflags in omx_rpi.

A workaround is to use `./configure --enable-omx-rpi` only, since
omx_rpi already implies omx. But because many users expect to use
existing scripts and commands, we swap the order here so omx_rpi
special cases are applied first.

In the past this wasn't an issue because users noticed the OMX_Core.h
missing error and installed libomxil-bellagio-dev. But since
76c82843ccad1, the rpi specific headers from /opt/vc/include/IL
are required.

Signed-off-by: Aman Gupta <aman@tmm1.net>
configure