1. 18 Jan, 2020 1 commit
  2. 05 Jul, 2019 1 commit
  3. 04 Jul, 2019 1 commit
  4. 17 Jun, 2019 1 commit
  5. 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
  6. 31 Oct, 2018 1 commit
  7. 16 Jul, 2018 1 commit
  8. 03 Jan, 2017 1 commit
  9. 07 Nov, 2016 1 commit
  10. 28 Oct, 2016 1 commit
  11. 04 May, 2016 2 commits
  12. 01 Mar, 2016 1 commit
  13. 26 Feb, 2016 1 commit
  14. 16 Oct, 2015 1 commit
  15. 17 Sep, 2015 1 commit
  16. 21 Jan, 2015 1 commit
  17. 01 Jan, 2015 1 commit
  18. 13 Aug, 2014 1 commit
    • Max Kellermann's avatar
      encoder/shine: require libshine 3.1, adapt to new API · 8b7718fb
      Max Kellermann authored
      The "written" argument to shine_encode_buffer() and shine_flush() was
      changed from "long" to "int", which breaks API and ABI compatibility.
      This is a big deal, and it doesn't seem worthwile to keep support for
      the (broken) 3.0 release.
      8b7718fb
  19. 23 Jan, 2014 2 commits
  20. 13 Jan, 2014 3 commits
    • Andrée Ekroth's avatar
      encoder/shine: fix segfault workaround · cd5817b6
      Andrée Ekroth authored
      Initializing and closing the Shine library without
      writing any data results in a segmentation fault.
      The current workaround writes zeroes if there was
      no actual data.
      cd5817b6
    • Andrée Ekroth's avatar
      encoder/shine: remove unnecessary buffer · 56a7fcf1
      Andrée Ekroth authored
      Now writes to the de-interleaved buffers directly,
      instead of writing to an intermediate fifo buffer.
      
      Fix indentation and 80 char width lines.
      56a7fcf1
    • Andrée Ekroth's avatar
      Shine encoding plugin · ea771c17
      Andrée Ekroth authored
      This encoding plugin features a fixed-point mp3 encoder,
      with faster encoding on architectures without a FPU.
      
      Right now the encoder is limited to stereo and 16 bit depth.
      The bitrate and sample rate can be modified in audio_output.
      
      audio_output {
              type            "httpd"
              name            "My shine stream"
              encoder         "shine"
              port            "8000"
              format          "44100:16:2"
              bitrate         "320"  # default: 128
      }
      ea771c17