Skip to content
Snippets Groups Projects
  1. Jul 29, 2023
  2. Apr 20, 2023
  3. 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>
      Verified
      d2f6805c
  4. Oct 28, 2020
  5. Jun 13, 2020
  6. Jun 09, 2020
  7. 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>
      Verified
      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>
      Verified
      1168a29e
  8. May 10, 2020
  9. Sep 13, 2018
  10. Sep 19, 2017
  11. Aug 20, 2017
  12. Aug 17, 2017
  13. Jul 26, 2017
  14. Jul 16, 2017
  15. Jun 20, 2017
  16. Jun 16, 2017
  17. Dec 19, 2016
  18. Nov 17, 2016
  19. 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
  20. Oct 21, 2016
  21. Sep 02, 2016
  22. Sep 01, 2016
  23. Jul 06, 2016
  24. Jul 04, 2016
  25. Jul 01, 2016
  26. Jun 30, 2016
  27. Jun 02, 2016
  28. May 18, 2016
  29. Feb 23, 2016
  30. Feb 18, 2016
  31. Feb 17, 2016
Loading