1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Linus Nielsen Feltzing
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
35 /***************************************************************************/
37 extern struct thread_entry
*codec_thread_p
;
39 /** General recording state **/
40 static bool is_recording
; /* We are recording */
41 static bool is_paused
; /* We have paused */
42 static unsigned long errors
; /* An error has occured */
43 static unsigned long warnings
; /* Warning */
44 static int flush_interrupts
= 0; /* Number of messages queued that
45 should interrupt a flush in
47 for a safety net and a prompt
48 response to stop, split and pause
50 only interrupts a flush initiated
53 /* Utility functions for setting/clearing flushing interrupt flag */
54 static inline void flush_interrupt(void)
57 logf("flush int: %d", flush_interrupts
);
60 static inline void clear_flush_interrupt(void)
62 if (--flush_interrupts
< 0)
66 /** Stats on encoded data for current file **/
67 static size_t num_rec_bytes
; /* Num bytes recorded */
68 static unsigned long num_rec_samples
; /* Number of PCM samples recorded */
70 /** Stats on encoded data for all files from start to stop **/
72 static unsigned long long accum_rec_bytes
; /* total size written to chunks */
73 static unsigned long long accum_pcm_samples
; /* total pcm count processed */
76 /* Keeps data about current file and is sent as event data for codec */
77 static struct enc_file_event_data rec_fdata IDATA_ATTR
=
86 /** These apply to current settings **/
87 static int rec_source
; /* current rec_source setting */
88 static int rec_frequency
; /* current frequency setting */
89 static unsigned long sample_rate
; /* Sample rate in HZ */
90 static int num_channels
; /* Current number of channels */
91 static struct encoder_config enc_config
; /* Current encoder configuration */
92 static unsigned long pre_record_ticks
; /* pre-record time in ticks */
94 /****************************************************************************
95 use 2 circular buffers:
96 pcm_buffer=DMA output buffer: chunks (8192 Bytes) of raw pcm audio data
97 enc_buffer=encoded audio buffer: storage for encoder output data
100 1. when entering recording_screen DMA feeds the ringbuffer pcm_buffer
101 2. if enough pcm data are available the encoder codec does encoding of pcm
102 chunks (4-8192 Bytes) into ringbuffer enc_buffer in codec_thread
103 3. pcmrec_callback detects enc_buffer 'near full' and writes data to disk
105 Functions calls (basic encoder steps):
106 1.main: audio_load_encoder(); start the encoder
107 2.encoder: enc_get_inputs(); get encoder recording settings
108 3.encoder: enc_set_parameters(); set the encoder parameters
109 4.encoder: enc_get_pcm_data(); get n bytes of unprocessed pcm data
110 5.encoder: enc_unget_pcm_data(); put n bytes of data back (optional)
111 6.encoder: enc_get_chunk(); get a ptr to next enc chunk
112 7.encoder: <process enc chunk> compress and store data to enc chunk
113 8.encoder: enc_finish_chunk(); inform main about chunk processed and
114 is available to be written to a file.
115 Encoder can place any number of chunks
116 of PCM data in a single output chunk
117 but must stay within its output chunk
119 9.encoder: repeat 4. to 8.
120 A.pcmrec: enc_events_callback(); called for certain events
123 ****************************************************************************/
125 /** buffer parameters where incoming PCM data is placed **/
126 #define PCM_NUM_CHUNKS 256 /* Power of 2 */
127 #define PCM_CHUNK_SIZE 8192 /* Power of 2 */
128 #define PCM_CHUNK_MASK (PCM_NUM_CHUNKS*PCM_CHUNK_SIZE - 1)
130 #define GET_PCM_CHUNK(offset) ((long *)(pcm_buffer + (offset)))
131 #define GET_ENC_CHUNK(index) ENC_CHUNK_HDR(enc_buffer + enc_chunk_size*(index))
132 #define INC_ENC_INDEX(index) \
133 { if (++index >= enc_num_chunks) index = 0; }
134 #define DEC_ENC_INDEX(index) \
135 { if (--index < 0) index = enc_num_chunks - 1; }
137 static size_t rec_buffer_size
; /* size of available buffer */
138 static unsigned char *pcm_buffer
; /* circular recording buffer */
139 static unsigned char *enc_buffer
; /* circular encoding buffer */
141 static unsigned long *wrap_id_p
; /* magic at wrap position - a debugging
142 aid to check if the encoder data
143 spilled out of its chunk */
145 static volatile int dma_wr_pos
; /* current DMA write pos */
146 static int pcm_rd_pos
; /* current PCM read pos */
147 static int pcm_enc_pos
; /* position encoder is processing */
148 static volatile bool dma_lock
; /* lock DMA write position */
149 static int enc_wr_index
; /* encoder chunk write index */
150 static int enc_rd_index
; /* encoder chunk read index */
151 static int enc_num_chunks
; /* number of chunks in ringbuffer */
152 static size_t enc_chunk_size
; /* maximum encoder chunk size */
153 static unsigned long enc_sample_rate
; /* sample rate used by encoder */
154 static bool pcmrec_context
= false; /* called by pcmrec thread? */
155 static bool pcm_buffer_empty
; /* all pcm chunks processed? */
157 /** file flushing **/
158 static int low_watermark
; /* Low watermark to stop flush */
159 static int high_watermark
; /* max chunk limit for data flush */
160 static unsigned long spinup_time
= 35*HZ
/10; /* Fudged spinup time */
161 static int last_ata_spinup_time
= -1;/* previous spin time used */
162 #ifdef HAVE_PRIORITY_SCHEDULING
163 static int flood_watermark
; /* boost thread priority when here */
166 /* Constants that control watermarks */
167 #define LOW_SECONDS 1 /* low watermark time till empty */
168 #define MINI_CHUNKS 10 /* chunk count for mini flush */
169 #ifdef HAVE_PRIORITY_SCHEDULING
170 #define PRIO_SECONDS 10 /* max flush time before priority boost */
173 #define PANIC_SECONDS 5 /* flood watermark time until full */
174 #define FLUSH_SECONDS 7 /* flush watermark time until full */
176 #define PANIC_SECONDS 8
177 #define FLUSH_SECONDS 10
180 /** encoder events **/
181 static void (*enc_events_callback
)(enum enc_events event
, void *data
);
183 /** Path queue for files to write **/
184 #define FNQ_MIN_NUM_PATHS 16 /* minimum number of paths to hold */
185 #define FNQ_MAX_NUM_PATHS 64 /* maximum number of paths to hold */
186 static unsigned char *fn_queue
; /* pointer to first filename */
187 static ssize_t fnq_size
; /* capacity of queue in bytes */
188 static int fnq_rd_pos
; /* current read position */
189 static int fnq_wr_pos
; /* current write position */
190 #define FNQ_NEXT(pos) \
191 ({ int p = (pos) + MAX_PATH; \
195 #define FNQ_PREV(pos) \
196 ({ int p = (pos) - MAX_PATH; \
198 p = fnq_size - MAX_PATH; \
203 PCMREC_FLUSH_INTERRUPTABLE
= 0x8000000, /* Flush can be interrupted by
204 incoming messages - combine
205 with other constants */
206 PCMREC_FLUSH_ALL
= 0x7ffffff, /* Flush all files */
207 PCMREC_FLUSH_MINI
= 0x7fffffe, /* Flush a small number of
209 PCMREC_FLUSH_IF_HIGH
= 0x0000000, /* Flush if high watermark
213 /***************************************************************************/
215 static struct event_queue pcmrec_queue SHAREDBSS_ATTR
;
216 static struct queue_sender_list pcmrec_queue_send SHAREDBSS_ATTR
;
217 static long pcmrec_stack
[3*DEFAULT_STACK_SIZE
/sizeof(long)];
218 static const char pcmrec_thread_name
[] = "pcmrec";
219 static struct thread_entry
*pcmrec_thread_p
;
221 static void pcmrec_thread(void);
226 PCMREC_INIT
, /* enable recording */
227 PCMREC_CLOSE
, /* close recording */
228 PCMREC_OPTIONS
, /* set recording options */
229 PCMREC_RECORD
, /* record a new file */
230 PCMREC_STOP
, /* stop the current recording */
231 PCMREC_PAUSE
, /* pause the current recording */
232 PCMREC_RESUME
, /* resume the current recording */
234 PCMREC_FLUSH_NUM
, /* flush a number of files out */
238 /*******************************************************************/
239 /* Functions that are not executing in the pcmrec_thread first */
240 /*******************************************************************/
242 /* Callback for when more data is ready - called in interrupt context */
243 static int pcm_rec_have_more(int status
)
247 /* some error condition */
248 if (status
== DMA_REC_ERROR_DMA
)
250 /* Flush recorded data to disk and stop recording */
251 queue_post(&pcmrec_queue
, PCMREC_STOP
, 0);
254 /* else try again next transmission */
258 /* advance write position */
259 int next_pos
= (dma_wr_pos
+ PCM_CHUNK_SIZE
) & PCM_CHUNK_MASK
;
261 /* set pcm ovf if processing start position is inside current
263 if ((unsigned)(pcm_enc_pos
- next_pos
) < PCM_CHUNK_SIZE
)
264 warnings
|= PCMREC_W_PCM_BUFFER_OVF
;
266 dma_wr_pos
= next_pos
;
269 pcm_record_more(GET_PCM_CHUNK(dma_wr_pos
), PCM_CHUNK_SIZE
);
271 } /* pcm_rec_have_more */
273 static void reset_hardware(void)
275 /* reset pcm to defaults (playback only) */
276 pcm_set_frequency(HW_SAMPR_DEFAULT
);
277 audio_set_output_source(AUDIO_SRC_PLAYBACK
);
278 pcm_apply_settings();
281 /** pcm_rec_* group **/
284 * Clear all errors and warnings
286 void pcm_rec_error_clear(void)
288 errors
= warnings
= 0;
289 } /* pcm_rec_error_clear */
292 * Check mode, errors and warnings
294 unsigned long pcm_rec_status(void)
296 unsigned long ret
= 0;
299 ret
|= AUDIO_STATUS_RECORD
;
300 else if (pre_record_ticks
)
301 ret
|= AUDIO_STATUS_PRERECORD
;
304 ret
|= AUDIO_STATUS_PAUSE
;
307 ret
|= AUDIO_STATUS_ERROR
;
310 ret
|= AUDIO_STATUS_WARNING
;
313 } /* pcm_rec_status */
316 * Return warnings that have occured since recording started
318 unsigned long pcm_rec_get_warnings(void)
324 int pcm_rec_current_bitrate(void)
326 if (accum_pcm_samples
== 0)
329 return (int)(8*accum_rec_bytes
*enc_sample_rate
/ (1000*accum_pcm_samples
));
330 } /* pcm_rec_current_bitrate */
334 int pcm_rec_encoder_afmt(void)
336 return enc_config
.afmt
;
337 } /* pcm_rec_encoder_afmt */
341 int pcm_rec_rec_format(void)
343 return afmt_rec_format
[enc_config
.afmt
];
344 } /* pcm_rec_rec_format */
348 unsigned long pcm_rec_sample_rate(void)
350 /* Which is better ?? */
352 return enc_sample_rate
;
355 } /* audio_get_sample_rate */
359 * Creates pcmrec_thread
361 void pcm_rec_init(void)
363 queue_init(&pcmrec_queue
, true);
365 create_thread(pcmrec_thread
, pcmrec_stack
, sizeof(pcmrec_stack
),
366 0, pcmrec_thread_name
IF_PRIO(, PRIORITY_RECORDING
)
368 queue_enable_queue_send(&pcmrec_queue
, &pcmrec_queue_send
,
372 /** audio_* group **/
375 * Initializes recording - call before calling any other recording function
377 void audio_init_recording(unsigned int buffer_offset
)
379 logf("audio_init_recording");
380 queue_send(&pcmrec_queue
, PCMREC_INIT
, 0);
381 logf("audio_init_recording done");
383 } /* audio_init_recording */
386 * Closes recording - call audio_stop_recording first
388 void audio_close_recording(void)
390 logf("audio_close_recording");
391 queue_send(&pcmrec_queue
, PCMREC_CLOSE
, 0);
392 logf("audio_close_recording done");
393 } /* audio_close_recording */
396 * Sets recording parameters
398 void audio_set_recording_options(struct audio_recording_options
*options
)
400 logf("audio_set_recording_options");
401 queue_send(&pcmrec_queue
, PCMREC_OPTIONS
, (intptr_t)options
);
402 logf("audio_set_recording_options done");
403 } /* audio_set_recording_options */
406 * Start recording if not recording or else split
408 void audio_record(const char *filename
)
410 logf("audio_record: %s", filename
);
412 queue_send(&pcmrec_queue
, PCMREC_RECORD
, (intptr_t)filename
);
413 logf("audio_record_done");
417 * audio_record wrapper for API compatibility with HW codec
419 void audio_new_file(const char *filename
)
421 audio_record(filename
);
422 } /* audio_new_file */
425 * Stop current recording if recording
427 void audio_stop_recording(void)
429 logf("audio_stop_recording");
431 queue_post(&pcmrec_queue
, PCMREC_STOP
, 0);
432 logf("audio_stop_recording done");
433 } /* audio_stop_recording */
436 * Pause current recording
438 void audio_pause_recording(void)
440 logf("audio_pause_recording");
442 queue_post(&pcmrec_queue
, PCMREC_PAUSE
, 0);
443 logf("audio_pause_recording done");
444 } /* audio_pause_recording */
447 * Resume current recording if paused
449 void audio_resume_recording(void)
451 logf("audio_resume_recording");
452 queue_post(&pcmrec_queue
, PCMREC_RESUME
, 0);
453 logf("audio_resume_recording done");
454 } /* audio_resume_recording */
457 * Note that microphone is mono, only left value is used
458 * See audiohw_set_recvol() for exact ranges.
460 * @param type AUDIO_GAIN_MIC, AUDIO_GAIN_LINEIN
463 void audio_set_recording_gain(int left
, int right
, int type
)
465 //logf("rcmrec: t=%d l=%d r=%d", type, left, right);
466 audiohw_set_recvol(left
, right
, type
);
467 } /* audio_set_recording_gain */
469 /** Information about current state **/
472 * Return current recorded time in ticks (playback eqivalent time)
474 unsigned long audio_recorded_time(void)
476 if (!is_recording
|| enc_sample_rate
== 0)
479 /* return actual recorded time a la encoded data even if encoder rate
480 doesn't match the pcm rate */
481 return (long)(HZ
*(unsigned long long)num_rec_samples
/ enc_sample_rate
);
482 } /* audio_recorded_time */
485 * Return number of bytes encoded to output
487 unsigned long audio_num_recorded_bytes(void)
492 return num_rec_bytes
;
493 } /* audio_num_recorded_bytes */
495 /***************************************************************************/
497 /* Functions that execute in the context of pcmrec_thread */
499 /***************************************************************************/
501 /** Filename Queue **/
503 /* returns true if the queue is empty */
504 static inline bool pcmrec_fnq_is_empty(void)
506 return fnq_rd_pos
== fnq_wr_pos
;
507 } /* pcmrec_fnq_is_empty */
509 /* empties the filename queue */
510 static inline void pcmrec_fnq_set_empty(void)
512 fnq_rd_pos
= fnq_wr_pos
;
513 } /* pcmrec_fnq_set_empty */
515 /* returns true if the queue is full */
516 static bool pcmrec_fnq_is_full(void)
518 ssize_t size
= fnq_wr_pos
- fnq_rd_pos
;
522 return size
>= fnq_size
- MAX_PATH
;
523 } /* pcmrec_fnq_is_full */
525 /* queue another filename - will overwrite oldest one if full */
526 static bool pcmrec_fnq_add_filename(const char *filename
)
528 strncpy(fn_queue
+ fnq_wr_pos
, filename
, MAX_PATH
);
529 fnq_wr_pos
= FNQ_NEXT(fnq_wr_pos
);
531 if (fnq_rd_pos
!= fnq_wr_pos
)
535 fnq_rd_pos
= FNQ_NEXT(fnq_rd_pos
);
537 } /* pcmrec_fnq_add_filename */
539 /* replace the last filename added */
540 static bool pcmrec_fnq_replace_tail(const char *filename
)
544 if (pcmrec_fnq_is_empty())
547 pos
= FNQ_PREV(fnq_wr_pos
);
549 strncpy(fn_queue
+ pos
, filename
, MAX_PATH
);
552 } /* pcmrec_fnq_replace_tail */
554 /* pulls the next filename from the queue */
555 static bool pcmrec_fnq_get_filename(char *filename
)
557 if (pcmrec_fnq_is_empty())
561 strncpy(filename
, fn_queue
+ fnq_rd_pos
, MAX_PATH
);
563 fnq_rd_pos
= FNQ_NEXT(fnq_rd_pos
);
565 } /* pcmrec_fnq_get_filename */
567 /* close the file number pointed to by fd_p */
568 static void pcmrec_close_file(int *fd_p
)
571 return; /* preserve error */
573 if (close(*fd_p
) != 0)
574 errors
|= PCMREC_E_IO
;
577 } /* pcmrec_close_file */
579 /** Data Flushing **/
582 * called after callback to update sizes if codec changed the amount of data
585 static inline void pcmrec_update_sizes_inl(size_t prev_enc_size
,
586 unsigned long prev_num_pcm
)
588 if (rec_fdata
.new_enc_size
!= prev_enc_size
)
590 ssize_t size_diff
= rec_fdata
.new_enc_size
- prev_enc_size
;
591 num_rec_bytes
+= size_diff
;
593 accum_rec_bytes
+= size_diff
;
597 if (rec_fdata
.new_num_pcm
!= prev_num_pcm
)
599 unsigned long pcm_diff
= rec_fdata
.new_num_pcm
- prev_num_pcm
;
600 num_rec_samples
+= pcm_diff
;
602 accum_pcm_samples
+= pcm_diff
;
605 } /* pcmrec_update_sizes_inl */
607 /* don't need to inline every instance */
608 static void pcmrec_update_sizes(size_t prev_enc_size
,
609 unsigned long prev_num_pcm
)
611 pcmrec_update_sizes_inl(prev_enc_size
, prev_num_pcm
);
612 } /* pcmrec_update_sizes */
614 static void pcmrec_start_file(void)
616 size_t enc_size
= rec_fdata
.new_enc_size
;
617 unsigned long num_pcm
= rec_fdata
.new_num_pcm
;
618 int curr_rec_file
= rec_fdata
.rec_file
;
619 char filename
[MAX_PATH
];
621 /* must always pull the filename that matches with this queue */
622 if (!pcmrec_fnq_get_filename(filename
))
624 logf("start file: fnq empty");
626 errors
|= PCMREC_E_FNQ_DESYNC
;
628 else if (errors
!= 0)
630 logf("start file: error already");
632 else if (curr_rec_file
>= 0)
634 /* Any previous file should have been closed */
635 logf("start file: file already open");
636 errors
|= PCMREC_E_FNQ_DESYNC
;
640 rec_fdata
.chunk
->flags
|= CHUNKF_ERROR
;
642 /* encoder can set error flag here and should increase
643 enc_new_size and pcm_new_size to reflect additional
644 data written if any */
645 rec_fdata
.filename
= filename
;
646 enc_events_callback(ENC_START_FILE
, &rec_fdata
);
648 if (errors
== 0 && (rec_fdata
.chunk
->flags
& CHUNKF_ERROR
))
650 logf("start file: enc error");
651 errors
|= PCMREC_E_ENCODER
;
656 pcmrec_close_file(&curr_rec_file
);
657 /* Write no more to this file */
658 rec_fdata
.chunk
->flags
|= CHUNKF_END_FILE
;
662 pcmrec_update_sizes(enc_size
, num_pcm
);
665 rec_fdata
.chunk
->flags
&= ~CHUNKF_START_FILE
;
666 } /* pcmrec_start_file */
668 static inline void pcmrec_write_chunk(void)
670 size_t enc_size
= rec_fdata
.new_enc_size
;
671 unsigned long num_pcm
= rec_fdata
.new_num_pcm
;
674 rec_fdata
.chunk
->flags
|= CHUNKF_ERROR
;
676 enc_events_callback(ENC_WRITE_CHUNK
, &rec_fdata
);
678 if ((long)rec_fdata
.chunk
->flags
>= 0)
680 pcmrec_update_sizes_inl(enc_size
, num_pcm
);
682 else if (errors
== 0)
684 logf("wr chk enc error %lu %lu",
685 rec_fdata
.chunk
->enc_size
, rec_fdata
.chunk
->num_pcm
);
686 errors
|= PCMREC_E_ENCODER
;
688 } /* pcmrec_write_chunk */
690 static void pcmrec_end_file(void)
692 /* all data in output buffer for current file will have been
693 written and encoder can now do any nescessary steps to
694 finalize the written file */
695 size_t enc_size
= rec_fdata
.new_enc_size
;
696 unsigned long num_pcm
= rec_fdata
.new_num_pcm
;
698 enc_events_callback(ENC_END_FILE
, &rec_fdata
);
702 if (rec_fdata
.chunk
->flags
& CHUNKF_ERROR
)
704 logf("end file: enc error");
705 errors
|= PCMREC_E_ENCODER
;
709 pcmrec_update_sizes(enc_size
, num_pcm
);
713 /* Force file close if error */
715 pcmrec_close_file(&rec_fdata
.rec_file
);
717 rec_fdata
.chunk
->flags
&= ~CHUNKF_END_FILE
;
718 } /* pcmrec_end_file */
721 * Update buffer watermarks with spinup time compensation
723 * All this assumes reasonable data rates, chunk sizes and sufficient
724 * memory for the most part. Some dumb checks are included but perhaps
725 * are pointless since this all will break down at extreme limits that
726 * are currently not applicable to any supported device.
728 static void pcmrec_refresh_watermarks(void)
730 logf("ata spinup: %d", ata_spinup_time
);
732 /* set the low mark for when flushing stops if automatic */
733 low_watermark
= (LOW_SECONDS
*4*sample_rate
+ (enc_chunk_size
-1))
735 logf("low wmk: %d", low_watermark
);
737 #ifdef HAVE_PRIORITY_SCHEDULING
738 /* panic boost thread priority if 2 seconds of ground is lost -
739 this allows encoder to boost with just under a second of
740 pcm data (if not yet full enough to boost itself)
741 and not falsely trip the alarm. */
742 flood_watermark
= enc_num_chunks
-
743 (PANIC_SECONDS
*4*sample_rate
+ (enc_chunk_size
-1))
746 if (flood_watermark
< low_watermark
)
748 logf("warning: panic < low");
749 flood_watermark
= low_watermark
;
752 logf("flood at: %d", flood_watermark
);
754 spinup_time
= last_ata_spinup_time
= ata_spinup_time
;
756 /* write at 8s + st remaining in enc_buffer - range 12s to
757 20s total - default to 3.5s spinup. */
758 if (spinup_time
== 0)
759 spinup_time
= 35*HZ
/10; /* default - cozy */
760 else if (spinup_time
< 2*HZ
)
761 spinup_time
= 2*HZ
; /* ludicrous - ramdisk? */
762 else if (spinup_time
> 10*HZ
)
763 spinup_time
= 10*HZ
; /* do you have a functioning HD? */
765 /* try to start writing with 10s remaining after disk spinup */
766 high_watermark
= enc_num_chunks
-
767 ((FLUSH_SECONDS
*HZ
+ spinup_time
)*4*sample_rate
+
768 (enc_chunk_size
-1)*HZ
) / (enc_chunk_size
*HZ
);
770 if (high_watermark
< low_watermark
)
772 high_watermark
= low_watermark
;
774 logf("warning: low 'write at'");
777 logf("write at: %d", high_watermark
);
778 } /* pcmrec_refresh_watermarks */
783 * This function is called when queue_get_w_tmo times out.
785 * Set flush_num to the number of files to flush to disk or to
786 * a PCMREC_FLUSH_* constant.
788 static void pcmrec_flush(unsigned flush_num
)
790 #ifdef HAVE_PRIORITY_SCHEDULING
791 static unsigned long last_flush_tick
; /* tick when function returned */
792 unsigned long start_tick
; /* When flush started */
793 unsigned long prio_tick
; /* Timeout for auto boost */
794 int prio_pcmrec
; /* Current thread priority for pcmrec */
795 int prio_codec
; /* Current thread priority for codec */
797 int num_ready
; /* Number of chunks ready at start */
798 unsigned remaining
; /* Number of file starts remaining */
799 unsigned chunks_flushed
; /* Chunks flushed (for mini flush only) */
800 bool interruptable
; /* Flush can be interupted */
802 num_ready
= enc_wr_index
- enc_rd_index
;
804 num_ready
+= enc_num_chunks
;
806 /* save interruptable flag and remove it to get the actual count */
807 interruptable
= (flush_num
& PCMREC_FLUSH_INTERRUPTABLE
) != 0;
808 flush_num
&= ~PCMREC_FLUSH_INTERRUPTABLE
;
815 if (ata_spinup_time
!= last_ata_spinup_time
)
816 pcmrec_refresh_watermarks();
818 /* enough available? no? then leave */
819 if (num_ready
< high_watermark
)
821 } /* endif (flush_num == 0) */
823 #ifdef HAVE_PRIORITY_SCHEDULING
824 start_tick
= current_tick
;
825 prio_tick
= start_tick
+ PRIO_SECONDS
*HZ
+ spinup_time
;
827 if (flush_num
== 0 && TIME_BEFORE(current_tick
, last_flush_tick
+ HZ
/2))
829 /* if we're getting called too much and this isn't forced,
830 boost stat by expiring timeout in advance */
831 logf("too frequent flush");
832 prio_tick
= current_tick
- 1;
836 prio_codec
= -1; /* GCC is too stoopid to figure out it doesn't
840 logf("writing:%d(%d):%s%s", num_ready
, flush_num
,
841 interruptable
? "i" : "",
842 flush_num
== PCMREC_FLUSH_MINI
? "m" : "");
846 remaining
= flush_num
;
849 while (num_ready
> 0)
851 /* check current number of encoder chunks */
852 int num
= enc_wr_index
- enc_rd_index
;
854 num
+= enc_num_chunks
;
856 if (num
<= low_watermark
&&
857 (flush_num
== PCMREC_FLUSH_IF_HIGH
|| num
<= 0))
859 logf("low data: %d", num
);
860 break; /* data remaining is below threshold */
863 if (interruptable
&& flush_interrupts
> 0)
865 logf("int at: %d", num
);
866 break; /* interrupted */
869 #ifdef HAVE_PRIORITY_SCHEDULING
870 if (prio_pcmrec
== -1 && (num
>= flood_watermark
||
871 TIME_AFTER(current_tick
, prio_tick
)))
873 /* losing ground or holding without progress - boost
874 priority until finished */
875 logf("pcmrec: boost (%s)",
876 num
>= flood_watermark
? "num" : "time");
877 prio_pcmrec
= thread_set_priority(NULL
,
878 thread_get_priority(NULL
) - 4);
879 prio_codec
= thread_set_priority(codec_thread_p
,
880 thread_get_priority(codec_thread_p
) - 4);
884 rec_fdata
.chunk
= GET_ENC_CHUNK(enc_rd_index
);
885 rec_fdata
.new_enc_size
= rec_fdata
.chunk
->enc_size
;
886 rec_fdata
.new_num_pcm
= rec_fdata
.chunk
->num_pcm
;
888 if (rec_fdata
.chunk
->flags
& CHUNKF_START_FILE
)
891 if (--remaining
== 0)
892 num_ready
= 0; /* stop on next loop - must write this
893 chunk if it has data */
896 pcmrec_write_chunk();
898 if (rec_fdata
.chunk
->flags
& CHUNKF_END_FILE
)
901 INC_ENC_INDEX(enc_rd_index
);
909 if (flush_num
== PCMREC_FLUSH_MINI
&&
910 ++chunks_flushed
>= MINI_CHUNKS
)
912 logf("mini flush break");
915 /* no yielding; the file apis called in the codecs do that
920 if (rec_fdata
.rec_file
>= 0 && fsync(rec_fdata
.rec_file
) != 0)
921 errors
|= PCMREC_E_IO
;
925 #ifdef HAVE_PRIORITY_SCHEDULING
926 if (prio_pcmrec
!= -1)
928 /* return to original priorities */
929 logf("pcmrec: unboost priority");
930 thread_set_priority(NULL
, prio_pcmrec
);
931 thread_set_priority(codec_thread_p
, prio_codec
);
934 last_flush_tick
= current_tick
; /* save tick when we left */
941 * Marks a new stream in the buffer and gives the encoder a chance for special
942 * handling of transition from one to the next. The encoder may change the
943 * chunk that ends the old stream by requesting more chunks and similiarly for
944 * the new but must always advance the position though the interface. It can
945 * later reject any data it cares to when writing the file but should mark the
946 * chunk so it can recognize this. ENC_WRITE_CHUNK event must be able to accept
947 * a NULL data pointer without error as well.
949 static int pcmrec_get_chunk_index(struct enc_chunk_hdr
*chunk
)
951 return ((char *)chunk
- (char *)enc_buffer
) / enc_chunk_size
;
952 } /* pcmrec_get_chunk_index */
954 static struct enc_chunk_hdr
* pcmrec_get_prev_chunk(int index
)
956 DEC_ENC_INDEX(index
);
957 return GET_ENC_CHUNK(index
);
958 } /* pcmrec_get_prev_chunk */
960 static void pcmrec_new_stream(const char *filename
, /* next file name */
961 unsigned long flags
, /* CHUNKF_* flags */
962 int pre_index
) /* index for prerecorded data */
964 logf("pcmrec_new_stream");
965 char path
[MAX_PATH
]; /* place to copy filename so sender can be released */
967 struct enc_buffer_event_data data
;
968 bool (*fnq_add_fn
)(const char *) = NULL
; /* function to use to add
970 struct enc_chunk_hdr
*start
= NULL
; /* pointer to starting chunk of
972 bool did_flush
= false; /* did a flush occurr? */
975 strncpy(path
, filename
, MAX_PATH
);
976 queue_reply(&pcmrec_queue
, 0); /* We have all we need */
978 data
.pre_chunk
= NULL
;
979 data
.chunk
= GET_ENC_CHUNK(enc_wr_index
);
982 if (flags
& CHUNKF_END_FILE
)
984 data
.chunk
->flags
&= CHUNKF_START_FILE
| CHUNKF_END_FILE
;
986 if (data
.chunk
->flags
& CHUNKF_START_FILE
)
988 /* cannot start and end on same unprocessed chunk */
989 logf("file end on start");
990 flags
&= ~CHUNKF_END_FILE
;
992 else if (enc_rd_index
== enc_wr_index
)
994 /* all data flushed but file not ended - chunk will be left
996 logf("end on dead end");
997 data
.chunk
->flags
= 0;
998 data
.chunk
->enc_size
= 0;
999 data
.chunk
->num_pcm
= 0;
1000 data
.chunk
->enc_data
= NULL
;
1001 INC_ENC_INDEX(enc_wr_index
);
1002 data
.chunk
= GET_ENC_CHUNK(enc_wr_index
);
1006 struct enc_chunk_hdr
*last
= pcmrec_get_prev_chunk(enc_wr_index
);
1008 if (last
->flags
& CHUNKF_END_FILE
)
1010 /* end already processed and marked - can't end twice */
1011 logf("file end again");
1012 flags
&= ~CHUNKF_END_FILE
;
1018 if (flags
& CHUNKF_START_FILE
)
1020 bool pre
= flags
& CHUNKF_PRERECORD
;
1024 logf("stream prerecord start");
1025 start
= data
.pre_chunk
= GET_ENC_CHUNK(pre_index
);
1026 start
->flags
&= CHUNKF_START_FILE
| CHUNKF_PRERECORD
;
1030 logf("stream normal start");
1032 start
->flags
&= CHUNKF_START_FILE
;
1035 /* if encoder hasn't yet processed the last start - abort the start
1036 of the previous file queued or else it will be empty and invalid */
1037 if (start
->flags
& CHUNKF_START_FILE
)
1039 logf("replacing fnq tail: %s", filename
);
1040 fnq_add_fn
= pcmrec_fnq_replace_tail
;
1044 logf("adding filename: %s", filename
);
1045 fnq_add_fn
= pcmrec_fnq_add_filename
;
1050 pcmrec_context
= true; /* switch encoder context */
1051 enc_events_callback(ENC_REC_NEW_STREAM
, &data
);
1052 pcmrec_context
= false; /* switch back */
1054 if (flags
& CHUNKF_END_FILE
)
1056 int i
= pcmrec_get_chunk_index(data
.chunk
);
1057 pcmrec_get_prev_chunk(i
)->flags
|= CHUNKF_END_FILE
;
1062 if (!(flags
& CHUNKF_PRERECORD
))
1064 /* get stats on data added to start - sort of a prerecord
1066 int i
= pcmrec_get_chunk_index(data
.chunk
);
1067 struct enc_chunk_hdr
*chunk
= data
.chunk
;
1069 logf("start data: %d %d", i
, enc_wr_index
);
1072 num_rec_samples
= 0;
1074 while (i
!= enc_wr_index
)
1076 num_rec_bytes
+= chunk
->enc_size
;
1077 num_rec_samples
+= chunk
->num_pcm
;
1079 chunk
= GET_ENC_CHUNK(i
);
1082 start
->flags
&= ~CHUNKF_START_FILE
;
1086 start
->flags
|= CHUNKF_START_FILE
;
1088 /* flush all pending files out if full and adding */
1089 if (fnq_add_fn
== pcmrec_fnq_add_filename
&& pcmrec_fnq_is_full())
1092 pcmrec_flush(PCMREC_FLUSH_ALL
);
1099 /* Make sure to complete any interrupted high watermark */
1101 pcmrec_flush(PCMREC_FLUSH_IF_HIGH
);
1102 } /* pcmrec_new_stream */
1104 /** event handlers for pcmrec thread */
1107 static void pcmrec_init(void)
1109 unsigned char *buffer
;
1111 /* warings and errors */
1115 pcmrec_close_file(&rec_fdata
.rec_file
);
1116 rec_fdata
.rec_file
= -1;
1128 /* filename queue */
1134 num_rec_samples
= 0;
1136 accum_rec_bytes
= 0;
1137 accum_pcm_samples
= 0;
1140 pre_record_ticks
= 0;
1142 is_recording
= false;
1145 buffer
= audio_get_recording_buffer(&rec_buffer_size
);
1147 /* Line align pcm_buffer 2^4=16 bytes */
1148 pcm_buffer
= (unsigned char *)ALIGN_UP_P2((uintptr_t)buffer
, 4);
1149 enc_buffer
= pcm_buffer
+ ALIGN_UP_P2(PCM_NUM_CHUNKS
*PCM_CHUNK_SIZE
+
1150 PCM_MAX_FEED_SIZE
, 2);
1151 /* Adjust available buffer for possible align advancement */
1152 rec_buffer_size
-= pcm_buffer
- buffer
;
1154 pcm_init_recording();
1158 static void pcmrec_close(void)
1161 pre_record_ticks
= 0; /* Can't be prerecording any more */
1163 pcm_close_recording();
1165 audio_remove_encoder();
1166 } /* pcmrec_close */
1168 /* PCMREC_OPTIONS */
1169 static void pcmrec_set_recording_options(
1170 struct audio_recording_options
*options
)
1172 /* stop DMA transfer */
1174 pcm_stop_recording();
1176 rec_frequency
= options
->rec_frequency
;
1177 rec_source
= options
->rec_source
;
1178 num_channels
= options
->rec_channels
== 1 ? 1 : 2;
1179 pre_record_ticks
= options
->rec_prerecord_time
* HZ
;
1180 enc_config
= options
->enc_config
;
1181 enc_config
.afmt
= rec_format_afmt
[enc_config
.rec_format
];
1183 #ifdef HAVE_SPDIF_IN
1184 if (rec_source
== AUDIO_SRC_SPDIF
)
1186 /* must measure SPDIF sample rate before configuring codecs */
1187 unsigned long sr
= spdif_measure_frequency();
1188 /* round to master list for SPDIF rate */
1189 int index
= round_value_to_list32(sr
, audio_master_sampr_list
,
1190 SAMPR_NUM_FREQ
, false);
1191 sample_rate
= audio_master_sampr_list
[index
];
1192 /* round to HW playback rates for monitoring */
1193 index
= round_value_to_list32(sr
, hw_freq_sampr
,
1194 HW_NUM_FREQ
, false);
1195 pcm_set_frequency(hw_freq_sampr
[index
]);
1196 /* encoders with a limited number of rates do their own rounding */
1201 /* set sample rate from frequency selection */
1202 sample_rate
= rec_freq_sampr
[rec_frequency
];
1203 pcm_set_frequency(sample_rate
);
1206 /* set monitoring */
1207 audio_set_output_source(rec_source
);
1209 /* apply hardware setting to start monitoring now */
1210 pcm_apply_settings();
1212 queue_reply(&pcmrec_queue
, 0); /* Release sender */
1214 if (audio_load_encoder(enc_config
.afmt
))
1216 /* start DMA transfer */
1217 dma_lock
= pre_record_ticks
== 0;
1218 pcm_record_data(pcm_rec_have_more
, GET_PCM_CHUNK(dma_wr_pos
),
1223 logf("set rec opt: enc load failed");
1224 errors
|= PCMREC_E_LOAD_ENCODER
;
1226 } /* pcmrec_set_recording_options */
1228 /* PCMREC_RECORD - start recording (not gapless)
1229 or split stream (gapless) */
1230 static void pcmrec_record(const char *filename
)
1232 unsigned long pre_sample_ticks
;
1234 unsigned long flags
;
1237 logf("pcmrec_record: %s", filename
);
1241 num_rec_samples
= 0;
1246 accum_rec_bytes
= 0;
1247 accum_pcm_samples
= 0;
1249 warnings
= 0; /* reset warnings */
1251 rd_start
= enc_wr_index
;
1252 pre_sample_ticks
= 0;
1254 pcmrec_refresh_watermarks();
1256 if (pre_record_ticks
)
1259 /* calculate number of available chunks */
1260 unsigned long avail_pre_chunks
= (enc_wr_index
- enc_rd_index
+
1261 enc_num_chunks
) % enc_num_chunks
;
1262 /* overflow at 974 seconds of prerecording at 44.1kHz */
1263 unsigned long pre_record_sample_ticks
=
1264 enc_sample_rate
*pre_record_ticks
;
1265 int pre_chunks
= 0; /* Counter to limit prerecorded time to
1266 prevent flood state at outset */
1268 logf("pre-st: %ld", pre_record_sample_ticks
);
1270 /* Get exact measure of recorded data as number of samples aren't
1271 nescessarily going to be the max for each chunk */
1272 for (; avail_pre_chunks
-- > 0;)
1274 struct enc_chunk_hdr
*chunk
;
1275 unsigned long chunk_sample_ticks
;
1279 chunk
= GET_ENC_CHUNK(i
);
1281 /* must have data to be counted */
1282 if (chunk
->enc_data
== NULL
)
1285 chunk_sample_ticks
= chunk
->num_pcm
*HZ
;
1288 pre_sample_ticks
+= chunk_sample_ticks
;
1289 num_rec_bytes
+= chunk
->enc_size
;
1290 num_rec_samples
+= chunk
->num_pcm
;
1293 /* stop here if enough already */
1294 if (pre_chunks
>= high_watermark
||
1295 pre_sample_ticks
>= pre_record_sample_ticks
)
1297 logf("pre-chks: %d", pre_chunks
);
1303 accum_rec_bytes
= num_rec_bytes
;
1304 accum_pcm_samples
= num_rec_samples
;
1308 enc_rd_index
= rd_start
;
1310 /* filename queue should be empty */
1311 if (!pcmrec_fnq_is_empty())
1313 logf("fnq: not empty!");
1314 pcmrec_fnq_set_empty();
1317 flags
= CHUNKF_START_FILE
;
1318 if (pre_sample_ticks
> 0)
1319 flags
|= CHUNKF_PRERECORD
;
1321 pre_index
= enc_rd_index
;
1325 is_recording
= true;
1329 /* already recording, just split the stream */
1330 logf("inserting split");
1331 flags
= CHUNKF_START_FILE
| CHUNKF_END_FILE
;
1335 pcmrec_new_stream(filename
, flags
, pre_index
);
1336 logf("pcmrec_record done");
1337 } /* pcmrec_record */
1340 static void pcmrec_stop(void)
1342 logf("pcmrec_stop");
1346 dma_lock
= true; /* lock dma write position */
1348 /* flush all available data first to avoid overflow while waiting
1349 for encoding to finish */
1350 pcmrec_flush(PCMREC_FLUSH_ALL
);
1352 /* wait for encoder to finish remaining data */
1353 while (errors
== 0 && !pcm_buffer_empty
)
1356 /* end stream at last data */
1357 pcmrec_new_stream(NULL
, CHUNKF_END_FILE
, 0);
1359 /* flush anything else encoder added */
1360 pcmrec_flush(PCMREC_FLUSH_ALL
);
1362 /* remove any pending file start not yet processed - should be at
1363 most one at enc_wr_index */
1364 pcmrec_fnq_get_filename(NULL
);
1365 /* encoder should abort any chunk it was in midst of processing */
1366 GET_ENC_CHUNK(enc_wr_index
)->flags
= CHUNKF_ABORT
;
1368 /* filename queue should be empty */
1369 if (!pcmrec_fnq_is_empty())
1371 logf("fnq: not empty!");
1372 pcmrec_fnq_set_empty();
1375 /* be absolutely sure the file is closed */
1377 pcmrec_close_file(&rec_fdata
.rec_file
);
1378 rec_fdata
.rec_file
= -1;
1380 is_recording
= false;
1382 dma_lock
= pre_record_ticks
== 0;
1386 logf("not recording");
1389 logf("pcmrec_stop done");
1393 static void pcmrec_pause(void)
1395 logf("pcmrec_pause");
1399 logf("not recording");
1403 logf("already paused");
1411 logf("pcmrec_pause done");
1412 } /* pcmrec_pause */
1415 static void pcmrec_resume(void)
1417 logf("pcmrec_resume");
1421 logf("not recording");
1423 else if (!is_paused
)
1430 is_recording
= true;
1434 logf("pcmrec_resume done");
1435 } /* pcmrec_resume */
1437 static void pcmrec_thread(void) __attribute__((noreturn
));
1438 static void pcmrec_thread(void)
1440 struct queue_event ev
;
1442 logf("thread pcmrec start");
1448 /* Poll periodically to flush data */
1449 queue_wait_w_tmo(&pcmrec_queue
, &ev
, HZ
/5);
1451 if (ev
.id
== SYS_TIMEOUT
)
1453 /* Messages that interrupt this will complete it */
1454 pcmrec_flush(PCMREC_FLUSH_IF_HIGH
|
1455 PCMREC_FLUSH_INTERRUPTABLE
);
1461 /* Not doing anything - sit and wait for commands */
1462 queue_wait(&pcmrec_queue
, &ev
);
1475 case PCMREC_OPTIONS
:
1476 pcmrec_set_recording_options(
1477 (struct audio_recording_options
*)ev
.data
);
1481 clear_flush_interrupt();
1482 pcmrec_record((const char *)ev
.data
);
1486 clear_flush_interrupt();
1491 clear_flush_interrupt();
1499 case PCMREC_FLUSH_NUM
:
1500 pcmrec_flush((unsigned)ev
.data
);
1503 case SYS_USB_CONNECTED
:
1507 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
1508 usb_wait_for_disconnect(&pcmrec_queue
);
1509 flush_interrupts
= 0;
1513 } /* pcmrec_thread */
1515 /****************************************************************************/
1517 /* following functions will be called by the encoder codec */
1518 /* in a free-threaded manner */
1520 /****************************************************************************/
1522 /* pass the encoder settings to the encoder */
1523 void enc_get_inputs(struct enc_inputs
*inputs
)
1525 inputs
->sample_rate
= sample_rate
;
1526 inputs
->num_channels
= num_channels
;
1527 inputs
->config
= &enc_config
;
1528 } /* enc_get_inputs */
1530 /* set the encoder dimensions (called by encoder codec at initialization and
1532 void enc_set_parameters(struct enc_parameters
*params
)
1534 size_t bufsize
, resbytes
;
1536 logf("enc_set_parameters");
1541 /* Encoder is terminating */
1542 memset(&enc_config
, 0, sizeof (enc_config
));
1543 enc_sample_rate
= 0;
1544 cancel_cpu_boost(); /* Make sure no boost remains */
1548 enc_sample_rate
= params
->enc_sample_rate
;
1549 logf("enc sampr:%lu", enc_sample_rate
);
1551 pcm_rd_pos
= dma_wr_pos
;
1552 pcm_enc_pos
= pcm_rd_pos
;
1554 enc_config
.afmt
= params
->afmt
;
1555 /* addition of the header is always implied - chunk size 4-byte aligned */
1557 ALIGN_UP_P2(ENC_CHUNK_HDR_SIZE
+ params
->chunk_size
, 2);
1558 enc_events_callback
= params
->events_callback
;
1560 logf("chunk size:%lu", enc_chunk_size
);
1562 /*** Configure the buffers ***/
1564 /* Layout of recording buffer:
1565 * [ax] = possible alignment x multiple
1566 * [sx] = possible size alignment of x multiple
1567 * |[a16]|[s4]:PCM Buffer+PCM Guard|[s4 each]:Encoder Chunks|->
1568 * |[[s4]:Reserved Bytes]|Filename Queue->|[space]|
1570 resbytes
= ALIGN_UP_P2(params
->reserve_bytes
, 2);
1571 logf("resbytes:%lu", resbytes
);
1573 bufsize
= rec_buffer_size
- (enc_buffer
- pcm_buffer
) -
1574 resbytes
- FNQ_MIN_NUM_PATHS
*MAX_PATH
1576 - sizeof (*wrap_id_p
)
1580 enc_num_chunks
= bufsize
/ enc_chunk_size
;
1581 logf("num chunks:%d", enc_num_chunks
);
1583 /* get real amount used by encoder chunks */
1584 bufsize
= enc_num_chunks
*enc_chunk_size
;
1585 logf("enc size:%lu", bufsize
);
1588 /* add magic at wraparound for spillover checks */
1589 wrap_id_p
= SKIPBYTES((unsigned long *)enc_buffer
, bufsize
);
1590 bufsize
+= sizeof (*wrap_id_p
);
1591 *wrap_id_p
= ENC_CHUNK_MAGIC
;
1594 /** set OUT parameters **/
1595 params
->enc_buffer
= enc_buffer
;
1596 params
->buf_chunk_size
= enc_chunk_size
;
1597 params
->num_chunks
= enc_num_chunks
;
1599 /* calculate reserve buffer start and return pointer to encoder */
1600 params
->reserve_buffer
= NULL
;
1603 params
->reserve_buffer
= enc_buffer
+ bufsize
;
1604 bufsize
+= resbytes
;
1607 /* place filename queue at end of buffer using up whatever remains */
1608 fnq_rd_pos
= 0; /* reset */
1609 fnq_wr_pos
= 0; /* reset */
1610 fn_queue
= enc_buffer
+ bufsize
;
1611 fnq_size
= pcm_buffer
+ rec_buffer_size
- fn_queue
;
1612 fnq_size
/= MAX_PATH
;
1613 if (fnq_size
> FNQ_MAX_NUM_PATHS
)
1614 fnq_size
= FNQ_MAX_NUM_PATHS
;
1615 fnq_size
*= MAX_PATH
;
1616 logf("fnq files:%ld", fnq_size
/ MAX_PATH
);
1619 logf("ab :%08lX", (uintptr_t)audiobuf
);
1620 logf("pcm:%08lX", (uintptr_t)pcm_buffer
);
1621 logf("enc:%08lX", (uintptr_t)enc_buffer
);
1622 logf("res:%08lX", (uintptr_t)params
->reserve_buffer
);
1623 logf("wip:%08lX", (uintptr_t)wrap_id_p
);
1624 logf("fnq:%08lX", (uintptr_t)fn_queue
);
1625 logf("end:%08lX", (uintptr_t)fn_queue
+ fnq_size
);
1626 logf("abe:%08lX", (uintptr_t)audiobufend
);
1629 /* init all chunk headers and reset indexes */
1631 for (enc_wr_index
= enc_num_chunks
; enc_wr_index
> 0; )
1633 struct enc_chunk_hdr
*chunk
= GET_ENC_CHUNK(--enc_wr_index
);
1635 chunk
->id
= ENC_CHUNK_MAGIC
;
1640 logf("enc_set_parameters done");
1641 } /* enc_set_parameters */
1643 /* return encoder chunk at current write position -
1644 NOTE: can be called by pcmrec thread when splitting streams */
1645 struct enc_chunk_hdr
* enc_get_chunk(void)
1647 struct enc_chunk_hdr
*chunk
= GET_ENC_CHUNK(enc_wr_index
);
1650 if (chunk
->id
!= ENC_CHUNK_MAGIC
|| *wrap_id_p
!= ENC_CHUNK_MAGIC
)
1652 errors
|= PCMREC_E_CHUNK_OVF
;
1653 logf("finish chk ovf: %d", enc_wr_index
);
1657 chunk
->flags
&= CHUNKF_START_FILE
;
1660 chunk
->flags
|= CHUNKF_PRERECORD
;
1663 } /* enc_get_chunk */
1665 /* releases the current chunk into the available chunks -
1666 NOTE: can be called by pcmrec thread when splitting streams */
1667 void enc_finish_chunk(void)
1669 struct enc_chunk_hdr
*chunk
= GET_ENC_CHUNK(enc_wr_index
);
1671 if ((long)chunk
->flags
< 0)
1673 /* encoder set error flag */
1674 errors
|= PCMREC_E_ENCODER
;
1675 logf("finish chk enc error");
1678 /* advance enc_wr_index to the next encoder chunk */
1679 INC_ENC_INDEX(enc_wr_index
);
1681 if (enc_rd_index
!= enc_wr_index
)
1683 num_rec_bytes
+= chunk
->enc_size
;
1684 num_rec_samples
+= chunk
->num_pcm
;
1686 accum_rec_bytes
+= chunk
->enc_size
;
1687 accum_pcm_samples
+= chunk
->num_pcm
;
1690 else if (is_recording
) /* buffer full */
1692 /* keep current position and put up warning flag */
1693 warnings
|= PCMREC_W_ENC_BUFFER_OVF
;
1694 logf("enc_buffer ovf");
1695 DEC_ENC_INDEX(enc_wr_index
);
1698 /* if stream splitting, keep this out of circulation and
1699 flush a small number, then readd - cannot risk losing
1702 pcmrec_flush(PCMREC_FLUSH_MINI
);
1703 INC_ENC_INDEX(enc_wr_index
);
1708 /* advance enc_rd_index for prerecording */
1709 INC_ENC_INDEX(enc_rd_index
);
1711 } /* enc_finish_chunk */
1713 /* passes a pointer to next chunk of unprocessed wav data */
1714 /* TODO: this really should give the actual size returned */
1715 unsigned char * enc_get_pcm_data(size_t size
)
1717 int wp
= dma_wr_pos
;
1718 size_t avail
= (wp
- pcm_rd_pos
) & PCM_CHUNK_MASK
;
1720 /* limit the requested pcm data size */
1721 if (size
> PCM_MAX_FEED_SIZE
)
1722 size
= PCM_MAX_FEED_SIZE
;
1726 unsigned char *ptr
= pcm_buffer
+ pcm_rd_pos
;
1727 int next_pos
= (pcm_rd_pos
+ size
) & PCM_CHUNK_MASK
;
1729 pcm_enc_pos
= pcm_rd_pos
;
1730 pcm_rd_pos
= next_pos
;
1732 /* ptr must point to continous data at wraparound position */
1733 if ((size_t)pcm_rd_pos
< size
)
1735 memcpy(pcm_buffer
+ PCM_NUM_CHUNKS
*PCM_CHUNK_SIZE
,
1736 pcm_buffer
, pcm_rd_pos
);
1739 if (avail
>= (sample_rate
<< 2))
1741 /* Filling up - boost codec */
1742 trigger_cpu_boost();
1745 pcm_buffer_empty
= false;
1749 /* not enough data available - encoder should idle */
1750 pcm_buffer_empty
= true;
1754 /* Sleep long enough to allow one frame on average */
1758 } /* enc_get_pcm_data */
1760 /* puts some pcm data back in the queue */
1761 size_t enc_unget_pcm_data(size_t size
)
1763 int wp
= dma_wr_pos
;
1764 size_t old_avail
= ((pcm_rd_pos
- wp
) & PCM_CHUNK_MASK
) -
1767 /* allow one interrupt to occur during this call and not have the
1768 new read position inside the DMA destination chunk */
1769 if ((ssize_t
)old_avail
> 0)
1771 /* limit size to amount of old data remaining */
1772 if (size
> old_avail
)
1775 pcm_enc_pos
= (pcm_rd_pos
- size
) & PCM_CHUNK_MASK
;
1776 pcm_rd_pos
= pcm_enc_pos
;
1782 } /* enc_unget_pcm_data */