Analyzing log in debug - 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) +---- Forum: VideoPlayer Development (https://forum.kodi.tv/forumdisplay.php?fid=240) +---- Thread: Analyzing log in debug (/showthread.php?tid=331482) |
Analyzing log in debug - tetramarreta - 2018-05-01 I would like to know the reason for the logs below CPullupCorrection: detected pattern of length 1: 41708.33, frameduration: 41708.333333 CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-11831.867893, adjusted:-11831.867893 Can anyone explain? RE: Analyzing log in debug - Klojum - 2018-05-01 (2018-05-01, 19:44)tetramarreta Wrote: for the logs belowLogs? I see only two lines of text... Get us a full debug log (wiki) via pastebin.com (or similar upload websites) so we can see some more context to your two log lines. RE: Analyzing log in debug - tetramarreta - 2018-05-01 (2018-05-01, 20:05)Klojum Wrote:I just wanted to know the reason for these lines.(2018-05-01, 19:44)tetramarreta Wrote: for the logs belowLogs? I see only two lines of text... RE: Analyzing log in debug - da-anda - 2018-05-02 the platform could be relevant and what kind of stream it was (like, was it handled via inputstream.adaptive, ...) RE: Analyzing log in debug - FernetMenta - 2018-05-02 (2018-05-01, 19:44)tetramarreta Wrote: I would like to know the reason for the logs below The measured timestamps are clean, frame duration is 41708.33 -> 23.976 fps (2018-05-01, 19:44)tetramarreta Wrote: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-11831.867893, adjusted:-11831.867893 Passthrough audio can't be speed up or slowed down to adjust a/v synchronization. In order to sync audio/video, audio slightly changes the clock and video has to adapt. In this case clock was changed by 11.8 milliseconds RE: Analyzing log in debug - tetramarreta - 2018-05-03 (2018-05-02, 07:54)da-anda Wrote: the platform could be relevant and what kind of stream it was (like, was it handled via inputstream.adaptive, ...)I'm running on android, inputstream RE: Analyzing log in debug - tetramarreta - 2018-05-03 (2018-05-02, 09:13)FernetMenta Wrote:Thank you so much.(2018-05-01, 19:44)tetramarreta Wrote: I would like to know the reason for the logs below Is there any documentation on how the video player works, something well didactic? RE: Analyzing log in debug - FernetMenta - 2018-05-03 (2018-05-03, 04:18)tetramarreta Wrote:Yes, the source code(2018-05-02, 09:13)FernetMenta Wrote:Thank you so much.(2018-05-01, 19:44)tetramarreta Wrote: I would like to know the reason for the logs below RE: Analyzing log in debug - tetramarreta - 2018-05-05 (2018-05-03, 07:33)FernetMenta Wrote:I already learned a lot in the source code.(2018-05-03, 04:18)tetramarreta Wrote:Yes, the source code(2018-05-02, 09:13)FernetMenta Wrote: The measured timestamps are clean, frame duration is 41708.33 -> 23.976 fpsThank you so much. Hugs |