From 330ba8d537b493a35b8e83ae4247ea2343ab010c Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 28 Aug 2019 17:30:55 +0200 Subject: avcodec/dsd: use uint8_t instead of unsigned char --- libavcodec/dsd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/dsd.h') diff --git a/libavcodec/dsd.h b/libavcodec/dsd.h index 5ca4574837..ed09cb9b12 100644 --- a/libavcodec/dsd.h +++ b/libavcodec/dsd.h @@ -40,13 +40,13 @@ * Per-channel buffer */ typedef struct DSDContext { - unsigned char buf[FIFOSIZE]; + uint8_t buf[FIFOSIZE]; unsigned pos; } DSDContext; void ff_init_dsd_data(void); void ff_dsd2pcm_translate(DSDContext* s, size_t samples, int lsbf, - const unsigned char *src, ptrdiff_t src_stride, + const uint8_t *src, ptrdiff_t src_stride, float *dst, ptrdiff_t dst_stride); #endif /* AVCODEC_DSD_H */ -- cgit v1.2.1