mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
omx: also reset nFilledLen before calling OMX_FillThisBuffer()
The spec states that the buffer passed to OMX_FillThisBuffer() needs to be empty. Some implementation may check it actually is by checking its nFilledLen field, so best to reset it as well. https://bugzilla.gnome.org/show_bug.cgi?id=785623
This commit is contained in:
parent
86d9a2c81c
commit
7a0949b750
1 changed files with 3 additions and 1 deletions
|
@ -2078,9 +2078,11 @@ gst_omx_port_populate_unlocked (GstOMXPort * port)
|
|||
|
||||
/* Reset all flags, some implementations don't
|
||||
* reset them themselves and the flags are not
|
||||
* valid anymore after the buffer was consumed
|
||||
* valid anymore after the buffer was consumed.
|
||||
* Also reset nFilledLen as FillThisBuffer() expects an empty buffer.
|
||||
*/
|
||||
buf->omx_buf->nFlags = 0;
|
||||
buf->omx_buf->nFilledLen = 0;
|
||||
|
||||
err = OMX_FillThisBuffer (comp->handle, buf->omx_buf);
|
||||
|
||||
|
|
Loading…
Reference in a new issue