[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Tue Sep 4 13:42:03 PDT 2012


https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #11 from gang65 at poczta.onet.pl 2012-09-04 20:42:03 UTC ---
In openchrome, master source code, open src/via_xv_overlay.c file.
Then localize following code:
    /*
     * Enable video on secondary
     */
    if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
         pVia->Chipset == VIA_VM800) && iga->index) {
        /* V1_ON_SND_DISPLAY */
        vidCtl |= V1_ON_SND_DISPLAY;
        /* SECOND_DISPLAY_COLOR_KEY_ENABLE */
        compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
    }

Replace it with following and check if it works:

    /*
     * Enable video on secondary
     */
    if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
         pVia->Chipset == VIA_PM800 ||
         pVia->Chipset == VIA_VM800) && iga->index) {
        /* V1_ON_SND_DISPLAY */
        vidCtl |= V1_ON_SND_DISPLAY;
        /* SECOND_DISPLAY_COLOR_KEY_ENABLE */
        compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
    }

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the Openchrome-devel mailing list