Skip to content
Snippets Groups Projects
  1. Aug 15, 2011
  2. Aug 14, 2011
  3. Aug 13, 2011
  4. Aug 12, 2011
  5. Aug 11, 2011
  6. Aug 10, 2011
  7. Aug 08, 2011
  8. Aug 07, 2011
  9. Aug 05, 2011
  10. Aug 03, 2011
  11. Aug 02, 2011
    • Gregory Maxwell's avatar
      Rename libcelt/static_modes_(fixed|float).c to .h to better reflect · 63fd63d6
      Gregory Maxwell authored
      their usage and to make any toolchain that doesn't like to #include
      .c file happy.
      63fd63d6
    • Ralph Giles's avatar
      Tell automake to put object files in subdirectories. · 2852cb14
      Ralph Giles authored
      Previously the autotools build litered whatever directory
      'make' was invoked from with intermediate files. Adding
      'subdir-objects' to AUTOMAKE_OPTIONS tells it to put them
      in subdirectories according to the relative paths to the
      source files, .i.e. silk/schur.o for $(srcdir)/silk/schur.c
      
      The change to autogen.sh is necessary to handle the
      (apparently new) case where an AUTOMAKE_OPTIONS line is
      given without a minimum version number.
      2852cb14
    • Ralph Giles's avatar
      Remove duplicate 'libopus' from the fallback version string. · 5840aaf2
      Ralph Giles authored
      Thanks to Tim Terriberry for pointing out the issue.
      5840aaf2
    • Ralph Giles's avatar
      Use 'libopus' rather than 'Opus' in the version string. · b8a30f9c
      Ralph Giles authored
      This better distinguishes the reference implementation,
      which is what this string is meant to do. Thanks to
      Greg Maxwell for the suggestion.
      b8a30f9c
    • Ralph Giles's avatar
      Print the library version from test_opus. · a57e0b98
      Ralph Giles authored
      This lets us verify this part of the API is working.
      a57e0b98
    • Ralph Giles's avatar
      Regularize whitespace in the src directory. · 641eea83
      Ralph Giles authored
      Remove trailing whitespace, convert tabs to 4 spaces, re-align
      test_opus to use 4-space indents instead of 3, and re-wrap some
      long lines.
      641eea83
    • Ralph Giles's avatar
      Prepend "Opus" to the version string. · e308edf8
      Ralph Giles authored
      This lets users print it out without context, which is a little
      easier for clients.
      e308edf8
    • Ralph Giles's avatar
      Query git for the repository revision and use that for the version string. · 50f933b5
      Ralph Giles authored
      Rather than compiling in the fixed version number from the configure
      file, it's more helpful for testing and debugging to directly embed
      the repository's revision. We use 'git describe --tags' for this, since
      for tagged revisions it just returns the tag name, and in other cases
      is more readable than a raw commit id.
      
      If git isn't present or can't find a repository to query, we fall back
      to the static version number in the configure script.
      50f933b5
    • Ralph Giles's avatar
      Define a fallback version string. · 42eb9330
      Ralph Giles authored
      The new opus_get_version_string() call just returns a static string
      defined by OPUS_VERSION, which is passed in from the build system
      through config.h (or a custom compile line). Provide a fallback to
      "unknown" if the build system fails to actually provide that definition.
      
      This restores compilation with Makefile.draft.
      
      In general, this means there will be builds out there with non-specific
      version strings, since ports won't be forced to update the string. While
      that's unfortunate, I think it's more valuable that the library be simple
      to build.
      42eb9330
Loading