Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/audio/src/src_hifi2ep.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ void src_polyphase_stage_cir(struct src_stage_prm *s)
struct src_stage *cfg = s->stage;
int32_t *fir_end = &fir->fir_delay[fir->fir_delay_size];
int32_t *out_delay_end = &fir->out_delay[fir->out_delay_size];
const void *cp; /* Can be int32_t or int16_t */
const char *cp; /* Can be int32_t or int16_t */
const size_t out_size = fir->out_delay_size * sizeof(int32_t);
const int nch = s->nch;
const int nch_x_odm = cfg->odm * nch;
Expand Down Expand Up @@ -438,7 +438,7 @@ void src_polyphase_stage_cir_s16(struct src_stage_prm *s)
struct src_stage *cfg = s->stage;
int32_t *fir_end = &fir->fir_delay[fir->fir_delay_size];
int32_t *out_delay_end = &fir->out_delay[fir->out_delay_size];
const void *cp; /* Can be int32_t or int16_t */
const char *cp; /* Can be int32_t or int16_t */
const size_t out_size = fir->out_delay_size * sizeof(int32_t);
const int nch = s->nch;
const int nch_x_odm = cfg->odm * nch;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ static void *get_ptr_from_heap(struct mm_heap *heap, int zone, uint32_t caps,
static void free_block(void *ptr)
{
struct mm_heap *heap;
struct block_map *block_map;
struct block_map *block_map = NULL;
struct block_hdr *hdr;
int i;
int block;
Expand Down