diff options
| author | hathach <[email protected]> | 2022-05-31 20:26:37 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-05-31 20:26:37 +0700 |
| commit | f2926670cc4e495e025b0838fed5b44d27e4cd43 (patch) | |
| tree | e6e81b9e0fddbb16cd6a1b91c63c2e3f151c5656 /src/class/audio/audio_device.h | |
| parent | dce2ad4ffb33fe884429e0c241b1957b3cd6c453 (diff) | |
comment out fifo count method for now
Diffstat (limited to 'src/class/audio/audio_device.h')
| -rw-r--r-- | src/class/audio/audio_device.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/class/audio/audio_device.h b/src/class/audio/audio_device.h index c44b4cc30..13f24fb62 100644 --- a/src/class/audio/audio_device.h +++ b/src/class/audio/audio_device.h @@ -498,8 +498,9 @@ enum { AUDIO_FEEDBACK_METHOD_FREQUENCY_FIXED, AUDIO_FEEDBACK_METHOD_FREQUENCY_FLOAT, AUDIO_FEEDBACK_METHOD_FREQUENCY_POWER_OF_2, - AUDIO_FEEDBACK_METHOD_FIFO_COUNT_FIXED, - AUDIO_FEEDBACK_METHOD_FIFO_COUNT_FLOAT + + // impelemnt later + // AUDIO_FEEDBACK_METHOD_FIFO_COUNT }; typedef struct { @@ -511,9 +512,11 @@ typedef struct { uint32_t mclk_freq; // Main clock frequency in Hz i.e. master clock to which sample clock is based on }frequency; +#if 0 // implement later struct { uint32_t threshold_bytes; // minimum number of bytes received to be considered as filled/ready }fifo_count; +#endif }; }audio_feedback_params_t; |
