2
1

mpd-0002-decoder-OpusDecoderPlugin-fix-build-failure-due-to-mis.patch 737 B

1234567891011121314151617181920212223242526
  1. From 66f19e78a5b8e7b7aefd807218edafcf55ccee55 Mon Sep 17 00:00:00 2001
  2. From: Gustavo Zacarias <gustavo@zacarias.com.ar>
  3. Date: Tue, 8 Jul 2014 10:39:38 -0300
  4. Subject: [PATCH 2/4] decoder/OpusDecoderPlugin: fix build failure due to
  5. missing stdio.h include
  6. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  7. ---
  8. src/decoder/OpusDecoderPlugin.cxx | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/src/decoder/OpusDecoderPlugin.cxx b/src/decoder/OpusDecoderPlugin.cxx
  11. index f3d7b34..01ea368 100644
  12. --- a/src/decoder/OpusDecoderPlugin.cxx
  13. +++ b/src/decoder/OpusDecoderPlugin.cxx
  14. @@ -40,6 +40,7 @@
  15. #include <glib.h>
  16. #include <string.h>
  17. +#include <stdio.h>
  18. static constexpr opus_int32 opus_sample_rate = 48000;
  19. --
  20. 1.8.5.5