<?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 Maybe helpful, UMC &amp; Direct X in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787068#M2094</link>
    <description>&lt;P&gt;Detlef,&lt;/P&gt;&lt;P&gt;Thanks for sharing it. I think it is very useful for those who are using the render code. &lt;/P&gt;&lt;P&gt;best,&lt;BR /&gt;Chao&lt;/P&gt;</description>
    <pubDate>Fri, 25 Nov 2011 01:49:50 GMT</pubDate>
    <dc:creator>Chao_Y_Intel</dc:creator>
    <dc:date>2011-11-25T01:49:50Z</dc:date>
    <item>
      <title>Maybe helpful, UMC &amp; Direct X</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787067#M2093</link>
      <description>Hi @all,&lt;BR /&gt;&lt;BR /&gt;i don't konw if anybody is interessted by this theme, but i had the problem to show the video output under 16, 24 and 32 bit grifik-cards under windows.&lt;BR /&gt;&lt;BR /&gt;So i made some changes in the umc, maybe its helpfull for someone:&lt;BR /&gt;&lt;BR /&gt;1) Extentumc_dx_overlay_formats in dx_drv.cpp to this:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;constDDPIXELFORMATumc_dx_overlay_formats[]=
{
{sizeof(DDPIXELFORMAT),DDPF_FOURCC|DDPF_YUV,MAKEFOURCC('Y','V','1','2'),12,0,0,0,0},/*YV12*/
{sizeof(DDPIXELFORMAT),DDPF_FOURCC|DDPF_YUV,MAKEFOURCC('Y','U','Y','2'),16,0,0,0,0},/*YUY2*/
{sizeof(DDPIXELFORMAT),DDPF_FOURCC|DDPF_YUV,MAKEFOURCC('U','Y','V','Y'),16,0,0,0,0},/*UYVY*/
{sizeof(DDPIXELFORMAT),DDPF_FOURCC|DDPF_YUV,MAKEFOURCC('N','V','1','2'),12,0,0,0,0},/*NV12*/
    {sizeof(DDPIXELFORMAT),DDPF_RGB,0,16,0x00007C00,0x000003E0,0x0000001F,0},				/*RGB555*/
{sizeof(DDPIXELFORMAT),DDPF_RGB,0,16,0xf800,0x07e0,0x001f,0},/*RGB565*/
    {sizeof(DDPIXELFORMAT),DDPF_RGB,0,24,0x00FF0000,0x0000FF00,0x000000FF,0},/*RGB24*/
    {sizeof(DDPIXELFORMAT),DDPF_RGB,0,32,0x00FF0000,0x0000FF00,0x000000FF,0}/*RGB32*/
};
2) extend in dx_drv.h the DDVideoDrvColorFomat to this:&lt;BR /&gt;&lt;PRE&gt;typedefenumDDVideoDrvColorFormat
{
DXVideoDrv_YV12=0,
DXVideoDrv_YUY2=1,
DXVideoDrv_UYVY=2,
DXVideoDrv_NV12=3,
    DXVideoDrv_RGB555=4,
DXVideoDrv_RGB565=5,
    DXVideoDrv_RGB24	=6,
    DXVideoDrv_RGB32	=7
 
}DDVideoDrvColorFormat;&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3) add in blt_video_render.cpp (for example) in the Init function:&lt;BR /&gt;&lt;PRE&gt;		caseRGB555:
			DrvParams.dd_fmt=DXVideoDrv_RGB555;
			break;
		caseRGB32:
			DrvParams.dd_fmt=DXVideoDrv_RGB32;
			break;
		caseRGB24:
			DrvParams.dd_fmt=DXVideoDrv_RGB24;
			break;&lt;BR /&gt;Now you can initialize UMC::AVSync also with RGB555, RGB24 &amp;amp; RGB32 
&lt;/PRE&gt;&lt;BR /&gt;It works fine, best Regards&lt;BR /&gt;Detlef&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Nov 2011 18:17:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787067#M2093</guid>
      <dc:creator>detlef_stralaudynami</dc:creator>
      <dc:date>2011-11-24T18:17:40Z</dc:date>
    </item>
    <item>
      <title>Maybe helpful, UMC &amp; Direct X</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787068#M2094</link>
      <description>&lt;P&gt;Detlef,&lt;/P&gt;&lt;P&gt;Thanks for sharing it. I think it is very useful for those who are using the render code. &lt;/P&gt;&lt;P&gt;best,&lt;BR /&gt;Chao&lt;/P&gt;</description>
      <pubDate>Fri, 25 Nov 2011 01:49:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787068#M2094</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2011-11-25T01:49:50Z</dc:date>
    </item>
    <item>
      <title>Very useful! I'm confusing</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787069#M2095</link>
      <description>&lt;P&gt;Very useful! I'm confusing with the DDPIXELFORMAT struct. Thanks for sharing it.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Nov 2014 03:13:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Maybe-helpful-UMC-Direct-X/m-p/787069#M2095</guid>
      <dc:creator>Letian_Yi</dc:creator>
      <dc:date>2014-11-29T03:13:35Z</dc:date>
    </item>
  </channel>
</rss>

