Skip to content
Snippets Groups Projects
  1. Aug 08, 2020
  2. Jul 08, 2020
  3. Jun 18, 2020
  4. Jun 16, 2020
  5. Jun 14, 2020
  6. Jun 13, 2020
  7. Jun 12, 2020
  8. Jun 11, 2020
  9. Jun 09, 2020
  10. Jun 01, 2020
    • Ralph Giles's avatar
      Build trivial_example by default. · 72a3a6c1
      Ralph Giles authored
      
      Add doc/trivial_example.c to the autotools build so we get
      some minimal verification that the code compiles.
      
      Signed-off-by: default avatarMark Harris <mark.hsj@gmail.com>
      72a3a6c1
    • 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
  11. May 26, 2020
  12. May 10, 2020
  13. Apr 26, 2020
  14. Apr 21, 2020
Loading