From ef776e728cfa67fbca38bb375152b336fa0b5200 Mon Sep 17 00:00:00 2001 From: spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> Date: Mon, 27 Jun 2022 22:18:11 +0200 Subject: Clean up io/system573 example and libpsxpress --- libpsn00b/include/psxpress.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libpsn00b/include') diff --git a/libpsn00b/include/psxpress.h b/libpsn00b/include/psxpress.h index b060170..6203c2a 100644 --- a/libpsn00b/include/psxpress.h +++ b/libpsn00b/include/psxpress.h @@ -40,7 +40,7 @@ extern "C" { * * @param mode */ -void DecDCTReset(int32_t mode); +void DecDCTReset(int mode); /** * @brief Uploads the specified decoding environment's quantization tables and @@ -61,7 +61,7 @@ void DecDCTReset(int32_t mode); * @param env Pointer to DECDCTENV or 0 for default tables * @param mono 0 for color (normal), 1 for monochrome */ -void DecDCTPutEnv(const DECDCTENV *env, int32_t mono); +void DecDCTPutEnv(const DECDCTENV *env, int mono); /** * @brief Sets up the MDEC to start fetching and decoding a stream from the @@ -79,7 +79,7 @@ void DecDCTPutEnv(const DECDCTENV *env, int32_t mono); * @param data * @param mode DECDCT_MODE_* or -1 */ -void DecDCTin(const uint32_t *data, int32_t mode); +void DecDCTin(const uint32_t *data, int mode); /** * @brief Configures the MDEC to automatically fetch data (the input stream, @@ -113,7 +113,7 @@ void DecDCTinRaw(const uint32_t *data, size_t length); * @param mode * @return 0 or -1 in case of a timeout (mode = 0) / MDEC busy flag (mode = 1) */ -int32_t DecDCTinSync(int32_t mode); +int DecDCTinSync(int mode); /** * @brief Configures the MDEC to automatically transfer decoded image data in @@ -144,7 +144,7 @@ void DecDCTout(uint32_t *data, size_t length); * @param mode * @return 0 or -1 in case of a timeout (mode = 0) / DMA busy flag (mode = 1) */ -int32_t DecDCToutSync(int32_t mode); +int DecDCToutSync(int mode); #ifdef __cplusplus } -- cgit v1.2.3