Skip to content

Commit

Permalink
checpatch, not sure where to merge this one
Browse files Browse the repository at this point in the history
  • Loading branch information
tobonex committed Sep 1, 2023
1 parent 6412395 commit 465ab6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/audio/pcm_converter/pcm_converter_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

#if CONFIG_PCM_CONVERTER_FORMAT_U8 && CONFIG_PCM_CONVERTER_FORMAT_S32LE
static int pcm_convert_u8_to_s32(const struct audio_stream *source,
uint32_t ioffset, struct audio_stream *sink,
uint32_t ooffset, uint32_t samples)
uint32_t ioffset, struct audio_stream *sink,
uint32_t ooffset, uint32_t samples)
{
uint8_t *src = audio_stream_get_rptr(source);
int32_t *dst = audio_stream_get_wptr(sink);
Expand Down Expand Up @@ -64,8 +64,8 @@ static int pcm_convert_u8_to_s32(const struct audio_stream *source,
}

static int pcm_convert_s32_to_u8(const struct audio_stream *source,
uint32_t ioffset, struct audio_stream *sink,
uint32_t ooffset, uint32_t samples)
uint32_t ioffset, struct audio_stream *sink,
uint32_t ooffset, uint32_t samples)
{
int32_t *src = audio_stream_get_rptr(source);
uint8_t *dst = audio_stream_get_wptr(sink);
Expand Down

0 comments on commit 465ab6a

Please sign in to comment.