mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 04:30:37 -04:00
- Use static release tarballs that upstream has provided since 2.4.6 - Rebase patches Changes: https://github.com/irtimmer/moonlight-embedded/releases/tag/v2.4.7
17 lines
564 B
C
17 lines
564 B
C
--- src/platform.c.orig 2018-08-11 15:43:13 UTC
|
|
+++ src/platform.c
|
|
@@ -174,14 +174,6 @@ AUDIO_RENDERER_CALLBACKS* platform_get_audio(enum plat
|
|
if (audio_device == NULL || strcmp(audio_device, "local") == 0 || strcmp(audio_device, "hdmi") == 0)
|
|
return (PAUDIO_RENDERER_CALLBACKS) dlsym(RTLD_DEFAULT, "audio_callbacks_omx");
|
|
#endif
|
|
- default:
|
|
- #ifdef HAVE_PULSE
|
|
- if (audio_pulse_init(audio_device))
|
|
- return &audio_callbacks_pulse;
|
|
- #endif
|
|
- #ifdef HAVE_ALSA
|
|
- return &audio_callbacks_alsa;
|
|
- #endif
|
|
}
|
|
return NULL;
|
|
}
|