[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Sat Sep 8 07:22:07 PDT 2012
https://bugs.freedesktop.org/show_bug.cgi?id=54063
--- Comment #17 from Bartosz Kosiorek <gang65 at poczta.onet.pl> 2012-09-08 14:22:07 UTC ---
Thanks for information. It is very useful.
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_VM800)) {
/* 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