Kodi Community Forum
HELP PLS to fix - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Windows (https://forum.kodi.tv/forumdisplay.php?fid=59)
+---- Thread: HELP PLS to fix (/showthread.php?tid=123388)



HELP PLS to fix - daminbn - 2012-02-19

how to fix this

21:36:58 T:2636 M:878018560 ERROR: CDVDInputStreamHTSP::ReadResult - maximum queue size (1000) reached
21:36:58 T:2636 M:878018560 ERROR: CDVDPlayer::OpenInputStream - error opening [htsp://..............:9982/tags/25/572.ts]
21:36:58 T:2636 M:878018560 NOTICE: CDVDPlayer::OnExit()
21:36:58 T:2636 M:878018560 NOTICE: CDVDPlayer::OnExit() deleting input stream
21:36:58 T:1532 M:877998080 ERROR: Playlist Player: skipping unplayable item: 0, path [htsp://........................:9982/tags/25/572.ts]
21:36:58 T:1532 M:877944832 NOTICE: CDVDPlayer::CloseFile()


- jhsrennie - 2012-02-20

Enable debug logging from System settings, System, Debugging, and restart XBMC then wait a minute or two for all the startup tasks to finish. Try and play whatever is giving you the problem, then close XBMC.

Open the debug log by pressing Windows-R and in the Run dialog type:

"%appdata%\xbmc\xbmc.log"

(including the quotes). Click OK and the log should open in Notepad. Copy and paste the log into http://pastebin.com/ and post the link it gives you here.

JR


- daminbn - 2012-02-20

http://pastebin.com/b04Ht3eh


RE: HELP PLS to fix - daminbn - 2012-03-23

PLS HEELP


RE: HELP PLS to fix - jhsrennie - 2012-03-23

I don't know the TVHeadend code, but the error is happening here: https://github.com/xbmc/xbmc/blob/master/xbmc/filesystem/HTSPSession.cpp#L379

XBMC is detecting a buffer overflow reading data back from the TVHeadend server. The queue size limit is 1,000 items, and this is compiled in and can't be configured. You could try building yourself a custom version with the queue size increased to e.g. 10,000.

JR