1. 25 Jun, 2021 1 commit
  2. 31 May, 2021 2 commits
  3. 15 May, 2021 1 commit
    • John Regan's avatar
      flac encoder: enable Ogg FLAC and Ogg chaining · 87fa6bca
      John Regan authored
      refactors GenerateOggSerial into a generic GenerateSerial
      utility, under the util lib.
      
      libFLAC may be encoded without Ogg support. If Ogg support is disabled,
      libFLAC will still export Ogg-related methods (like setting a serial
      number), and throw a runtime error when initializing an Ogg stream.
      
      GenerateOggSerial does not depend on libogg. Refactoring it into
      a generic GenerateSerial prevents having to add build-time checks
      for libogg within the FLAC encoder plugin.
      87fa6bca
  4. 17 Feb, 2021 1 commit
  5. 16 Feb, 2021 3 commits
  6. 17 Jan, 2021 1 commit
  7. 10 Jan, 2021 1 commit
  8. 01 Jan, 2021 1 commit
  9. 21 Sep, 2020 1 commit
  10. 01 Jul, 2020 2 commits
  11. 05 May, 2020 1 commit
  12. 26 Mar, 2020 1 commit
  13. 19 Mar, 2020 1 commit
  14. 16 Mar, 2020 2 commits
  15. 13 Mar, 2020 1 commit
    • Rosen Penev's avatar
      replace stddef.h with cstddef · 2db8bcc3
      Rosen Penev authored
      The former is deprecated with C++14. The standard says both are the same:
      
      The contents and meaning of the header<cstddef>are the same as the C
      standard library header<stddef.h>,except that it does not declare the type
      wchar_t, that it also declares the type byte and its associated
      operations (21.2.5), and as noted in 21.2.3 and 21.2.4.
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      2db8bcc3
  16. 12 Mar, 2020 2 commits
  17. 17 Feb, 2020 1 commit
  18. 04 Feb, 2020 2 commits
  19. 01 Feb, 2020 2 commits
  20. 18 Jan, 2020 3 commits
  21. 05 Jul, 2019 1 commit
  22. 04 Jul, 2019 2 commits
  23. 17 Jun, 2019 2 commits
  24. 03 Apr, 2019 1 commit
  25. 08 Mar, 2019 1 commit
  26. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  27. 31 Oct, 2018 1 commit
  28. 14 Oct, 2018 1 commit
    • Max Kellermann's avatar
      build with Meson instead of autotools · 94592c14
      Max Kellermann authored
      So long, autotools!  This is my last MPD related project to migrate
      away from it.  It has its strengths, but also very obvious weaknesses
      and weirdnesses.  Today, many of its quirks are not needed anymore,
      and are cumbersome and slow.  Now welcome our new Meson overlords!
      94592c14