diff options
| author | Thomas Richter <thomas.richter@iis.fraunhofer.de> | 2021-05-26 12:51:06 +0200 |
|---|---|---|
| committer | Thomas Richter <thomas.richter@iis.fraunhofer.de> | 2021-05-26 12:51:06 +0200 |
| commit | 483cc7f388df0353b970f80ac8774667815a8b16 (patch) | |
| tree | 7d1cc6b7b57e10ef1fd82fbd10b5c0d048e25465 /configure.ac | |
| parent | a859d0745d501b6290bb1f0bcfef80423ace24f7 (diff) | |
Added JXS specific header files to separate JXS functionality out.
Updated autoconf to switch JXS support for ADCP on or off.
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index af3edf2..01c213c 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,14 @@ AC_ARG_ENABLE([as-02], *) AC_MSG_ERROR([bad value ${enableval} for --enable-as-02]) ;; esac],[as_02_use=false]) AM_CONDITIONAL([USE_AS_02], [test x$as_02_use = xtrue]) +AC_ARG_ENABLE([asdcp-jxs], + [ --enable-asdcp-jxs enable support wrapping JPEG XS files], + [case "${enableval}" in + yes) asdcp_jxs_use=true ;; + no) asdcp_jxs_use=false ;; + *) AC_MSG_ERROR([bad value ${enableval} for --enable-asdcp-jxs]) ;; + esac],[asdcp_jxs_use=false]) + AM_CONDITIONAL([USE_ASDCP_JXS], [test x$asdcp_jxs_use = xtrue]) AC_ARG_ENABLE([phdr], [ --enable-phdr enable support for Prototype for High Dyamic Range in AS-02], [case "${enableval}" in |
