<?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: i.MX6SDL VPU VPU_DecDecodeBuf error.</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350609#M48761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jamesbon,&lt;/P&gt;&lt;P&gt;is VPU error just a warning message that does NOT causes crash? Can I ignore it?&lt;/P&gt;&lt;P&gt;If I understand, in case of "&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;VPU_DecDecodeBuf failed&lt;/SPAN&gt;", some video frame is skipped and not painted on screen, isn't it?&lt;/P&gt;&lt;P&gt;Thank you again for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jan 2017 13:54:22 GMT</pubDate>
    <dc:creator>aldobiziak</dc:creator>
    <dc:date>2017-01-18T13:54:22Z</dc:date>
    <item>
      <title>i.MX6SDL VPU VPU_DecDecodeBuf error.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350607#M48759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question about i.MX6SDL VPU API.&lt;/P&gt;&lt;P&gt;When using i.MX6SDL vpudec for L3.0.35_4.1.0, the following errors were output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR&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; vpudec vpudec.c:1498:gst_vpudec_chain: Func VPU_DecDecodeBuf failed!! with ret 7&lt;/P&gt;&lt;P&gt;WARN&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;&amp;nbsp;&amp;nbsp; vpudec vpudec.c:1409:gst_vpudec_process_error:&amp;lt;vpudec0&amp;gt; error: unknown error detect&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess the downside log is caused by the upper side log, isn't it?&lt;/P&gt;&lt;P&gt;Then, could you let me know the factor to output the upper error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Satoshi Shimoda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2014 10:47:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350607#M48759</guid>
      <dc:creator>satoshishimoda</dc:creator>
      <dc:date>2014-10-24T10:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: i.MX6SDL VPU VPU_DecDecodeBuf error.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350608#M48760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Satoshi San,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The VPU_DecDecodeBuf() call internally picks an available framebuffer, and at the same time, the bufferpool release() function&lt;/P&gt;&lt;P&gt;might be returning a framebuffer to the list of available ones. So the error you are having it is cause you do not have enough frame buffer to run.&lt;/P&gt;&lt;P&gt;So you command should be video-sink="queue max-size-buffers=1 max-size-bytes=0 max-size-time=0 ! mfw_v4lsink"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently, the minimum number of free output framebuffers is 6, meaning that the num_available_framebuffers&lt;/P&gt;&lt;P&gt;counter must always be at least at that value. Combined with the maximum number of frames h.264 could require&lt;/P&gt;&lt;P&gt;with frame reordering (which is 17 frames), this means that up to 23 frames will have to be allocated with the&lt;/P&gt;&lt;P&gt;physical memory allocators. For 1080p videos, this means (23*1920*1088*12/8 / 1048576) byte ~ 69 MB.&lt;/P&gt;&lt;P&gt;(1088, because the VPU needs width and height values to be aligned to 16-pixel boundaries, and 12/8, because&lt;/P&gt;&lt;P&gt;12 bit is the bit depth for the I420 format, 12/8 is the number of bytes per pixel. While the decoder can also&lt;/P&gt;&lt;P&gt;output I42B and Y444 for motion JPEG, it won't use that many frames then, so 12 bit is still a good pick.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding the typical sizes of extra decoding buffers requested by the VPU, this sums up to 72 MB.&lt;/P&gt;&lt;P&gt;Therefore, it is recommended to make sure at least 72 MB RAM are available for a decoder instance. If multiple&lt;/P&gt;&lt;P&gt;streams need to be decoded at the same time, each one must have up to 72 MB available. This ensures the&lt;/P&gt;&lt;P&gt;decoder instance(s) can handle any kind of input stream. (In special cases the RAM usage might be&lt;/P&gt;&lt;P&gt;substantially less of course.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="js-file-line-container tab-size-8 highlight"&gt;&lt;TBODY&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jaime&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:49:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350608#M48760</guid>
      <dc:creator>jamesbone</dc:creator>
      <dc:date>2014-10-30T13:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: i.MX6SDL VPU VPU_DecDecodeBuf error.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350609#M48761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jamesbon,&lt;/P&gt;&lt;P&gt;is VPU error just a warning message that does NOT causes crash? Can I ignore it?&lt;/P&gt;&lt;P&gt;If I understand, in case of "&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;VPU_DecDecodeBuf failed&lt;/SPAN&gt;", some video frame is skipped and not painted on screen, isn't it?&lt;/P&gt;&lt;P&gt;Thank you again for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 13:54:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/i-MX6SDL-VPU-VPU-DecDecodeBuf-error/m-p/350609#M48761</guid>
      <dc:creator>aldobiziak</dc:creator>
      <dc:date>2017-01-18T13:54:22Z</dc:date>
    </item>
  </channel>
</rss>

