<?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:Huffman Decoding Details in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1622592#M28798</link>
    <description>&lt;P&gt;Thank you for reaching us. This issue is closing and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 12 Aug 2024 06:11:16 GMT</pubDate>
    <dc:creator>Ruqiu_C_Intel</dc:creator>
    <dc:date>2024-08-12T06:11:16Z</dc:date>
    <item>
      <title>Huffman Decoding Details</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1615832#M28768</link>
      <description>&lt;P&gt;I am using the IPP legacy libraries specifically, ippdc. The reason for this is the data that I am working with has been compressed by these functions. Specifically Huffman Compressed JPEG data.&lt;BR /&gt;&lt;BR /&gt;I have utilized the legacy libraries in IPP 9.0 and this has worked fine. However I would like to also implement none IPP code where speed is not as relevant.&lt;BR /&gt;&lt;BR /&gt;The problem is I can't find any documentation on the process. While in theory I understand the basis of Huffman encoding, I don't see how to decoded the binary arrays I have of compressed JPEG data. I understand I need the Huffman decoding tree, and can see that generated purely from the compressed data with ippsHuffLenCodeTableUnpack_8u and the to decode the array in its entirety, I have been using ippsDecodeHuffInitAlloc_8u and ippsDecodeHuff_8u.&lt;BR /&gt;&lt;BR /&gt;Could you share any info with regards to more details on extracting the huffman table from the compressed data? The data does not start with the typical header data it seems, as this is stored elsewhere. (image size (width,height, uncompressed_size) and passed to the relevant functions. Is it Canonical encoding of the table or some other means?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any info is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 17:57:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1615832#M28768</guid>
      <dc:creator>ben-bartlett</dc:creator>
      <dc:date>2024-07-17T17:57:05Z</dc:date>
    </item>
    <item>
      <title>Re:Huffman Decoding Details</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1619576#M28783</link>
      <description>&lt;P&gt;Hi Ben,&lt;/P&gt;&lt;P&gt;Thank you for posting. &lt;/P&gt;&lt;P&gt;For the removed functions, it's hard for us to find out the details information for 10 years ago product. Please refer to the IPP Doc:  &lt;A href="https://www.intel.com/content/www/us/en/docs/ipp/developer-guide-reference/2021-12/ipp-ref-removed-functions.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/docs/ipp/developer-guide-reference/2021-12/ipp-ref-removed-functions.html&lt;/A&gt;, or update your IPP product to newer version.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ruqiu&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Jul 2024 02:30:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1619576#M28783</guid>
      <dc:creator>Ruqiu_C_Intel</dc:creator>
      <dc:date>2024-07-31T02:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Huffman Decoding Details</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1619826#M28786</link>
      <description>&lt;P&gt;Hi Ruqiu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate the response. However, all relevant functions have been removed with the workaround listed as N/A. The closest I found was the information in &lt;A href="https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Huffman-encoding-decoding-functions-deprecated-substituation/m-p/1009148" target="_blank"&gt;https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Huffman-encoding-decoding-functions-deprecated-substituation/m-p/1009148. &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have implemented the linked legacy 9.0 library successfully. All data I have, has been encoded through IPP huffman compression.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Is it possible to shed any light on the structure of the JPEG byte arrays for other manipulation? If there is any documentation available within what format the byte array takes? Any specific information would be greatly beneficial. Looking at the decompression section of &lt;A href="https://en.wikipedia.org/wiki/Huffman_coding" target="_blank"&gt;https://en.wikipedia.org/wiki/Huffman_coding&lt;/A&gt; there are numerous ways the tree can be encoded for example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 18:36:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1619826#M28786</guid>
      <dc:creator>ben-bartlett</dc:creator>
      <dc:date>2024-07-31T18:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Huffman Decoding Details</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1619919#M28788</link>
      <description>&lt;P&gt;Hi Ben,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We understand that you are expecting the support for the legacy product, but the very old product didn't fix bugs or any potential secure risks, that's the reason that we are not recommend users to continue use the legacy product.&lt;/P&gt;
&lt;P&gt;What we can do now is recommend users refer to two these articles below:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/tool/intel-ipp-legacy-libraries.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/developer/articles/tool/intel-ipp-legacy-libraries.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/code-sample/how-to-build-former-intel-ipp-samples-with-ipp-90-legacy-libraries.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/developer/articles/code-sample/how-to-build-former-intel-ipp-samples-with-ipp-90-legacy-libraries.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For JPEG relate, might Intel Media SDK work for you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/Intel-Media-SDK/MediaSDK" target="_blank"&gt;https://github.com/Intel-Media-SDK/MediaSDK&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Ruqiu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 06:21:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1619919#M28788</guid>
      <dc:creator>Ruqiu_C_Intel</dc:creator>
      <dc:date>2024-08-01T06:21:36Z</dc:date>
    </item>
    <item>
      <title>Re:Huffman Decoding Details</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1622592#M28798</link>
      <description>&lt;P&gt;Thank you for reaching us. This issue is closing and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Aug 2024 06:11:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Huffman-Decoding-Details/m-p/1622592#M28798</guid>
      <dc:creator>Ruqiu_C_Intel</dc:creator>
      <dc:date>2024-08-12T06:11:16Z</dc:date>
    </item>
  </channel>
</rss>

