Skip to content
Snippets Groups Projects
  1. Jan 16, 2018
  2. Jan 08, 2018
  3. Dec 29, 2017
  4. Dec 07, 2017
  5. Nov 14, 2017
  6. Nov 01, 2017
    • Stephen's avatar
      Add macOS and clang builds to the travis config. · c286c605
      Stephen authored
      
      Improve coverage by building more variants in integration
      testing.
      
      There's no equivalent of the apt addon for macOS builds, so
      we put dependencies in Brewfile and call `brew bundle` to
      install them. This works better than calling `brew install`
      directly since the later will error if a package is already
      installed, and even if the error is ignored it won't update
      to the latest version available, resulting in binaried built
      against e.g. vulnerable versions of openssl.
      
      To avoid conflicts with Apple's deprecated openssl package,
      homebrew doesn't install its openssl package in the default
      search path, so we need to manually append the its location
      to PKG_CONFIG_PATH. We cannot build against Apple's package
      because while it provides libraries and an openssl.pc file,
      no headers are available.
      
      Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
      Unverified
      c286c605
    • Stephen's avatar
      Remove unneeded travis lines. · 440e26f6
      Stephen authored
      
      Ubuntu 14.04 (trusty) is the current default, so we don't need to specify.
      
      Using the apt addon means we no longer need sudo access.
      
      Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
      Unverified
      440e26f6
  7. Sep 12, 2017
  8. Aug 02, 2017
    • Ralph Giles's avatar
      mingw: Update to opus 1.2.1. · 2c239ebc
      Ralph Giles authored
      New release of the codec reference implementation.
    • Timothy B. Terriberry's avatar
      Minor win32 warning fix. · dc27cf17
      Timothy B. Terriberry authored
      op_fopen() and op_freopen() declare these arguments as non-NULL,
       so when building with mingw, the compiler reasonably complains
       when we check to see if they're NULL.
      We could remove the OP_ARG_NONNULL tags, but the behavior of
       _wopen/_wfreopen appears to be to crash on NULL for either
       parameter.
      On Linux, the behavior appears to be to handle a NULL path (fopen
       returns NULL with errno set to EFAULT, and freopen returns the
       passed FILE * with errno set to EFAULT), but crash on a NULL mode.
      Keeping the OP_ARG_NONNULL tags promises that passing NULL results
       in undefined behavior, which is at least consistent with the
       behavior being different on different platforms.
      It's also consistent with the ABI promises of previous releases,
       which compilers linking against libopusfile might have taken
       advantage of.
      dc27cf17
    • Ralph Giles's avatar
      Update soname for the opusfile 0.9 release. · d9bbf207
      Ralph Giles authored
      The return type of op_serialno changed from ogg_uint32
      to opus_uint32, but those types should be abi compatible.
      Unverified
      d9bbf207
    • Ralph Giles's avatar
      mingw: Update to opus 1.2. · 5f884d4f
      Ralph Giles authored
      New release of the codec reference implementation.
      Unverified
      5f884d4f
    • Ralph Giles's avatar
      mingw: Use an https url for downloading libogg. · d36aab71
      Ralph Giles authored
      downloads.xiph.org recently got https support.
      Unverified
      d36aab71
    • Ralph Giles's avatar
      Fix a formatting nit. · d45bd3bf
      Ralph Giles authored
      Unverified
      d45bd3bf
    • Thomas Daede's avatar
      Disable building latex documentation on ci. · e46f46a5
      Thomas Daede authored
      The documentation currently fails to build on Jenkins due to
      hyperref and doxygen not playing nicely with each other on
      Debian Stretch.
      e46f46a5
    • Timothy B. Terriberry's avatar
      Print a useful error when pkg-config is missing · 2521a7d8
      Timothy B. Terriberry authored
      Without this check, the PKG_CHECK_MODULES() macro remains
      unexpanded, which gives a syntax error when the shell reaches that
      point in the configure script, even for checks which are disabled
      (e.g., the OpenSSL check when using --disable-http).
      
      Instead, explicitly check for pkg-config and give the user useful
      advice on how to solve the problem if it's not found.
      
      Thanks to eXpl0it3r for reporting a problem for which installing
      pkg-config turned out to be the solution.
      2521a7d8
  9. Jul 07, 2017
    • Timothy B. Terriberry's avatar
      Improve source/stream terminology consistency · c59d42b6
      Timothy B. Terriberry authored
      We inherited the term "source" from vorbisfile's "datasource", but
       were using it interchangeably with stream.
      At least one user did not even realize the that the _source
       parameter passed to op_open_callbacks() was the same as the
       _stream parameter taken by those callbacks, which is reasonable
       because we never said so.
      Consistently use "stream" instead of "source" in both the
       documentation and the code.
      c59d42b6
    • Timothy B. Terriberry's avatar
      Minor documentation cross-reference. · 881a54da
      Timothy B. Terriberry authored
      Let people reading about the output_gain field know how to change
       the way it gets applied.
      881a54da
  10. Jun 17, 2017
  11. Jun 07, 2017
    • Ralph Giles's avatar
      Propogate openssl CFLAGS to the opusurl build. · 1fbe0cd1
      Ralph Giles authored
      We added DEPS_CFLAGS to the general build, but opusurl
      has an additional dependency on openssl. If the headers
      were outside the normal search path, configure could
      succeed but then the build would fail on http.c.
      
      We need to add URL_DEPS_CFLAGS to that specific target.
      Unverified
      1fbe0cd1
Loading