<?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: Compress /Encode Raw Image to JPEG? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956725#M19147</link>
    <description>It's always the little things that get you.&lt;BR /&gt;&lt;BR /&gt;Zero before Init, not after.</description>
    <pubDate>Wed, 21 Dec 2005 07:41:17 GMT</pubDate>
    <dc:creator>jwmcfar</dc:creator>
    <dc:date>2005-12-21T07:41:17Z</dc:date>
    <item>
      <title>Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956720#M19142</link>
      <description>With the IJL Library being retired, can anyone provide a link to documentation on how to do a simple JPEG quality encode with the IPP  library? &lt;BR /&gt;&lt;BR /&gt;Maybe I'm missing it, but there doesn't seem to be a simple way like there was in IJL.</description>
      <pubDate>Mon, 19 Dec 2005 10:23:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956720#M19142</guid>
      <dc:creator>jwmcfar</dc:creator>
      <dc:date>2005-12-19T10:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956721#M19143</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;did you looked at IPP samples? We have big bunch of different samples which demonstrates how to use IPP to build various media codecs,including JPEG andJPEG2000&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Dec 2005 00:37:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956721#M19143</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-12-21T00:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956722#M19144</link>
      <description>Well, the IPP IJL sample seems like it will work.&lt;BR /&gt;&lt;BR /&gt;However, is Intel still improving the IJL lib, or is it basically just a pass-through interface to the IPP dlls now?</description>
      <pubDate>Wed, 21 Dec 2005 03:34:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956722#M19144</guid>
      <dc:creator>jwmcfar</dc:creator>
      <dc:date>2005-12-21T03:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956723#M19145</link>
      <description>&lt;P&gt;You can see three different JPEG samples on IPP main page.&lt;/P&gt;
&lt;P&gt;1) IJL, for those customers who still use this old interface. It demostrates how you can implement IJL interface with using IPP functions. It will not be improved or extended.&lt;BR /&gt;2) IJG, this sample demonstrates how you can speedup well-know JPEG codec with using IPP&lt;BR /&gt;3) JPEGView sample contains simple codec, but this codec supports JPEG lossless mode, is able to extract Exif metadata, decoder is threaded with using OpenMP. We plan to continue improve this codec.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Dec 2005 03:53:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956723#M19145</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-12-21T03:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956724#M19146</link>
      <description>I'm currently getting an access violation while attempting to compress a JPEG.&lt;BR /&gt;&lt;BR /&gt;I've got the following code:&lt;BR /&gt;&lt;BR /&gt;Everything works OK until &lt;BR /&gt;&lt;BR /&gt;IJLERR err;&lt;BR /&gt;	JPEG_CORE_PROPERTIES image;&lt;BR /&gt;	err = ijlInit(ℑ);&lt;BR /&gt;	ZeroMemory(ℑ, sizeof(JPEG_CORE_PROPERTIES));&lt;BR /&gt;&lt;BR /&gt;	if (err != IJL_OK)&lt;BR /&gt;	{&lt;BR /&gt;		return false;&lt;BR /&gt;	}&lt;BR /&gt;	if (bmiHeader.biBitCount != 24)&lt;BR /&gt;	{&lt;BR /&gt;		//Unsupported format&lt;BR /&gt;		return false;&lt;BR /&gt;	}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;	//Resize output buffer&lt;BR /&gt;	OutputBuffer.resize(bmiHeader.biWidth * bmiHeader.biHeight * 3);&lt;BR /&gt;&lt;BR /&gt;	//DIB&lt;BR /&gt;	image.DIBWidth = bmiHeader.biWidth;//&lt;BR /&gt;	image.DIBHeight = bmiHeader.biHeight;//&lt;BR /&gt;	image.DIBBytes = ImageBuffer;//&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;	//Setup JPEG&lt;BR /&gt;	char saveto[] = "C://imagetest.jpg";&lt;BR /&gt;	image.JPGFile = saveto;&lt;BR /&gt;	image.JPGWidth = bmiHeader.biWidth;//&lt;BR /&gt;	image.JPGHeight = bmiHeader.biHeight;//&lt;BR /&gt;	image.JPGBytes = NULL;//&lt;BR /&gt;&lt;BR /&gt;	image.DIBChannels = 3; //&lt;BR /&gt;	image.DIBColor = IJL_BGR; //&lt;BR /&gt;	image.DIBPadBytes = IJL_DIB_PAD_BYTES(bmiHeader.biWidth, 3);&lt;BR /&gt;	&lt;BR /&gt;	&lt;BR /&gt;	&lt;BR /&gt;	&lt;BR /&gt;	image.JPGSizeBytes = NULL;//&lt;BR /&gt;	&lt;BR /&gt;	image.JPGColor = IJL_YCBCR; //&lt;BR /&gt;	image.JPGChannels = 3; //&lt;BR /&gt;	image.JPGSubsampling = IJL_411; //&lt;BR /&gt;	image.jquality = 50;&lt;BR /&gt;	&lt;BR /&gt;	bool returnval = true;&lt;BR /&gt;	err =ijlWrite(ℑ, IJL_JBUFF_WRITEWHOLEIMAGE);&lt;BR /&gt;	&lt;BR /&gt;	if (err != IJL_OK)&lt;BR /&gt;	{&lt;BR /&gt;		returnval = false;&lt;BR /&gt;	}&lt;BR /&gt;	OutputBuffer.resize(image.JPGSizeBytes);&lt;BR /&gt;	if (ijlFree(ℑ) != IJL_OK)&lt;BR /&gt;	{&lt;BR /&gt;		TRACE("Can't free JPEG Library 
");&lt;BR /&gt;	}&lt;BR /&gt;	return returnval;&lt;BR /&gt;&lt;BR /&gt;ijlWrite is returning IJL_EXCEPTION_DETECTED.&lt;BR /&gt;&lt;BR /&gt;Do you have any clue why?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Josh McFarlane</description>
      <pubDate>Wed, 21 Dec 2005 07:33:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956724#M19146</guid>
      <dc:creator>jwmcfar</dc:creator>
      <dc:date>2005-12-21T07:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956725#M19147</link>
      <description>It's always the little things that get you.&lt;BR /&gt;&lt;BR /&gt;Zero before Init, not after.</description>
      <pubDate>Wed, 21 Dec 2005 07:41:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956725#M19147</guid>
      <dc:creator>jwmcfar</dc:creator>
      <dc:date>2005-12-21T07:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956726#M19148</link>
      <description>&lt;DIV&gt;IJL 1.5x, IJL-IPP based and IPP-Codec can also be presented with same basic API ( based on IJL 1.5x like API) for memory or file compress/decompress. This allows fast switching between each version ( from application point of view) and also easier performance comparison.&lt;/DIV&gt;
&lt;DIV&gt;Starting with Intel IPP 4.x DLL project for IJL-IPP it is not too difficult to build the solution.&lt;/DIV&gt;
&lt;DIV&gt;SRSR&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Dec 2005 15:53:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956726#M19148</guid>
      <dc:creator>support2</dc:creator>
      <dc:date>2005-12-21T15:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Compress /Encode Raw Image to JPEG?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956727#M19149</link>
      <description>&lt;P&gt;Seems you solved your issue? So, what is your feeling about IJL implementation in IPP v5.0?&lt;/P&gt;
&lt;P&gt;BTW, did you try JPEG codec in JPEGView sample? This codec supports lossless JPEG, it also threaded and is able to retrieve Exif metadata.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Dec 2005 01:58:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Compress-Encode-Raw-Image-to-JPEG/m-p/956727#M19149</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-12-23T01:58:45Z</dc:date>
    </item>
  </channel>
</rss>

