From 25f40e5d9b54ab908be45c572f5d3c4d6f24a13b Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Thu, 6 Mar 2014 16:04:54 +0000 Subject: [PATCH] Re-added 4 byte subslot for 24bit res input --- module_usb_audio/devicedefines.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module_usb_audio/devicedefines.h b/module_usb_audio/devicedefines.h index d87b1192..2f9e4ebe 100644 --- a/module_usb_audio/devicedefines.h +++ b/module_usb_audio/devicedefines.h @@ -531,11 +531,11 @@ /* Setup default subslot sized based on resolution */ #ifndef HS_STREAM_FORMAT_INPUT_1_SUBSLOT_BYTES - // #if (HS_STREAM_FORMAT_INPUT_1_RESOLUTION_BITS == 24) - // #define HS_STREAM_FORMAT_INPUT_1_SUBSLOT_BYTES 4 /* 4 byte subslot is nicer for our 32 bit machine to unpack.. */ - //#else + #if (HS_STREAM_FORMAT_INPUT_1_RESOLUTION_BITS == 24) + #define HS_STREAM_FORMAT_INPUT_1_SUBSLOT_BYTES 4 /* 4 byte subslot is nicer for our 32 bit machine to unpack.. */ + #else #define HS_STREAM_FORMAT_INPUT_1_SUBSLOT_BYTES (HS_STREAM_FORMAT_INPUT_1_RESOLUTION_BITS/8) - //#endif + #endif #endif /* Setup default FS subslot sizes */