summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/vox.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2017-11-06 20:06:08 -0500
committerMichael Sevakis <jethead71@rockbox.org>2017-11-06 20:06:08 -0500
commit826f99e18701988d7e7cdc3d7019a20e1d697403 (patch)
treee3d9bcdc138426bba1c1bb6d70a6240ea206d0f3 /lib/rbcodec/codecs/vox.c
parent1015e1f5ca4fb7eec096677985b21b94c2699a22 (diff)
downloadrockbox-826f99e18701988d7e7cdc3d7019a20e1d697403.tar.gz
rockbox-826f99e18701988d7e7cdc3d7019a20e1d697403.zip
libpcm: Get unbranded structure tag out of my way.
No functional changes. Change-Id: If372023cb605389a203a635b700eca20685ad49b
Diffstat (limited to 'lib/rbcodec/codecs/vox.c')
-rw-r--r--lib/rbcodec/codecs/vox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbcodec/codecs/vox.c b/lib/rbcodec/codecs/vox.c
index d84af24cfc..69eafc72ff 100644
--- a/lib/rbcodec/codecs/vox.c
+++ b/lib/rbcodec/codecs/vox.c
@@ -30,7 +30,7 @@ CODEC_HEADER
30 30
31static int32_t samples[PCM_SAMPLE_SIZE] IBSS_ATTR; 31static int32_t samples[PCM_SAMPLE_SIZE] IBSS_ATTR;
32 32
33static struct pcm_format format; 33static struct libpcm_pcm_format format;
34static uint32_t bytesdone; 34static uint32_t bytesdone;
35 35
36static uint8_t *read_buffer(size_t *realsize) 36static uint8_t *read_buffer(size_t *realsize)
@@ -78,7 +78,7 @@ enum codec_status codec_run(void)
78 bytesdone = ci->id3->offset; 78 bytesdone = ci->id3->offset;
79 ci->seek_buffer(0); 79 ci->seek_buffer(0);
80 80
81 ci->memset(&format, 0, sizeof(struct pcm_format)); 81 ci->memset(&format, 0, sizeof(struct libpcm_pcm_format));
82 82
83 /* set format */ 83 /* set format */
84 format.channels = 1; 84 format.channels = 1;