Skip to content
Snippets Groups Projects
  1. Mar 15, 2024
  2. Feb 02, 2024
  3. Jul 29, 2023
  4. Apr 20, 2023
  5. Nov 26, 2020
    • Xavier Claessens's avatar
      Meson: Fix doc build when opus is a subproject · d2f6805c
      Xavier Claessens authored and Ralph Giles's avatar Ralph Giles committed
      
      meson.source_root() and meson.build_root() have been deprecated in
      latest Meson release because they are a trap. They point to the root of
      parent project instead of root of current subproject. Meson 0.56.0 added
      meson.project_source/build_root() but it is just as easy to use
      meson.current_source/build_dir() in the root meson.build file and avoids
      bumping required meson version.
      
      Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
      d2f6805c
  6. Oct 28, 2020
  7. Jun 13, 2020
  8. Jun 09, 2020
  9. Jun 01, 2020
    • Ralph Giles's avatar
      trivial_example: Check the return value of fread(). · fefcad37
      Ralph Giles authored
      
      Silence a gcc warning by checking the return value of the fread()
      call instead of the feof() guard. This prevents an infinite loop
      in the case of a read error. Otherwise, when end-of-file is reached
      fread() will certainly return a smaller number of elements read
      than requested, so both cases are handled now.
      
      Add a comment to clarify that we're dropping a partial frame on
      purpose to keep the code simple.
      
      Also add more braces around conditional bodies for less error-prone
      style.
      
      Signed-off-by: default avatarMark Harris <mark.hsj@gmail.com>
      fefcad37
    • Ralph Giles's avatar
      trivial_example: open raw pcm files in binary mode. · 1168a29e
      Ralph Giles authored
      
      The simple codec round-trip example file in the doc directory
      opens an input and output pcm file. It was working fine on
      POSIX systems, but not on Windows, which treats text files
      differently.
      
      This is confusing in a example, so it's better to add an
      explicit binary flag to the fopen() calls. This does nothing
      on unix-like systems, but should make the example work for
      developers on Windows.
      
      Thanks to Wavesonics who reported this on irc.
      
      Signed-off-by: default avatarMark Harris <mark.hsj@gmail.com>
      1168a29e
  10. May 10, 2020
  11. Sep 13, 2018
  12. Sep 19, 2017
  13. Aug 20, 2017
  14. Aug 17, 2017
  15. Jul 26, 2017
  16. Jul 16, 2017
  17. Jun 20, 2017
  18. Jun 16, 2017
  19. Dec 19, 2016
  20. Nov 17, 2016
    • Ricardo Constantino's avatar
      genversion.bat: generate same version as update_version · 8fe210f1
      Ricardo Constantino authored and Ralph Giles's avatar Ralph Giles committed
      
      Remove version.mk and references to it in the repo.
      
      genversion.bat will now generate the same version strings as
      update_version script, i.e. without 'v' prefix and without a
      fallback if git archive is used.
      
      If run from a release tarball it'll use package_version,
      like configure. If run from a git repo, it will use the same
      'git describe' with '-dirty' as update_version.
      
      Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
      8fe210f1
  21. Oct 27, 2016
    • Ralph Giles's avatar
      Make use of dot optional in generating documentation. · 76fa939b
      Ralph Giles authored
      Different distributions of doxygen have different default
      values of HAVE_DOT setting, so we need to pick a specific
      setting to avoid 'missing dot' warnings on some platforms.
      
      Doxygen uses it to generate inclusion graphs for our various
      header files, which is somewhat useful, but not essential.
      We therefore enable dot if it's present (usually through
      the parent graphviz package) but disable it if it's not
      available, silencing the warning, but not giving uniform
      results.
      76fa939b
  22. Oct 21, 2016
  23. Sep 02, 2016
  24. Sep 01, 2016
  25. Jul 06, 2016
  26. Jul 04, 2016
  27. Jul 01, 2016
  28. Jun 30, 2016
  29. Jun 02, 2016
  30. May 18, 2016
  31. Feb 23, 2016
  32. Feb 18, 2016
Loading