Posts by kanyck

    Klojum

    Must I make use of 4G RAM somehow, mustn't I? :) It didn't help, anyway. At least I tried it and now I'm sure it's not a cache issue...

    Meanwhile, the connection seems to be perfectly okay, and the same issue appears even on a gigabit LAN. (BTW is there iperf for LE available somewhere? Couldn't find any, and for such a case it might be helpful, at least to be sure). Looks like a driver issue to me...

    I think I have the same (or similar) problem with Intel NUC

    - 8.2.5 plays smooth

    - 8.90.007 has freeze-and-jump issues on heavy movement like panning every second or so. Looks like the buffering issue for me. Appears on both heavy and lightweight content with no apparent difference. Adding advancedsettings.xml does not fix the issue.

    XML
    <?xml version="1.0" encoding="UTF-8"?>
    <advancedsettings>
        <cache>
            <buffermode>1</buffermode>
            <memorysize>139460608</memorysize>
            <readfactor>20</readfactor>
        </cache>
    </advancedsettings>

    Thanks!

    A radeon glamor driver has a "TearFree" option that is for some reason defaulted to "off". Creating in /storage/.config the file xorg.conf as follows solves the issue.
    Code:

    Code
    Section "Device"
            Identifier  "AMD Graphics"
            Driver      "radeon"
            Option      "DRI3"        "1"
            Option      "TearFree" "on"
    Endsection

    P.S. It would be nice if the maintainers add this option in the build...
    P.P.S. The same seems to be applicable to amdgpu driver, too.