From a0b3a82e2bfc39bddf3cbcd75f17a1cce98c410a Mon Sep 17 00:00:00 2001 From: Frank Livingston Date: Wed, 7 Sep 2016 17:52:00 -0500 Subject: [PATCH] Fix ARM patchs --- .../pasdk/test_arm/framework/audioStreamDecodeProc.h | 2 +- .../pasdk/test_arm/framework/itopo/patchs.c | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/audioStreamDecodeProc.h b/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/audioStreamDecodeProc.h index 3fa0fca5..3f5d44ab 100644 --- a/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/audioStreamDecodeProc.h +++ b/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/audioStreamDecodeProc.h @@ -101,7 +101,7 @@ typedef struct PAF_ASDT_Params { // Audio Stream Decode Task (ASDT) patchs typedef struct PAF_ASDT_Patchs { const PAF_ASP_LinkInit * const (*i_decLinkInit); - const PAF_ASP_LinkInit * const (*i_aspLinkInit)[GEARS]; + //const PAF_ASP_LinkInit * const (*i_aspLinkInit)[GEARS]; } PAF_ASDT_Patchs; // Audio Stream Decode Task (ASDT) configuration diff --git a/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/itopo/patchs.c b/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/itopo/patchs.c index f5831920..dccc72a8 100644 --- a/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/itopo/patchs.c +++ b/processor_audio_sdk_1_00_00_00/pasdk/test_arm/framework/itopo/patchs.c @@ -43,6 +43,7 @@ All rights reserved. #include #include #include +#include "audioStreamDecodeProc.h" // // Decoder Definitions @@ -158,13 +159,13 @@ const PAF_ASP_LinkInit *const patchs_encLinkInit[] = //extern const PAF_SIO_ParamsN patchs_devinp[]; //extern const PAF_SIO_ParamsN patchs_devout[]; -const PAF_AST_Patchs asdp_patchs_PAi = +const PAF_ASDT_Patchs asdp_patchs_PAi = { - NULL, //patchs_devinp, - NULL, //patchs_devout, + //NULL, //patchs_devinp, + //NULL, //patchs_devout, patchs_decLinkInit, - NULL, //patchs_aspLinkInit, - NULL, //patchs_encLinkInit, + //NULL, //patchs_aspLinkInit, + //NULL, //patchs_encLinkInit, }; // EOF -- 2.26.2