Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2017-10-29 07:58:23 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2017-10-29 08:01:35 +0300
commitd8b1fd4ad0233fc69a58ac6f91e1d154f22c481b (patch)
tree63768ee9574de760fa82aaaaf38f57e9ffceab2d /configure.ac
parent9f7e7c8ce0131bf75434cdcfd9914cf336af005a (diff)
Enable RFC 8251 changes by default
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 299181c1..fc80275a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -804,12 +804,12 @@ AC_ARG_ENABLE([extra-programs],
AM_CONDITIONAL([EXTRA_PROGRAMS], [test "$enable_extra_programs" = "yes"])
-AC_ARG_ENABLE([update-draft],
- AS_HELP_STRING([--enable-update-draft], [Enable bitstream changes from draft-ietf-codec-opus-update]),,
- [enable_update_draft=no])
+AC_ARG_ENABLE([rfc8251],
+ AS_HELP_STRING([--disable-rfc8251], [Disable bitstream fixes from RFC 8251]),,
+ [enable_rfc8251=yes])
-AS_IF([test "$enable_update_draft" = "yes"], [
- AC_DEFINE([ENABLE_UPDATE_DRAFT], [1], [Enable bitstream changes from draft-ietf-codec-opus-update])
+AS_IF([test "$enable_rfc8251" = "no"], [
+ AC_DEFINE([DISABLE_UPDATE_DRAFT], [1], [Disable bitstream fixes from RFC 8251])
])