From: Frank Livingston Date: Sun, 4 Sep 2016 21:10:33 +0000 (-0500) Subject: Change metadata buffer pointers types to match audio frame (remove ARM compiler warning) X-Git-Url: https://git.ti.com/gitweb?p=processor-sdk%2Fperformance-audio-sr.git;a=commitdiff_plain;h=11ac9018968069227350fd8e0caf5ee0b2d60df4;ds=sidebyside Change metadata buffer pointers types to match audio frame (remove ARM compiler warning) --- diff --git a/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.c b/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.c index f017cdc2..425496a7 100644 --- a/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.c +++ b/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.c @@ -66,7 +66,7 @@ Int cbInit( { PAF_AudioFrame *pAfCb; PAF_AudioData *pPcmBuf; - Int8 *pMetaBuf; //QIN + UInt8 *pMetaBuf; //QIN Int8 n; Int8 i; diff --git a/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.h b/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.h index b9e44941..96d4d4c6 100644 --- a/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.h +++ b/processor_audio_sdk_1_00_00_00/pasdk/common/paf_decOpCircBuf.h @@ -56,7 +56,7 @@ typedef struct PAF_AST_DecOpCircBuf { PAF_AudioFrame *afCb; // audio frame CB PAF_AudioData *pcmBuf; // PCM buffer, contains PCM data associated with audio frames - Int8 *metaBuf; // metafdata buffer, contains metadata associated with audio frames //QIN + UInt8 *metaBuf; // metafdata buffer, contains metadata associated with audio frames //QIN Int8 afRdIdx; // audio frame CB read index Int8 afWrtIdx; // audio frame CB write index Int16 pcmRdIdx; // pcm buffer read index