summaryrefslogtreecommitdiff
path: root/apps/plugins/splitedit.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/splitedit.c')
-rw-r--r--apps/plugins/splitedit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/splitedit.c b/apps/plugins/splitedit.c
index 9317419c23..35562f99fc 100644
--- a/apps/plugins/splitedit.c
+++ b/apps/plugins/splitedit.c
@@ -269,7 +269,7 @@ static void update_icons(void)
269 LCD_WIDTH/3 + LCD_WIDTH/3 / 2 - BMPWIDTH/2, LCD_HEIGHT - BMPHEIGHT, 269 LCD_WIDTH/3 + LCD_WIDTH/3 / 2 - BMPWIDTH/2, LCD_HEIGHT - BMPHEIGHT,
270 BMPWIDTH, BMPHEIGHT); 270 BMPWIDTH, BMPHEIGHT);
271 271
272#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) 272#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
273 /* The scale icon */ 273 /* The scale icon */
274 rb->lcd_mono_bitmap(SCALE_BMP[rb->peak_meter_get_use_dbfs() ? 1 : 0], 274 rb->lcd_mono_bitmap(SCALE_BMP[rb->peak_meter_get_use_dbfs() ? 1 : 0],
275 2 *LCD_WIDTH/3 + LCD_WIDTH/3 / 2 - BMPWIDTH/2, LCD_HEIGHT - BMPHEIGHT, 275 2 *LCD_WIDTH/3 + LCD_WIDTH/3 / 2 - BMPWIDTH/2, LCD_HEIGHT - BMPHEIGHT,
@@ -909,7 +909,7 @@ unsigned long splitedit_editor(struct mp3entry * mp3_to_split,
909 { 909 {
910 /* read volume info */ 910 /* read volume info */
911 unsigned short volume; 911 unsigned short volume;
912#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) 912#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
913 volume = rb->mas_codec_readreg(0x0c); 913 volume = rb->mas_codec_readreg(0x0c);
914 volume += rb->mas_codec_readreg(0x0d); 914 volume += rb->mas_codec_readreg(0x0d);
915 volume = volume / 2; 915 volume = volume / 2;
@@ -1074,7 +1074,7 @@ unsigned long splitedit_editor(struct mp3entry * mp3_to_split,
1074 lastx = time_to_xpos(mp3->elapsed); 1074 lastx = time_to_xpos(mp3->elapsed);
1075 break; 1075 break;
1076 1076
1077#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) 1077#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
1078#ifdef SPLITEDIT_SPEED100 1078#ifdef SPLITEDIT_SPEED100
1079 case SPLITEDIT_SPEED150: 1079 case SPLITEDIT_SPEED150:
1080 rb->sound_set_pitch(1500); 1080 rb->sound_set_pitch(1500);
@@ -1133,7 +1133,7 @@ unsigned long splitedit_editor(struct mp3entry * mp3_to_split,
1133 break; 1133 break;
1134 1134
1135 case SPLITEDIT_SCALE: 1135 case SPLITEDIT_SCALE:
1136#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) 1136#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
1137 rb->peak_meter_set_use_dbfs(!rb->peak_meter_get_use_dbfs()); 1137 rb->peak_meter_set_use_dbfs(!rb->peak_meter_get_use_dbfs());
1138#endif 1138#endif
1139 splitedit_invalidate_osci(); 1139 splitedit_invalidate_osci();
@@ -1202,7 +1202,7 @@ unsigned long splitedit_editor(struct mp3entry * mp3_to_split,
1202 } 1202 }
1203 } 1203 }
1204 } 1204 }
1205#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) 1205#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
1206#ifdef SPLITEDIT_SPEED100 1206#ifdef SPLITEDIT_SPEED100
1207 rb->sound_set_pitch(1000); /* make sure to reset pitch */ 1207 rb->sound_set_pitch(1000); /* make sure to reset pitch */
1208#endif 1208#endif