<?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 uic jpec encoder in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793530#M2592</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm trying to evaluate uic jpeg encoder performancesand encounter manydifficulties. I can present source image in BGRA or YUV422 (YUY2) and i just want to convert it in jpeg in a memory stream (CMemBuffOutput). I started from samples and generally all seam to be correct beforethecall to encoder.WriteHeader() wich returns -1 (which is not informative) or simply crashes.&lt;BR /&gt;&lt;BR /&gt;Someone can indicate a sample that just works or a more complete documentation?&lt;BR /&gt;&lt;BR /&gt;thanks in advance&lt;BR /&gt;&lt;BR /&gt;Pascal</description>
    <pubDate>Wed, 06 Jul 2011 16:53:04 GMT</pubDate>
    <dc:creator>pas059</dc:creator>
    <dc:date>2011-07-06T16:53:04Z</dc:date>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793530#M2592</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm trying to evaluate uic jpeg encoder performancesand encounter manydifficulties. I can present source image in BGRA or YUV422 (YUY2) and i just want to convert it in jpeg in a memory stream (CMemBuffOutput). I started from samples and generally all seam to be correct beforethecall to encoder.WriteHeader() wich returns -1 (which is not informative) or simply crashes.&lt;BR /&gt;&lt;BR /&gt;Someone can indicate a sample that just works or a more complete documentation?&lt;BR /&gt;&lt;BR /&gt;thanks in advance&lt;BR /&gt;&lt;BR /&gt;Pascal</description>
      <pubDate>Wed, 06 Jul 2011 16:53:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793530#M2592</guid>
      <dc:creator>pas059</dc:creator>
      <dc:date>2011-07-06T16:53:04Z</dc:date>
    </item>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793531#M2593</link>
      <description>&lt;P&gt;Pascal, &lt;/P&gt;&lt;P&gt;do you have a chance to check the following example file? for encoder, the SaveImageJPEG() function include the example code: &lt;/P&gt;&lt;P&gt;uic\src\application\wic_uic_codec\src\jpeg.cpp&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Chao &lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2011 07:14:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793531#M2593</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-07-08T07:14:33Z</dc:date>
    </item>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793532#M2594</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;yes i also tried something similar to this sample with the same result, error while calling the method encoder.WriteHeader(). &lt;BR /&gt;&lt;BR /&gt;I really think that uic is not able to convert YUV422.&lt;BR /&gt;&lt;BR /&gt;What is the recommended image formats for UIC Jpeg encoder? (from a performance point of view)&lt;BR /&gt;&lt;BR /&gt;best regards,&lt;BR /&gt;Pascal</description>
      <pubDate>Mon, 11 Jul 2011 09:42:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793532#M2594</guid>
      <dc:creator>pas059</dc:creator>
      <dc:date>2011-07-11T09:42:21Z</dc:date>
    </item>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793533#M2595</link>
      <description>&lt;P&gt;Pascal, &lt;/P&gt;&lt;P&gt;Check the following code in the function:&lt;/P&gt;&lt;P&gt;if(JPEG_LOSSLESS == param.mode)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;if(param.sampling != 0) // JS_444 only for lossless mode&lt;/P&gt;&lt;P&gt;return IE_AIMAGE;&lt;/P&gt;&lt;P&gt;param.color = (nOfComponents == 1) ? JC_GRAY : (nOfComponents == 3) ? JC_RGB : JC_CMYK;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;param.color = (nOfComponents == 1) ? JC_GRAY : (nOfComponents == 3) ? JC_YCBCR : JC_CMYK;&lt;/P&gt;&lt;P&gt;If it is three channel loss compression, it takes YCbCr format (YUV420). For other format, you need convert the color first. &lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;chao &lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2011 01:27:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793533#M2595</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-07-14T01:27:21Z</dc:date>
    </item>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793534#M2596</link>
      <description>Hi Chao,&lt;BR /&gt;&lt;BR /&gt;sorry for the late reply.&lt;BR /&gt;But i had decided to stop using UIC. Nevertheless, i had verified your suggestion.... without success.&lt;BR /&gt;Fortunately, i found another sample called 3d-viewer in the directory ipp-samples\realistic-rendering; this sample contains a project called jpegcodec; the code inside this project has many "similitudes" with the one of UIC jpeg codec. I restarted from this project, i builded a dll and tried to used it in my applications .... with success and in a short time. My first objective was to evaluate the performances of a jpeg codec and i was unable to do it with uic. For cons, i have done it relativelyeasilywith pureIPP code. And as the observedperformances correspond to my expectations, my choice is done: IPP only.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;Pascal</description>
      <pubDate>Wed, 20 Jul 2011 16:33:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793534#M2596</guid>
      <dc:creator>pas059</dc:creator>
      <dc:date>2011-07-20T16:33:22Z</dc:date>
    </item>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793535#M2597</link>
      <description>Hi Pascal,&lt;BR /&gt;&lt;BR /&gt;JPEG implementation found in 3d viewer sample is a few generation back base code we use to implement UIC framework. As far as we test there is no significant performance difference in JPEG code from 3d viewer and UIC. But our focus is solely on UIC framework support, so you may find there are some improvements and bug fixes available in UIC code only.&lt;BR /&gt;&lt;BR /&gt;To simplify UIC benchmarking we also provide precompiled UIC applications (uic_transcoder_con is one of them and should be a good fit for benchmarking purposes).&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir</description>
      <pubDate>Mon, 01 Aug 2011 07:25:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793535#M2597</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2011-08-01T07:25:15Z</dc:date>
    </item>
    <item>
      <title>uic jpec encoder</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793536#M2598</link>
      <description>Hi Vladimir,&lt;BR /&gt;&lt;BR /&gt;as i explained in my previous mails, i did not succeed with uic (despite many tries)and the supplied uic application crashes on my machines; so, from my point of view, there is more problems with uic than with the implementation in 3d viewer. I'm sure that uic works, but i did not have the "good user manual". As the implementation in 3d viewer responds to my expectations, i use it. &lt;BR /&gt;Regards,&lt;BR /&gt;Pascal</description>
      <pubDate>Mon, 01 Aug 2011 16:30:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/uic-jpec-encoder/m-p/793536#M2598</guid>
      <dc:creator>pas059</dc:creator>
      <dc:date>2011-08-01T16:30:17Z</dc:date>
    </item>
  </channel>
</rss>

