<?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>i.MX ProcessorsのトピックRe: tp2825 video decode with cvbs</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776623#M120569</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;主控mx6q与解码芯片tp2825上VDI如何配置？&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2018 09:26:42 GMT</pubDate>
    <dc:creator>xiaojunye</dc:creator>
    <dc:date>2018-04-13T09:26:42Z</dc:date>
    <item>
      <title>tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776614#M120560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1: Now i &amp;nbsp;use tp2825 on imx6q with android. The kenel version is 3.0.35.&lt;/P&gt;&lt;P&gt;2: 720p cvbs camera is ok &amp;nbsp;on &amp;nbsp;the same board with tp2825&amp;nbsp;&lt;/P&gt;&lt;P&gt;3: For the tp2825, the input &amp;nbsp; single is &amp;nbsp;cvbs camera with NTSC ,which is interlaced and resolution is 720*480,The output is BT656 with 8 bits.&lt;/P&gt;&lt;P&gt;4: &amp;nbsp;In decode ic &amp;nbsp;tp2825 driver, i &amp;nbsp;get the BT656 data and output it to LCD.,but the image id scrolling. Is it wrong with tp2825 register in driver or drawing data to LCD in mxc_v4l2_tvin.c ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in driver file tp2825.c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static video_fmt_t video_fmts[] = {&lt;BR /&gt; { /*! NTSC */&lt;BR /&gt; .v4l2_id = V4L2_STD_NTSC,&lt;BR /&gt; .name = "NTSC",&lt;BR /&gt; .raw_width = 720, /* SENS_FRM_WIDTH */&lt;BR /&gt; .raw_height = 525, /* SENS_FRM_HEIGHT */&lt;BR /&gt; .active_width = 720, /* ACT_FRM_WIDTH plus 1 */&lt;BR /&gt; .active_height = 480, /* ACT_FRM_WIDTH plus 1 */&lt;BR /&gt; .frame_rate = 30, /* 30 */&lt;BR /&gt; },&lt;BR /&gt; { /*! (B, G, H, I, N) PAL */&lt;BR /&gt; .v4l2_id = V4L2_STD_PAL,&lt;BR /&gt; .name = "PAL",&lt;BR /&gt; .raw_width = 720,&lt;BR /&gt; .raw_height = 625,&lt;BR /&gt; .active_width = 720,&lt;BR /&gt; .active_height = 576,&lt;BR /&gt; .frame_rate = 25,&lt;BR /&gt; },&lt;BR /&gt; { /*! Unlocked standard */&lt;BR /&gt; .v4l2_id = V4L2_STD_ALL,&lt;BR /&gt; .name = "Autodetect",&lt;BR /&gt; .raw_width = 720,&lt;BR /&gt; .raw_height = 625,&lt;BR /&gt; .active_width = 720,&lt;BR /&gt; .active_height = 576,&lt;BR /&gt; .frame_rate = 25,&lt;BR /&gt; },&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static int ioctl_g_ifparm(struct v4l2_int_device *s, struct v4l2_ifparm *p)&lt;BR /&gt;{&lt;BR /&gt; dev_dbg(&amp;amp;tp2825_data.sen.i2c_client-&amp;gt;dev, "adv7180:ioctl_g_ifparm\n");&lt;/P&gt;&lt;P&gt;if (s == NULL) {&lt;BR /&gt; pr_err(" ERROR!! no slave device set!\n");&lt;BR /&gt; return -1;&lt;BR /&gt; }&lt;BR /&gt; memset(p, 0, sizeof(*p));&lt;BR /&gt; p-&amp;gt;if_type = V4L2_IF_TYPE_BT656;&amp;nbsp;&lt;BR /&gt; p-&amp;gt;u.bt656.mode = V4L2_IF_TYPE_BT656_MODE_NOBT_8BIT;&lt;BR /&gt; #if 1&lt;BR /&gt; p-&amp;gt;u.bt656.nobt_hs_inv = 0;&lt;BR /&gt; p-&amp;gt;u.bt656.bt_sync_correct = 0;&lt;BR /&gt; p-&amp;gt;u.bt656.clock_curr = 0; /* interlace clock mode orig = 0 */&lt;BR /&gt; p-&amp;gt;u.bt656.latch_clk_inv =1;&lt;BR /&gt; #else&lt;BR /&gt; p-&amp;gt;u.bt656.nobt_hs_inv = 1;&lt;BR /&gt; p-&amp;gt;u.bt656.bt_sync_correct = 1;&lt;BR /&gt; #endif&lt;BR /&gt; return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static int tp2825_probe(struct i2c_client *client,const struct i2c_device_id *id)&lt;/P&gt;&lt;P&gt;{ .................................................................................................&lt;/P&gt;&lt;P&gt;video_idx = TP2825_NTSC;&amp;nbsp;&lt;BR /&gt; tp2825_data.sen.pix.width = video_fmts[video_idx].raw_width;&lt;BR /&gt; tp2825_data.sen.pix.height = video_fmts[video_idx].raw_height;&lt;BR /&gt; tp2825_data.sen.pix.pixelformat = V4L2_PIX_FMT_UYVY; /* YUV422 */&lt;BR /&gt; tp2825_data.sen.pix.priv = 1; /* 1 is used to indicate TV in */&lt;BR /&gt; tp2825_data.sen.on = true;&lt;/P&gt;&lt;P&gt;tp2825_data.sen.mclk = 74250000;&lt;/P&gt;&lt;P&gt;tp2825_data.sen.sensor_clk = clk_get(NULL, "csi_mclk");&lt;/P&gt;&lt;P&gt;tp2825_data.sen.mclk_source = 0;&lt;BR /&gt; tp2825_data.sen.csi = 0;&lt;/P&gt;&lt;P&gt;..............................................................................................&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in camera driver:&lt;/P&gt;&lt;P&gt;static video_fmt_t video_fmts[] = {&lt;BR /&gt; { /*! NTSC */&lt;BR /&gt; .v4l2_id = V4L2_STD_NTSC,&lt;BR /&gt; .name = "NTSC",&lt;BR /&gt; .raw_width = 720, /* SENS_FRM_WIDTH */&lt;BR /&gt; .raw_height = 525, /* SENS_FRM_HEIGHT */&lt;BR /&gt; .active_width = 720, /* ACT_FRM_WIDTH */&lt;BR /&gt; .active_height = 480, /* ACT_FRM_HEIGHT */&lt;BR /&gt; .active_top = 13,//13&lt;BR /&gt; .active_left = 0,&lt;BR /&gt; },&lt;BR /&gt; { /*! (B, G, H, I, N) PAL */&lt;BR /&gt; .v4l2_id = V4L2_STD_PAL,&lt;BR /&gt; .name = "PAL",&lt;BR /&gt; .raw_width = 720,&lt;BR /&gt; .raw_height = 625,&lt;BR /&gt; .active_width = 720,&lt;BR /&gt; .active_height = 576,&lt;BR /&gt; .active_top = 0,&lt;BR /&gt; .active_left = 0,&lt;BR /&gt; },&lt;BR /&gt; { /*! Unlocked standard */&lt;BR /&gt; .v4l2_id = V4L2_STD_ALL,&lt;BR /&gt; .name = "Autodetect",&lt;BR /&gt; .raw_width = 720,&lt;BR /&gt; .raw_height = 625,&lt;BR /&gt; .active_width = 720,&lt;BR /&gt; .active_height = 576,&lt;BR /&gt; .active_top = 0,&lt;BR /&gt; .active_left = 0,&lt;BR /&gt; },&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;static int mxc_v4l2_s_param(cam_data *cam, struct v4l2_streamparm *parm)&lt;BR /&gt;{ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;............................&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (ifparm.u.bt656.clock_curr == 0)&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;csi_param.clk_mode = IPU_CSI_CLK_MODE_CCIR656_INTERLACED ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.................................&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static int init_camera_struct(cam_data *cam, struct platform_device *pdev)&lt;/P&gt;&lt;P&gt;{ ............................&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cam-&amp;gt;crop_bounds.left = 0;&lt;BR /&gt; cam-&amp;gt;crop_bounds.width = 720;&lt;BR /&gt; cam-&amp;gt;crop_bounds.top = 0;&lt;BR /&gt; cam-&amp;gt;crop_bounds.height = 480;&lt;BR /&gt; cam-&amp;gt;crop_current = cam-&amp;gt;crop_defrect = cam-&amp;gt;crop_bounds;&lt;BR /&gt; ipu_csi_set_window_size(cam-&amp;gt;ipu, cam-&amp;gt;crop_current.width,&lt;BR /&gt; cam-&amp;gt;crop_current.height, cam-&amp;gt;csi);&lt;BR /&gt; ipu_csi_set_window_pos(cam-&amp;gt;ipu, cam-&amp;gt;crop_current.left,&lt;BR /&gt; cam-&amp;gt;crop_current.top, cam-&amp;gt;csi);&lt;BR /&gt; cam-&amp;gt;streamparm.parm.capture.capturemode = 0;&lt;/P&gt;&lt;P&gt;cam-&amp;gt;standard.index = 0;&lt;BR /&gt; cam-&amp;gt;standard.id = V4L2_STD_UNKNOWN;&lt;BR /&gt; cam-&amp;gt;standard.frameperiod.denominator = 30;&lt;BR /&gt; cam-&amp;gt;standard.frameperiod.numerator = 1;&lt;BR /&gt; cam-&amp;gt;standard.framelines = 480;&lt;BR /&gt; cam-&amp;gt;standard_autodetect = true;&lt;BR /&gt; cam-&amp;gt;streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;&lt;BR /&gt; cam-&amp;gt;streamparm.parm.capture.timeperframe = cam-&amp;gt;standard.frameperiod;&lt;BR /&gt; cam-&amp;gt;streamparm.parm.capture.capability = V4L2_CAP_TIMEPERFRAME;&lt;BR /&gt; cam-&amp;gt;overlay_on = false;&lt;BR /&gt; cam-&amp;gt;capture_on = false;&lt;BR /&gt; cam-&amp;gt;v4l2_fb.flags = V4L2_FBUF_FLAG_OVERLAY;&lt;/P&gt;&lt;P&gt;cam-&amp;gt;v2f.fmt.pix.sizeimage = 720 * 480 * 2;&amp;nbsp;&lt;BR /&gt; cam-&amp;gt;v2f.fmt.pix.bytesperline =720*2;&amp;nbsp;&lt;BR /&gt; cam-&amp;gt;v2f.fmt.pix.width = 720;&lt;BR /&gt; cam-&amp;gt;v2f.fmt.pix.height = 480;&lt;BR /&gt; cam-&amp;gt;v2f.fmt.pix.pixelformat = V4L2_PIX_FMT_UYVY;&lt;BR /&gt; cam-&amp;gt;win.w.width = 720;&lt;BR /&gt; cam-&amp;gt;win.w.height = 720;&lt;BR /&gt; cam-&amp;gt;win.w.left = 0;&lt;BR /&gt; cam-&amp;gt;win.w.top = 0;&lt;/P&gt;&lt;P&gt;.................................&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my test file is &lt;SPAN&gt;mxc_v4l2_tvin.c,which is at&lt;/SPAN&gt;&amp;nbsp; externel/external/linux-test/test/mxc_v4l2_test/.&lt;/P&gt;&lt;P&gt;command:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ./mxc-v4l2-tvin -ow 1080 -oh 720 -ol 420 -ot 0 -tb -f UYVY&lt;/P&gt;&lt;P&gt;in the mxc_v4l2_tvin.c&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unsigned char arr[691200]; //add&lt;/P&gt;&lt;P&gt;int &amp;nbsp;mxc_v4l_tvin_test(void)&lt;/P&gt;&lt;P&gt;{........................................&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;int h, e, o; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if (i%2 == 0)&lt;BR /&gt; {&lt;BR /&gt; for (h = 0, e = 0; h &amp;lt; 480; h += 2, e++)&lt;BR /&gt; {&lt;BR /&gt; memcpy(&amp;amp;arr[h*1440], capture_buffers[capture_buf.index].start+e*1440, 1440);&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; for (h = 1, o = 0; h &amp;lt; 480; h += 2, o++)&lt;BR /&gt; {&lt;BR /&gt; memcpy(&amp;amp;arr[h*1440], capture_buffers[capture_buf.index].start+o*1440,1440);&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;printf("g_frame_size=%d\n",g_frame_size);&lt;BR /&gt; memcpy(output_buffers[output_buf.index].start, arr, g_frame_size);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;.........................................&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Dec 2017 08:10:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776614#M120560</guid>
      <dc:creator>xiaojunye</dc:creator>
      <dc:date>2017-12-09T08:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776615#M120561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Xiaojun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 如果出现滚屏的现象，一般是2个原因造成的：&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;（1）camera端和CPU CSI端，数据格式没有对应好。&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;比如camera数据是PAL，CSI端是NTSC；或者反过来。都会滚屏。所以，你在mxc_v4l2_capture.c中跟踪一下进来的格式。&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;（2）CSI端接收的image分辨率要是偶数行。&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;比如，曾经遇到过一位客户CSI接收到的分辨率是720x507的，就滚屏了。&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;另外，在我们的BSP中，AV7180已经非常成熟了，你完全可以参考它的driver来配置你的decoder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIC Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2017 03:14:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776615#M120561</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2017-12-12T03:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776616#M120562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Wigros Sun,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;现在已经确认：&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1：480i的cvbs的输入，tp2825只能输出960*480与1920*480两种分辨率。这点与adv7180不同。&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2：imx6q去隔行信号支持只支持480i30,576i25,1080i30。&lt;/P&gt;&lt;P&gt;应该是分辨率不匹配导致视频滚动，需要imx6q这边需要增加什么配置才能支持720*480输入。&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 13:13:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776616#M120562</guid>
      <dc:creator>xiaojunye</dc:creator>
      <dc:date>2017-12-14T13:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776617#M120563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;xiaojun,&lt;/P&gt;&lt;P&gt;我也在项目中经历了TP2825解码480i的信号,输出到imx6的情况,如果不开去隔行, 可以调出显示正常的隔行信号,不滚屏, 但是,始终都没法很好的去隔行, 论坛里的各种patch都试了, 经VDI处理之后的图像,还是有锯齿, 不知道你这边配置经VDI处理了没有.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2018 01:50:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776617#M120563</guid>
      <dc:creator>feifeihu</dc:creator>
      <dc:date>2018-02-05T01:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776618#M120564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Fei,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;我这边没有配置VDI。&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 我这边显示有雪花，你那边480i显示效果如何？&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 04:04:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776618#M120564</guid>
      <dc:creator>xiaojunye</dc:creator>
      <dc:date>2018-02-06T04:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776619#M120565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/57995i391A464B7C193649/image-size/large?v=v2&amp;amp;px=999" title="IMG_19700101_015130.jpg" alt="IMG_19700101_015130.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;没有开启VDI的效果如图. 不过我这是高版本android+kernel上调的,4.4.3+3.10.53和7.1+4.1.15,效果都这样.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 04:38:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776619#M120565</guid>
      <dc:creator>feifeihu</dc:creator>
      <dc:date>2018-02-06T04:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776620#M120566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;你那边480i的cvbs输入到tp2825，输出的经过vdi处理与没有经过vdi是否都有雪花？&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2018 02:22:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776620#M120566</guid>
      <dc:creator>xiaojunye</dc:creator>
      <dc:date>2018-02-07T02:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776621#M120567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;雪花是没有的. 但是VDI之后还是有锯齿. 如图:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/10009i68331D024E840896/image-size/large?v=v2&amp;amp;px=999" title="nnnnnnnnn.png" alt="nnnnnnnnn.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/10278i12DFE24ACB0D837D/image-size/large?v=v2&amp;amp;px=999" title="dvr.png" alt="dvr.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:42:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776621#M120567</guid>
      <dc:creator>feifeihu</dc:creator>
      <dc:date>2018-02-13T03:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776622#M120568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;你可以把你得到的画面拍照或screencap发出来看看, 我们现在画质上还没能满足客户的要求,不知道问题是在2825还是在其他方面, 我们已经尝试了imx6上能使用的deinterlace方式进行调试,选取最好的效果,也还是不如别家也是imx6+其他DVI芯片的效果.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:46:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776622#M120568</guid>
      <dc:creator>feifeihu</dc:creator>
      <dc:date>2018-02-13T03:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: tp2825 video decode with cvbs</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776623#M120569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;主控mx6q与解码芯片tp2825上VDI如何配置？&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 09:26:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/tp2825-video-decode-with-cvbs/m-p/776623#M120569</guid>
      <dc:creator>xiaojunye</dc:creator>
      <dc:date>2018-04-13T09:26:42Z</dc:date>
    </item>
  </channel>
</rss>

