<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help: How to use the Polyphase analysis Filterbank function in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855046#M6993</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;please checkthe notes from our AAC expert on the problem: &lt;BR /&gt;&lt;BR /&gt;The following are the working code. For every call of ippsAnalysisFilter_SBR_RToC_32f32fc_D2L function, 1024 samples of Src data are processed. note that offset first pDst pointers will be skipped, so the first pointer to actual dst data is pDst[offset]. Also all subbands begins from kx are cleared.&lt;BR /&gt;&lt;BR /&gt;for(i = offset, i &amp;lt; NUM_TIME_SLOTS * RATE + offset; i++)&lt;BR /&gt;{&lt;BR /&gt;for (j = kx; j &amp;lt; 32; j++)&lt;BR /&gt;{&lt;BR /&gt;pDst&lt;I&gt;&lt;J&gt; = 0;&lt;BR /&gt;}&lt;BR /&gt;} &lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;IppStatus ippRes;&lt;BR /&gt;Ipp32s pSizeSpec, pSizeInitBuf, pSizeWorkBuf;&lt;BR /&gt;Ipp32fc* pDst[NUM_TIME_SLOTS * RATE + SBR_TIME_HFGEN];&lt;BR /&gt;Ipp32f src[1024];&lt;BR /&gt;&lt;BR /&gt;IppsFilterSpec_SBR_C_32fc* pFilterSpec;&lt;BR /&gt;Ipp8u* pMemSpec;&lt;BR /&gt;Ipp8u* pInitBuf;&lt;BR /&gt;Ipp8u* pWorkBuf;&lt;BR /&gt;&lt;BR /&gt;int NumLoop= NUM_TIME_SLOTS * RATE;// = 16*2 = 32&lt;BR /&gt;int offset = SBR_TIME_HFGEN ; // 8 siehe (sbr_dec_settings.h)&lt;BR /&gt;int kx = 31; //first SBR Subband 0&amp;lt;=kx&amp;lt;32&lt;BR /&gt;int i;&lt;BR /&gt;&lt;BR /&gt;// get size need for the analysisfilter&lt;BR /&gt;ippRes = ippsAnalysisFilterGetSize_SBR_RToC_32f32fc(&amp;amp;pSizeSpec, &lt;BR /&gt;&amp;amp;pSizeInitBuf,&lt;BR /&gt;&amp;amp;pSizeWorkBuf);&lt;BR /&gt;if (ippRes != ippStsOk)&lt;BR /&gt;{ &lt;BR /&gt;printf("error during getsize for the Analysis Filter");&lt;BR /&gt;return 1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;// Memory allocation&lt;BR /&gt;&lt;BR /&gt;pInitBuf = (Ipp8u*)calloc(1,pSizeInitBuf);&lt;BR /&gt;pWorkBuf = (Ipp8u*)calloc(1,pSizeWorkBuf);&lt;BR /&gt;pMemSpec = (Ipp8u*)calloc(1,pSizeSpec);&lt;BR /&gt;&lt;BR /&gt;for (i=0;i&amp;lt;(NumLoop + offset);i++)&lt;BR /&gt;{&lt;BR /&gt;pDst&lt;I&gt; = (Ipp32fc*)calloc(32,sizeof(Ipp32fc));&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc(&amp;amp;pFilterSpec,pMemSpec,pInitBuf);&lt;BR /&gt;&lt;BR /&gt;if (ippRes != ippStsOk)&lt;BR /&gt;{ &lt;BR /&gt;printf("error during initilaisation for the Analysis Filter");&lt;BR /&gt;return 1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;//Filtering &lt;BR /&gt;&lt;BR /&gt;ippRes = ippsAnalysisFilter_SBR_RToC_32f32fc_D2L((const Ipp32f*)pSrc-&amp;gt;DataPtr(),&lt;BR /&gt;pDst,SBR_TABLE_QMF_WINDOW_320,&lt;BR /&gt;NumLoop,offset,kx,*ppFilterSpec,&lt;BR /&gt;pWorkBuf);&lt;BR /&gt;if (ippRes != ippStsOk)&lt;BR /&gt;{ &lt;BR /&gt;printf("error during filtering for the Analysis Filter");&lt;BR /&gt;return 1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;/I&gt;&lt;/J&gt;&lt;/I&gt;&lt;/DIV&gt;
&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Jul 2009 06:33:50 GMT</pubDate>
    <dc:creator>Chao_Y_Intel</dc:creator>
    <dc:date>2009-07-22T06:33:50Z</dc:date>
    <item>
      <title>Help: How to use the Polyphase analysis Filterbank function of the ipp</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855043#M6990</link>
      <description>&lt;SPAN style="font-size: 12pt; font-family: " times="" new="" roman=""&gt;Hello Im R.Nguete,&lt;BR /&gt; &lt;BR /&gt; I want to split an input signal into 32 Suband. to achieve it, im using the polyphase Analysis Filterbank functions from the ipps library.&lt;BR /&gt; I write this small code but it not work corretly because after calling the main function (ippsAnalysisFilter_SBR_RToC_32f32fc_D2L) i receive "ippStsContextMatchErr" error. Please can somebody help me to know what it wrong in my source?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN lang="EN-GB"&gt;IppStatus ippRes;&lt;BR /&gt; Ipp32s pSizeSpec, pSizeInitBuf, pSizeWorkBuf;&lt;BR /&gt; Ipp32fc* pDst[32];&lt;BR /&gt; &lt;BR /&gt; int iChannel = 32;&lt;BR /&gt; &lt;BR /&gt; IppsFilterSpec_SBR_C_32fc** ppFilterSpec;&lt;BR /&gt; Ipp8u* pMemSpec;&lt;BR /&gt; Ipp8u* pInitBuf;&lt;BR /&gt; Ipp8u* pWorkBuf;&lt;BR /&gt; &lt;BR /&gt; int NumLoop= NUM_TIME_SLOTS * RATE;// = 16*2 = 32&lt;BR /&gt; int offset = SBR_TIME_HFGEN ; // 8 siehe (sbr_dec_settings.h)&lt;BR /&gt; int kx = 0; //first Subband 0&amp;lt;=kx&amp;lt;=32&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; // get size need for the analysisfilter&lt;BR /&gt; ippRes = ippsAnalysisFilterGetSize_SBR_RToC_32f32fc(&amp;amp;pSizeSpec,&amp;amp;pSizeInitBuf,&amp;amp;pSizeWorkBuf);&lt;BR /&gt; if (ippRes != ippStsOk)&lt;BR /&gt; { &lt;BR /&gt; printf("error during getsize for the Analysis Filter");&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; // Memory allocation&lt;BR /&gt; &lt;BR /&gt; pInitBuf = (Ipp8u*)calloc(1,pSizeInitBuf);&lt;BR /&gt; pWorkBuf = (Ipp8u*)calloc(1,pSizeWorkBuf);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; // Ipp8u* pAnalysisFilterSpec[2];&lt;BR /&gt; &lt;BR /&gt; pMemSpec = (Ipp8u*)calloc(1,pSizeSpec);&lt;BR /&gt; ppFilterSpec = (IppsFilterSpec_SBR_C_32fc**)calloc(iChannel,sizeof(IppsFilterSpec_SBR_C_32fc*));&lt;BR /&gt; &lt;BR /&gt; for (int i=0;i&lt;ICHANNEL&gt;&lt;/ICHANNEL&gt; {&lt;BR /&gt; &lt;BR /&gt; if(pSizeSpec !=0)&lt;BR /&gt; {&lt;BR /&gt; ppFilterSpec&lt;I&gt; =(IppsFilterSpec_SBR_C_32fc*)calloc(1,pSizeSpec);&lt;BR /&gt; &lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ppFilterSpec&lt;I&gt; = NULL;  &lt;BR /&gt; &lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc(ppFilterSpec,pMemSpec,pInitBuf);&lt;BR /&gt; // }&lt;BR /&gt; if (ippRes != ippStsOk)&lt;BR /&gt; { &lt;BR /&gt; printf("error during initilaisation for the Analysis Filter");&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; //Filtering  &lt;BR /&gt; &lt;BR /&gt; ippRes = ippsAnalysisFilter_SBR_RToC_32f32fc_D2L((constIpp32f*)pSrc-&amp;gt;DataPtr(),pDst,SBR_TABLE_QMF_WINDOW_320,&lt;BR /&gt; NumLoop,offset,kx,ppFilterSpec[5],pWorkBuf);&lt;BR /&gt; &lt;BR /&gt; if (ippRes != ippStsOk)&lt;BR /&gt; { &lt;BR /&gt; printf("error during filtering for the Analysis Filter");&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; Thanks you&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; R. Nguete&lt;P&gt;&lt;/P&gt;&lt;/I&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;BR /&gt;&lt;SPAN style="font-size: 12pt; font-family: " times="" new="" roman=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:24:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855043#M6990</guid>
      <dc:creator>ngurom</dc:creator>
      <dc:date>2009-07-16T13:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Help: How to use the Polyphase analysis Filterbank function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855044#M6991</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;Hi Nguete,&lt;BR /&gt;&lt;BR /&gt;It looks that the initiation is not correct. It need to initiate each of the filter:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for (int i=0;i&lt;ICHANNEL&gt;&lt;/ICHANNEL&gt;ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc( &amp;amp;(ppFilterSpec&lt;I&gt;),...);&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao&lt;/I&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jul 2009 07:31:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855044#M6991</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2009-07-20T07:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help: How to use the Polyphase analysis Filterbank function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855045#M6992</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/21699"&gt;Chao Yu (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;Hi Nguete,&lt;BR /&gt;&lt;BR /&gt;It looks that the initiation is not correct. It need to initiate each of the filter:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for (int i=0;i&lt;ICHANNEL&gt;&lt;/ICHANNEL&gt;ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc( &amp;amp;(ppFilterSpec&lt;I&gt;),...);&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao&lt;/I&gt;&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi Chao,&lt;BR /&gt;Thanks for your Answer to my question. I initialize all subband filter as your write me on the last post. But now i meet that there are all point to the same reference and in in the filtering step (by calling:ippsAnalysisFilter_SBR_RToC_32f32fc_D2L() ) I receive an Access violation error . may be you can tell have another idea, or is it posible to send me a small example of the implementation of this polyphase analysis filterbank? &lt;BR /&gt;this is my new code:&lt;BR /&gt;&lt;BR /&gt; IppStatus ippRes;&lt;BR /&gt; Ipp32s pSizeSpec, pSizeInitBuf, pSizeWorkBuf;&lt;BR /&gt; Ipp32fc* pDst[32];&lt;BR /&gt;&lt;BR /&gt; int iChannel = 32;&lt;BR /&gt;&lt;BR /&gt; IppsFilterSpec_SBR_C_32fc** ppFilterSpec;&lt;BR /&gt; Ipp8u* pMemSpec;&lt;BR /&gt; Ipp8u* pInitBuf;&lt;BR /&gt; Ipp8u* pWorkBuf;&lt;BR /&gt;&lt;BR /&gt; int NumLoop= NUM_TIME_SLOTS * RATE;// = 16*2 = 32&lt;BR /&gt; int offset = SBR_TIME_HFGEN ; // 8 siehe (sbr_dec_settings.h)&lt;BR /&gt; int kx = 0; //first Subband 0&amp;lt;=kx&amp;lt;=32&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; // get size need for the analysisfilter&lt;BR /&gt; ippRes = ippsAnalysisFilterGetSize_SBR_RToC_32f32fc(&amp;amp;pSizeSpec,&amp;amp;pSizeInitBuf,&amp;amp;pSizeWorkBuf);&lt;BR /&gt; if (ippRes != ippStsOk)&lt;BR /&gt; { &lt;BR /&gt; printf("error during getsize for the Analysis Filter");&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt; // Memory allocation&lt;BR /&gt;&lt;BR /&gt; pInitBuf = (Ipp8u*)calloc(1,pSizeInitBuf);&lt;BR /&gt; pWorkBuf = (Ipp8u*)calloc(1,pSizeWorkBuf);&lt;BR /&gt; pMemSpec = (Ipp8u*)calloc(1,pSizeSpec);&lt;BR /&gt; ppFilterSpec = (IppsFilterSpec_SBR_C_32fc**)calloc(iChannel,sizeof(IppsFilterSpec_SBR_C_32fc*));&lt;BR /&gt; int i =0;&lt;BR /&gt; for (i=0;i&lt;ICHANNEL&gt;&lt;/ICHANNEL&gt; {&lt;BR /&gt;&lt;BR /&gt; if(pSizeSpec !=0)&lt;BR /&gt; {&lt;BR /&gt; ppFilterSpec&lt;I&gt; =(IppsFilterSpec_SBR_C_32fc*)calloc(1,pSizeSpec);&lt;BR /&gt;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ppFilterSpec&lt;I&gt; = NULL; &lt;BR /&gt;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt; for (i=0;i&lt;ICHANNEL&gt;&lt;/ICHANNEL&gt; {&lt;BR /&gt; &lt;BR /&gt; ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc( &amp;amp;(ppFilterSpec&lt;I&gt;),pMemSpec,pInitBuf);&lt;BR /&gt; pDst&lt;I&gt; = ( Ipp32fc*)calloc(pSrc-&amp;gt;Length(),sizeof(Ipp32fc));&lt;BR /&gt;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; // ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc(ppFilterSpec,pMemSpec,pInitBuf);&lt;BR /&gt; // }&lt;BR /&gt; if (ippRes != ippStsOk)&lt;BR /&gt; { &lt;BR /&gt; printf("error during initilaisation for the Analysis Filter");&lt;BR /&gt; return 1;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; //Filtering &lt;BR /&gt;&lt;BR /&gt; ippRes = ippsAnalysisFilter_SBR_RToC_32f32fc_D2L((const Ipp32f*)pSrc-&amp;gt;DataPtr(),pDst,SBR_TABLE_QMF_WINDOW_320,&lt;BR /&gt; NumLoop,offset,kx,*ppFilterSpec,pWorkBuf);&lt;BR /&gt;&lt;BR /&gt; if (ippRes != ippStsOk)&lt;BR /&gt; { &lt;BR /&gt; printf("error during filtering for the Analysis Filter");&lt;BR /&gt; return 1;&lt;BR /&gt; } &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; return 0;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Thanks you !&lt;BR /&gt;&lt;BR /&gt;R.Nguete&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;</description>
      <pubDate>Mon, 20 Jul 2009 13:04:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855045#M6992</guid>
      <dc:creator>ngurom</dc:creator>
      <dc:date>2009-07-20T13:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help: How to use the Polyphase analysis Filterbank function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855046#M6993</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;Hi, &lt;BR /&gt;&lt;BR /&gt;please checkthe notes from our AAC expert on the problem: &lt;BR /&gt;&lt;BR /&gt;The following are the working code. For every call of ippsAnalysisFilter_SBR_RToC_32f32fc_D2L function, 1024 samples of Src data are processed. note that offset first pDst pointers will be skipped, so the first pointer to actual dst data is pDst[offset]. Also all subbands begins from kx are cleared.&lt;BR /&gt;&lt;BR /&gt;for(i = offset, i &amp;lt; NUM_TIME_SLOTS * RATE + offset; i++)&lt;BR /&gt;{&lt;BR /&gt;for (j = kx; j &amp;lt; 32; j++)&lt;BR /&gt;{&lt;BR /&gt;pDst&lt;I&gt;&lt;J&gt; = 0;&lt;BR /&gt;}&lt;BR /&gt;} &lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;IppStatus ippRes;&lt;BR /&gt;Ipp32s pSizeSpec, pSizeInitBuf, pSizeWorkBuf;&lt;BR /&gt;Ipp32fc* pDst[NUM_TIME_SLOTS * RATE + SBR_TIME_HFGEN];&lt;BR /&gt;Ipp32f src[1024];&lt;BR /&gt;&lt;BR /&gt;IppsFilterSpec_SBR_C_32fc* pFilterSpec;&lt;BR /&gt;Ipp8u* pMemSpec;&lt;BR /&gt;Ipp8u* pInitBuf;&lt;BR /&gt;Ipp8u* pWorkBuf;&lt;BR /&gt;&lt;BR /&gt;int NumLoop= NUM_TIME_SLOTS * RATE;// = 16*2 = 32&lt;BR /&gt;int offset = SBR_TIME_HFGEN ; // 8 siehe (sbr_dec_settings.h)&lt;BR /&gt;int kx = 31; //first SBR Subband 0&amp;lt;=kx&amp;lt;32&lt;BR /&gt;int i;&lt;BR /&gt;&lt;BR /&gt;// get size need for the analysisfilter&lt;BR /&gt;ippRes = ippsAnalysisFilterGetSize_SBR_RToC_32f32fc(&amp;amp;pSizeSpec, &lt;BR /&gt;&amp;amp;pSizeInitBuf,&lt;BR /&gt;&amp;amp;pSizeWorkBuf);&lt;BR /&gt;if (ippRes != ippStsOk)&lt;BR /&gt;{ &lt;BR /&gt;printf("error during getsize for the Analysis Filter");&lt;BR /&gt;return 1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;// Memory allocation&lt;BR /&gt;&lt;BR /&gt;pInitBuf = (Ipp8u*)calloc(1,pSizeInitBuf);&lt;BR /&gt;pWorkBuf = (Ipp8u*)calloc(1,pSizeWorkBuf);&lt;BR /&gt;pMemSpec = (Ipp8u*)calloc(1,pSizeSpec);&lt;BR /&gt;&lt;BR /&gt;for (i=0;i&amp;lt;(NumLoop + offset);i++)&lt;BR /&gt;{&lt;BR /&gt;pDst&lt;I&gt; = (Ipp32fc*)calloc(32,sizeof(Ipp32fc));&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ippRes = ippsAnalysisFilterInit_SBR_RToC_32f32fc(&amp;amp;pFilterSpec,pMemSpec,pInitBuf);&lt;BR /&gt;&lt;BR /&gt;if (ippRes != ippStsOk)&lt;BR /&gt;{ &lt;BR /&gt;printf("error during initilaisation for the Analysis Filter");&lt;BR /&gt;return 1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;//Filtering &lt;BR /&gt;&lt;BR /&gt;ippRes = ippsAnalysisFilter_SBR_RToC_32f32fc_D2L((const Ipp32f*)pSrc-&amp;gt;DataPtr(),&lt;BR /&gt;pDst,SBR_TABLE_QMF_WINDOW_320,&lt;BR /&gt;NumLoop,offset,kx,*ppFilterSpec,&lt;BR /&gt;pWorkBuf);&lt;BR /&gt;if (ippRes != ippStsOk)&lt;BR /&gt;{ &lt;BR /&gt;printf("error during filtering for the Analysis Filter");&lt;BR /&gt;return 1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;/I&gt;&lt;/J&gt;&lt;/I&gt;&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jul 2009 06:33:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-How-to-use-the-Polyphase-analysis-Filterbank-function-of/m-p/855046#M6993</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2009-07-22T06:33:50Z</dc:date>
    </item>
  </channel>
</rss>

