summaryrefslogtreecommitdiff
path: root/apps/abrepeat.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-17 00:01:32 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit8cb555460ff79e636a7907fb2589e16db98c8600 (patch)
tree930a3878c7641c9ce045b24f0ade1309e36d5806 /apps/abrepeat.c
parent0c4f89370d05056faa789aa9cabcccc4e509fb9f (diff)
[3/4] Completely remove HWCODEC support
'swcodec' is now always set (and recording_swcodec for recording-capable units) in feature.txt so the manual and language strings don't need to all be fixed up. Change-Id: Ib2c9d5d157af8d33653e2d4b4a12881b9aa6ddb0
Diffstat (limited to 'apps/abrepeat.c')
-rw-r--r--apps/abrepeat.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/apps/abrepeat.c b/apps/abrepeat.c
index 999d9dcf38..19e9450c99 100644
--- a/apps/abrepeat.c
+++ b/apps/abrepeat.c
@@ -39,7 +39,6 @@ static inline bool ab_B_marker_set(void)
}
-#if (CONFIG_CODEC == SWCODEC)
void ab_end_of_track_report(void)
{
if ( ab_A_marker_set() && ! ab_B_marker_set() )
@@ -47,38 +46,6 @@ void ab_end_of_track_report(void)
ab_jump_to_A_marker();
}
}
-#else
-static int ab_audio_event_handler(unsigned short event, unsigned long data)
-{
- int rc = AUDIO_EVENT_RC_IGNORED;
- if ( ab_repeat_mode_enabled() )
- {
- switch(event)
- {
- case AUDIO_EVENT_POS_REPORT:
- {
- if ( ! (audio_status() & AUDIO_STATUS_PAUSE) &&
- ab_reached_B_marker(data) )
- {
- ab_jump_to_A_marker();
- rc = AUDIO_EVENT_RC_HANDLED;
- }
- break;
- }
- case AUDIO_EVENT_END_OF_TRACK:
- {
- if ( ab_A_marker_set() && ! ab_B_marker_set() )
- {
- ab_jump_to_A_marker();
- rc = AUDIO_EVENT_RC_HANDLED;
- }
- break;
- }
- }
- }
- return rc;
-}
-#endif
void ab_repeat_init(void)
{
@@ -86,10 +53,6 @@ void ab_repeat_init(void)
if ( ! ab_initialized )
{
ab_initialized = true;
-#if (CONFIG_CODEC != SWCODEC)
- audio_register_event_handler(ab_audio_event_handler,
- AUDIO_EVENT_POS_REPORT | AUDIO_EVENT_END_OF_TRACK );
-#endif
}
}
@@ -116,16 +79,7 @@ reasonable amount of time for the typical user to react */
void ab_jump_to_A_marker(void)
{
-#if (CONFIG_CODEC != SWCODEC)
- bool paused = (audio_status() & AUDIO_STATUS_PAUSE) != 0;
- if ( ! paused )
- audio_pause();
-#endif
audio_ff_rewind(ab_A_marker);
-#if (CONFIG_CODEC != SWCODEC)
- if ( ! paused )
- audio_resume();
-#endif
}
void ab_reset_markers(void)