![]() |
Buffer size in Video Player? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93) +--- Thread: Buffer size in Video Player? (/showthread.php?tid=325145) |
Buffer size in Video Player? - elgatito - 2017-12-06 Hey. I'm testing a plugin and noticed that on different OS Kodi is expecting different buffer sizes. I'm only taking into account default configurations, without advancedsettings modifications. Looking into the code, but not so familiar with c++, so it's hard to trace buffer size setters. Talking about the one buffer size, which is expected when this message is thrown: Quote:WARNING: CRenderManager::WaitForBuffer - timeout waiting for bufferCan you give some advice where to look? Am I correct there is no RPC/Python call to get current buffer setting? RE: Buffer size in Video Player? - elgatito - 2017-12-15 Looks like it's Player related stuff, so currently i'm exploring VideoPlayer, but still can't find relevant place in the code. Have a feeling that media type of video is influencing as well. RE: Buffer size in Video Player? - FernetMenta - 2017-12-16 The size of the render buffers depend on the decoder and renderer. The warning indicates that there is no free buffer. The main reason for this warning is that something blocks the main/render thread. |