i confirm it is needed at least for the HTC Desire.<br><br><div class="gmail_quote">On Tue, Oct 11, 2011 at 10:34 AM, Martin Storsjö <span dir="ltr"><<a href="mailto:martin@martin.st">martin@martin.st</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">From: Ming Hu <<a href="mailto:tewilove@gmail.com">tewilove@gmail.com</a>><br>
<br>
This fixes trac ticket 5393.<br>
---<br>
<br>
This is not nice, but needed with the current buffer size<br>
allocation strategy in the omxil module.<br>
<br>
Currently, input buffers are allocated as 2*width*height<br>
bytes, which is too much for this decoder at high resolutions.<br>
<br>
 modules/codec/omxil/omxil.c |   10 ++++++++++<br>
 1 files changed, 10 insertions(+), 0 deletions(-)<br>
<br>
diff --git a/modules/codec/omxil/omxil.c b/modules/codec/omxil/omxil.c<br>
index 3bbf5a0..717a99a 100644<br>
--- a/modules/codec/omxil/omxil.c<br>
+++ b/modules/codec/omxil/omxil.c<br>
@@ -264,6 +264,16 @@ static OMX_ERRORTYPE ImplementationSpecificWorkarounds(decoder_t *p_dec,<br>
             def->format.video.xFramerate >>= 16;<br>
         }<br>
     }<br>
+    else if (!strncmp(p_sys->psz_component, "OMX.qcom.video.decoder.",<br>
+                      strlen("OMX.qcom.video.decoder")))<br>
+    {<br>
+        /* qdsp6 refuses buffer size larger than 450K on input port */<br>
+        if (def->nBufferSize > 450 * 1024)<br>
+        {<br>
+            def->nBufferSize = 450 * 1024;<br>
+            p_port->i_frame_size = def->nBufferSize;<br>
+        }<br>
+    }<br>
<br>
     return OMX_ErrorNone;<br>
 }<br>
<font color="#888888">--<br>
1.7.2.5<br>
<br>
_______________________________________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="http://mailman.videolan.org/listinfo/vlc-devel" target="_blank">http://mailman.videolan.org/listinfo/vlc-devel</a><br>
</font></blockquote></div><br>