<?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: Trying to encode H.264 files.</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189258#M9288</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What model is your Camera?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have an HD microsoft camera and it gives us YUV format with very good results&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you considered using other camera?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Nov 2012 17:05:12 GMT</pubDate>
    <dc:creator>FranciscoCarril</dc:creator>
    <dc:date>2012-11-28T17:05:12Z</dc:date>
    <item>
      <title>Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189257#M9287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My name is Ricardo, and recently I'm working on a board based on a i.MX53 module. I'm using the 11.09 BSP and IMX_MMCODECS releases. As says the title, I'm trying to encode H.264 files from a USB camera using the VPU-based gstreamer plugins. Through several researches and a lot of pipelines, we discovered some issues:&lt;/P&gt;&lt;P&gt;1. The USB camera provides jpeg data(image/jpeg), so we couldn't use &lt;EM&gt;mfw_v4lsrc&lt;/EM&gt;, that is for data in raw format(video/x-raw-yuv).&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; In order to encode, we need first to decode to raw video and change the PixelFormat(Y42B to NV12). This is a important thing to do, because, despite the information of gst-inspect, the &lt;EM&gt;mfw_vpuencoder&lt;/EM&gt; doesn't work with Y42B pixelformat.&lt;/P&gt;&lt;P&gt;3. After that, we encode to H.264 using &lt;EM&gt;mfw_vpuencoder&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the working pipeline:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gst-launch v4l2src device=/dev/video0&amp;nbsp; ! image/jpeg,width=1280,height=720,framerate=15/1 ! mfw_vpudecoder codec_type=std_mjpg loopback=true ! video/x-raw-yuv,format=\(fourcc\)Y42B ! ffmpegcolorspace ! video/x-raw-yuv,format=\(fourcc\)NV12&amp;nbsp; ! mfw_vpuencoder loopback=true codec-type=std_avc ! avimux ! filesink location=teste.avi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it works, it's not the better way. Because we need to use the ffmpegcolorspace plugin, the CPU usage reaches 80%. We tried to use the IPU Colorspace Plugin (&lt;EM&gt;mfw_ipucsc&lt;/EM&gt;), but it it doesn't accept Y42B frames as input. We tried several ways to force the VPU decoder to output frames in I420 or NV12 format, but we failed all the times. Our approaches:&lt;/P&gt;&lt;P&gt;1. Set the fmt parameter of &lt;EM&gt;mfw_vpudecoder&lt;/EM&gt; to 1. It supposed to generate I420 formats;&lt;/P&gt;&lt;P&gt;2. Put a caps after the decoder;&lt;/P&gt;&lt;P&gt;3. Instead of use &lt;EM&gt;mfw_ipucsc&lt;/EM&gt;, use &lt;EM&gt;mfw_deinterlacer&lt;/EM&gt;. Doesn't work too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some pipelines and its debugs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gst-launch -vvv v4l2src device=/dev/video0 ! image/jpeg,width=1280,height=720,framerate=15/1 ! mfw_vpudecoder codec_type=std_mjpg ! mfw_deinterlacer chrom-fmt=0 ! fakesink&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting pipeline to PAUSED ...&lt;/P&gt;&lt;P&gt;[INFO]&amp;nbsp; Product Info: i.MX53&lt;/P&gt;&lt;P&gt;VPU Version: firmware 13.4.32; libvpu: 5.1.4 &lt;/P&gt;&lt;P&gt;MFW_GST_VPU_DECODER_PLUGIN 2.0.3 build on Jul 13 2012 06:30:57.&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstV4l2Src:v4l2src0.GstPad:src: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;Pipeline is live and does not need PREROLL ...&lt;/P&gt;&lt;P&gt;Setting pipeline to PLAYING ...&lt;/P&gt;&lt;P&gt;New clock: GstSystemClock&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:src: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:sink: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:sink: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:src: caps = video/x-raw-yuv, format=(fourcc)Y42B, width=(int)1280, height=(int)720, width_align=(int)16, height_align=(int)16,0&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:src: caps = video/x-raw-yuv, format=(fourcc)Y42B, width=(int)1280, height=(int)720, width_align=(int)16, height_align=(int)16,0&lt;/P&gt;&lt;P&gt;Deinterlacer default input format is I420&lt;/P&gt;&lt;P&gt;Deinterlacer default input format is I420&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstDeinterlace:mfwgstdeinterlace0.GstPad:src: caps = video/x-raw-yuv, format=(fourcc)Y42B, width=(int)1280, height=(int)720, width_align=(int)16, height_align=0&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstDeinterlace:mfwgstdeinterlace0.GstPad:src: caps = video/x-raw-yuv, format=(fourcc)Y42B, width=(int)1280, height=(int)720, width_align=(int)16, height_align=0&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstDeinterlace:mfwgstdeinterlace0.GstPad:sink: caps = video/x-raw-yuv, format=(fourcc)Y42B, width=(int)1280, height=(int)720, width_align=(int)16, height_align0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gst-launch -vvv v4l2src device=/dev/video0 ! image/jpeg,width=1280,height=720,framerate=15/1 ! mfw_vpudecoder codec_type=std_mjpg fmt=1 ! mfw_ipucsc ! fakesink&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IPU_CSC_CORE_LIBRARY_VERSION_INFOR_01.00.&lt;/P&gt;&lt;P&gt;MFW_GST_IPU_CSC_PLUGIN 2.0.3 build on Jul 13 2012 06:30:48.&lt;/P&gt;&lt;P&gt;Setting pipeline to PAUSED ...&lt;/P&gt;&lt;P&gt;[INFO]&amp;nbsp; Product Info: i.MX53&lt;/P&gt;&lt;P&gt;VPU Version: firmware 13.4.32; libvpu: 5.1.4 &lt;/P&gt;&lt;P&gt;MFW_GST_VPU_DECODER_PLUGIN 2.0.3 build on Jul 13 2012 06:30:57.&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstV4l2Src:v4l2src0.GstPad:src: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;Pipeline is live and does not need PREROLL ...&lt;/P&gt;&lt;P&gt;Setting pipeline to PLAYING ...&lt;/P&gt;&lt;P&gt;New clock: GstSystemClock&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:src: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:sink: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:sink: caps = image/jpeg, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:src: caps = video/x-raw-yuv, format=(fourcc)Y42B, width=(int)1280, height=(int)720, width_align=(int)16, height_align=(int)16,0&lt;/P&gt;&lt;P&gt;ERROR: from element /GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0: fatal error&lt;/P&gt;&lt;P&gt;Additional debug info:&lt;/P&gt;&lt;P&gt;Allocation of the Frame Buffers Failed&lt;/P&gt;&lt;P&gt;Execution ended after 11049559049 ns.&lt;/P&gt;&lt;P&gt;Setting pipeline to PAUSED ...&lt;/P&gt;&lt;P&gt;Setting pipeline to READY ...&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:src: caps = NULL&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/MfwGstVPU_Dec:mfwgstvpu_dec0.GstPad:sink: caps = NULL&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:src: caps = NULL&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:sink: caps = NULL&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstV4l2Src:v4l2src0.GstPad:src: caps = NULL&lt;/P&gt;&lt;P&gt;Setting pipeline to NULL ...&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;&amp;gt;&amp;gt;VPU_DEC: State: Ready to Null&lt;/P&gt;&lt;P&gt;Freeing pipeline ...&lt;/P&gt;&lt;P&gt;[---&amp;gt;FINALIZE vpu_dec&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see, I can't generate another format different of Y42B. &lt;/P&gt;&lt;P&gt;Somebody knows a better way to link these plugins?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Ricardo Gurgel.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2012 14:34:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189257#M9287</guid>
      <dc:creator>ricardo_ioct</dc:creator>
      <dc:date>2012-11-27T14:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189258#M9288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What model is your Camera?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have an HD microsoft camera and it gives us YUV format with very good results&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you considered using other camera?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 17:05:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189258#M9288</guid>
      <dc:creator>FranciscoCarril</dc:creator>
      <dc:date>2012-11-28T17:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189259#M9289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, we might change our camera, if it works. We're using a USB camera based on a OV519 chip, that generates MJPEG datastream. What camera are you using? It's USB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Att.,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 17:17:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189259#M9289</guid>
      <dc:creator>ricardo_ioct</dc:creator>
      <dc:date>2012-11-28T17:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189260#M9290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a Microsoft lifeCam usb camera,&amp;nbsp; we have tested it with i.MX53 and i.MX6&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 17:23:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189260#M9290</guid>
      <dc:creator>FranciscoCarril</dc:creator>
      <dc:date>2012-11-28T17:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189261#M9291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! It would be very helpful if you could ran this pipeline for me and post the output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gst-launch -vvv v4l2src ! fakesink&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The messages after "&lt;EM&gt;New clock: GstSystemClock" doesn't matter. After that, you can kill the pipeline.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, thank you for the answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 17:31:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189261#M9291</guid>
      <dc:creator>ricardo_ioct</dc:creator>
      <dc:date>2012-11-28T17:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189262#M9292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;gst-launch -vvv v4l2src ! fakesink&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;Setting pipeline to PAUSED ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;/GstPipeline:pipeline0/&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;GstV4l2Src:v4l2src0.GstPad:&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;src: caps = video/x-raw-rgb, bpp=(int)24, depth=(int)24, red_mask=(int)255, green_mask=(int)65280, blue_mask=(int)16711680, endianness=(int)4321, width=(int)1280, height=(int)800, framerate=(fraction)10/1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;Pipeline is live and does not need PREROLL ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;Setting pipeline to PLAYING ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px; background-color: #ffffff;"&gt;New clock: GstSystemClock&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 18:53:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189262#M9292</guid>
      <dc:creator>FranciscoCarril</dc:creator>
      <dc:date>2012-11-28T18:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189263#M9293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting. As default, the camera provides datastream on 'video/x-raw-rgb' format, but, if necessary, are you able to generate 'video/x-raw-yuv' datastream? It could be a pipeline like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gst-launch v4l2src ! 'video/x-raw-yuv,width=1280,height=720,framerate=15/1' ! fakesink ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 19:10:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189263#M9293</guid>
      <dc:creator>ricardo_ioct</dc:creator>
      <dc:date>2012-11-28T19:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189264#M9294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gst-launch -vvv v4l2src ! 'video/x-raw-yuv,width=1280,height=720,framerate=15/1' ! fakesink&lt;/P&gt;&lt;P&gt;Setting pipeline to PAUSED ...&lt;/P&gt;&lt;P&gt;/GstPipeline:pipeline0/GstV4l2Src:v4l2src0.GstPad:src: caps = video/x-raw-yuv, format=(fourcc)YV12, width=(int)1280, height=(int)720, framerate=(fraction)15/1&lt;/P&gt;&lt;P&gt;Pipeline is live and does not need PREROLL ...&lt;/P&gt;&lt;P&gt;Setting pipeline to PLAYING ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 19:29:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189264#M9294</guid>
      <dc:creator>FranciscoCarril</dc:creator>
      <dc:date>2012-11-28T19:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189265#M9295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, it's very good to know about these cameras. Just to confirm, do you ran these pipelines on i.MX53 QSB or on PC? Francisco, I'd like to thank you again by your test, it will help me a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 12:22:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189265#M9295</guid>
      <dc:creator>ricardo_ioct</dc:creator>
      <dc:date>2012-11-29T12:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to encode H.264 files.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189266#M9296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&amp;nbsp; you are welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every pipeline was executed on i.MX53 QSB running ubuntu demo image. So it can be replicated in your board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Francisco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 14:24:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Trying-to-encode-H-264-files/m-p/189266#M9296</guid>
      <dc:creator>FranciscoCarril</dc:creator>
      <dc:date>2012-11-29T14:24:42Z</dc:date>
    </item>
  </channel>
</rss>

