From a9ea1a42695401334717f2e497a7f5576d87691d Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sat, 22 Jun 2013 16:39:40 -0400 Subject: Fix some whitespace in files changed in following commit. Change-Id: Ie3f43e43076e0dcae9a10f1b0b9e4698b398acee Reviewed-on: http://gerrit.rockbox.org/492 Reviewed-by: Michael Sevakis Tested-by: Michael Sevakis --- firmware/export/audio.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'firmware/export/audio.h') diff --git a/firmware/export/audio.h b/firmware/export/audio.h index 5309ddd1d1..293956cb37 100644 --- a/firmware/export/audio.h +++ b/firmware/export/audio.h @@ -77,7 +77,7 @@ void audio_beep(int duration); /* Required call when audio buffer is required for some other purpose */ /* implemented in apps but called from firmware(!) */ -unsigned char *audio_get_buffer(bool talk_buf, size_t *buffer_size); +unsigned char *audio_get_buffer(bool talk_buf, size_t *buffer_size); #if CONFIG_CODEC == SWCODEC void audio_next_dir(void); @@ -257,29 +257,29 @@ void audio_register_event_handler(AUDIO_EVENT_HANDLER handler, unsigned short ma /***********************************************************************/ /* handler return codes */ -#define AUDIO_EVENT_RC_IGNORED 200 +#define AUDIO_EVENT_RC_IGNORED 200 /* indicates that no action was taken or the event was not recognized */ -#define AUDIO_EVENT_RC_HANDLED 201 - /* indicates that the event was handled and some action was taken which renders - the original event invalid; USE WITH CARE!; this return code aborts all further +#define AUDIO_EVENT_RC_HANDLED 201 + /* indicates that the event was handled and some action was taken which renders + the original event invalid; USE WITH CARE!; this return code aborts all further processing of the given event */ /***********************************************************************/ /* audio event IDs */ -#define AUDIO_EVENT_POS_REPORT (1<<0) +#define AUDIO_EVENT_POS_REPORT (1<<0) /* sends a periodic song position report to handlers; a report is sent on - each kernal tick; the number of ticks per second is defined by HZ; on each - report the current song position is passed in 'data'; if a handler takes an - action that changes the song or the song position it must return + each kernal tick; the number of ticks per second is defined by HZ; on each + report the current song position is passed in 'data'; if a handler takes an + action that changes the song or the song position it must return AUDIO_EVENT_RC_HANDLED which suppresses the event for any remaining handlers */ -#define AUDIO_EVENT_END_OF_TRACK (1<<1) +#define AUDIO_EVENT_END_OF_TRACK (1<<1) /* generated when the end of the currently playing track is reached; no data is passed; if the handler implements some alternate end-of-track processing it should return AUDIO_EVENT_RC_HANDLED which suppresses the - event for any remaining handlers as well as the normal end-of-track + event for any remaining handlers as well as the normal end-of-track processing */ #endif -- cgit v1.2.3