From 2ebb8da275da1aa67d148d8ea4ddc1a3e94bd019 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sun, 4 Aug 2019 16:51:50 -0400 Subject: Mikmod plugin improvements - Improved sound quality (use 44.1KHz) - Conventional mixer is now used - Playback is performed in a separate thread - Speech feedback in menus Patch by Igor Poretsky Change-Id: I13baa224cefd67aefe6d62b988971bfbd421757d --- apps/plugins/mikmod/mikmod_supp.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'apps/plugins/mikmod/mikmod_supp.h') diff --git a/apps/plugins/mikmod/mikmod_supp.h b/apps/plugins/mikmod/mikmod_supp.h index c76c283b92..29fa7ebf35 100644 --- a/apps/plugins/mikmod/mikmod_supp.h +++ b/apps/plugins/mikmod/mikmod_supp.h @@ -64,15 +64,7 @@ int mmsupp_sprintf(char *buf, const char *fmt, ... ); extern const struct plugin_api * rb; -#ifdef SIMULATOR -#define SAMPLE_RATE SAMPR_44 /* Simulator requires 44100Hz */ -#else -#if (HW_SAMPR_CAPS & SAMPR_CAP_22) /* use 22050Hz if we can */ -#define SAMPLE_RATE SAMPR_22 /* 22050 */ -#else #define SAMPLE_RATE SAMPR_44 /* 44100 */ -#endif -#endif #define BUF_SIZE 4096*8 #define NBUF 2 -- cgit v1.2.3