diff options
Diffstat (limited to 'apps/codecs/libtremor/ivorbiscodec.h')
-rw-r--r-- | apps/codecs/libtremor/ivorbiscodec.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/codecs/libtremor/ivorbiscodec.h b/apps/codecs/libtremor/ivorbiscodec.h index f59d79194e..c2836ad8a9 100644 --- a/apps/codecs/libtremor/ivorbiscodec.h +++ b/apps/codecs/libtremor/ivorbiscodec.h @@ -77,9 +77,8 @@ typedef struct vorbis_dsp_state{ void *backend_state; - ogg_int32_t *iram_pcm; /* IRAM PCM buffer */ - ogg_int32_t *iram_double_pcm; /* IRAM PCM 2nd buffer */ - int iram_pcm_storage; /* size of IRAM PCM buffer */ + ogg_int32_t *first_pcm; /* PCM buffer (for normal RAM or IRAM)*/ + ogg_int32_t *iram_double_pcm; /* PCM 2nd buffer for IRAM */ bool reset_pcmb; } vorbis_dsp_state; |