mpd-0001-decoder-AudiofileDecoderPlugin-fix-build-failure-due-t.patch 805 B

1234567891011121314151617181920212223242526
  1. From 58c9d0c314119a571862b21b2f4e4bf7bbe88a57 Mon Sep 17 00:00:00 2001
  2. From: Gustavo Zacarias <gustavo@zacarias.com.ar>
  3. Date: Tue, 8 Jul 2014 10:39:12 -0300
  4. Subject: [PATCH 1/4] decoder/AudiofileDecoderPlugin: fix build failure due to
  5. missing stdio.h include
  6. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  7. ---
  8. src/decoder/AudiofileDecoderPlugin.cxx | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/src/decoder/AudiofileDecoderPlugin.cxx b/src/decoder/AudiofileDecoderPlugin.cxx
  11. index ab3557e..92223f2 100644
  12. --- a/src/decoder/AudiofileDecoderPlugin.cxx
  13. +++ b/src/decoder/AudiofileDecoderPlugin.cxx
  14. @@ -31,6 +31,7 @@
  15. #include <af_vfs.h>
  16. #include <assert.h>
  17. +#include <stdio.h>
  18. /* pick 1020 since its devisible for 8,16,24, and 32-bit audio */
  19. #define CHUNK_SIZE 1020
  20. --
  21. 1.8.5.5