You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compensating timestamps a new writable buffer is created but there is no reference kept to the original buffer. This causes upstream bufferpools to try to recycle buffers but the memory isn't writable yet since other buffers are still using it. I found the issue on an iMX8 when using the imxvideoconvert_g2d plugin before gst-interpipe:
... ! imxvideoconvert_g2d ! interpipesink ...
This caused heavy CPU usage due to imxvideoconvert_g2d trying to recycle the buffers but failing and allocating new memory.
The text was updated successfully, but these errors were encountered:
When compensating timestamps a new writable buffer is created but there is no reference kept to the original buffer. This causes upstream bufferpools to try to recycle buffers but the memory isn't writable yet since other buffers are still using it. I found the issue on an iMX8 when using the imxvideoconvert_g2d plugin before gst-interpipe:
... ! imxvideoconvert_g2d ! interpipesink ...
This caused heavy CPU usage due to imxvideoconvert_g2d trying to recycle the buffers but failing and allocating new memory.
The text was updated successfully, but these errors were encountered: