LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   TV out, xinerama and ATI (https://www.linuxquestions.org/questions/linux-general-1/tv-out-xinerama-and-ati-329620/)

bip_b2 06-02-2005 12:25 PM

TV out, xinerama and ATI
 
Hi!
I have got problems with getting tv out with xinerama to work properly with my ATI 9700 card.
If I use the xorg.conf configuration below, but with the xinerama flag set to False i get it to work as it should. When I enable the xinerama, just like the configuration below the TV display gets "fuzzy". Like when you have configured xorg.conf with a too high screen resolution or depth.
Any ideas of how to solve this issue?
I have tried to change the resolution for the "Default Screen" to 800 x 600, but without any success.

Running Ubuntu Hoary

By the way:
When I ain't using xinerama I have exported mainly mplayer to the TV display. I.e:
DISPLAY=:0.1 mplayer mymovie.avi
Is there some way that I can export the mouse or keyboard control in the same way. With the purpose to e.g. close or control programs at DISPLAY=:0.1

Code:

Section "ServerFlags"
  Option "Xinerama" "true"
 
EndSection

Section "Module"
 Load "bitmap"
 Load "dbe"
 Load "ddc"
 Load "dri"
 Load "extmod"
 Load "freetype"
 Load "glx"
 Load "int10"
 Load "record"
 Load "type1"
 Load "vbe"
EndSection


Section "Device"
 Identifier "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
 Driver  "fglrx"
 BusID  "PCI:1:0:0"
EndSection

Section "Monitor"
 Identifier "Generic Monitor"
 Option  "DPMS"
EndSection

Section "Screen"
 Identifier "Default Screen"
 Device  "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
 Monitor  "Generic Monitor"
 DefaultDepth 24
 SubSection "Display"
  Depth  1
  Modes  "1400x1050"
 EndSubSection
 SubSection "Display"
  Depth  4
  Modes  "1400x1050"
 EndSubSection
 SubSection "Display"
  Depth  8
  Modes  "1400x1050"
 EndSubSection
 SubSection "Display"
  Depth  15
  Modes  "1400x1050" "1152x864" "1024x768" "800x600"
 EndSubSection
 SubSection "Display"
  Depth  16
  Modes  "1400x1050" "1152x864" "1024x768" "800x600"
 EndSubSection
 SubSection "Display"
  Depth  24
  Modes  "1400x1050" "1152x864" "1024x768" "800x600"
 EndSubSection
EndSection

#B2
# ===================== TV DISPLAY (screen1)
Section "Monitor"
 Identifier "tv"
 HorizSync 30.0-50.0
 VertRefresh 50.0-60.0
EndSection

Section "Device"
 Identifier "ATI TV"
 Driver  "fglrx"
 BusID  "PCI:1:0:0"
 Screen 1
 Option "DesktopSetup" "0x00000000"
 # === disable/enable XAA/DRI ===
        Option "no_accel"                  "no"
        Option "no_dri"                    "no"
 # === TV-out Management ===
        Option "NoTV"                      "no"   
 #Option "CursorShadow" "1"
 Option "TVStandard" "PAL-G"
 Option "ConnectedMonitor" "TV"
 Option "TVOutFormat" "Composite"
 Option "TVHSizeAdj"                "-10"   
    Option "TVVSizeAdj"                "20"   
    Option "TVHPosAdj"                  "15"   
    Option "TVVPosAdj"                  "0"
 #Option "VideoOverlay" "on"   
    Option "TVHStartAdj"                "0"   
    Option "TVColorAdj"                "0"   
    Option "GammaCorrectionI"          "0x06419064"
    Option "GammaCorrectionII"          "0x06419064"
 # === OpenGL specific profiles/settings ===
        Option "Capabilities"              "0x00000000"
 # === Video Overlay for the Xv extension ===
        Option "VideoOverlay"              "on"
 # === OpenGL Overlay ===
 # Note: When OpenGL Overlay is enabled, Video Overlay
 #      will be disabled automatically
        Option "OpenGLOverlay"              "off"
 # === Center Mode (Laptops only) ===
        Option "CenterMode"                "off"
 # === Pseudo Color Visuals (8-bit visuals) ===
        Option "PseudoColorVisuals"        "off"
 # === QBS Management ===
        Option "Stereo"                    "off"
        Option "StereoSyncEnable"          "1"
 # === FSAA Management ===
        Option "FSAAEnable"                "no"
        Option "FSAAScale"                  "1"
        Option "FSAADisableGamma"          "no"
        Option "FSAACustomizeMSPos"        "no"
        Option "FSAAMSPosX0"                "0.000000"
        Option "FSAAMSPosY0"                "0.000000"
        Option "FSAAMSPosX1"                "0.000000"
        Option "FSAAMSPosY1"                "0.000000"
        Option "FSAAMSPosX2"                "0.000000"
        Option "FSAAMSPosY2"                "0.000000"
        Option "FSAAMSPosX3"                "0.000000"
        Option "FSAAMSPosY3"                "0.000000"
        Option "FSAAMSPosX4"                "0.000000"
        Option "FSAAMSPosY4"                "0.000000"
        Option "FSAAMSPosX5"                "0.000000"
        Option "FSAAMSPosY5"                "0.000000"
 # === Misc Options ===
        Option "UseFastTLS"                "0"
        Option "BlockSignalsOnLock"        "on"
        Option "UseInternalAGPGART"        "no"
        Option "ForceGenericCPU"            "no"
    Option "mtrr"                      "off"
EndSection

Section "Screen"
 Identifier "tvscreen"
 Device "ATI TV"
 Monitor "tv"
 DefaultColorDepth 24
 Subsection "Display"
  Modes "800x600" "Interlace"
  Depth 24
 EndSubsection
EndSection


Section "ServerLayout"
 Identifier "Default Layout"
 Screen  "Default Screen"
 Screen "tvscreen" RightOf  "Default Screen"
 InputDevice "Generic Keyboard"
 InputDevice "Configured Mouse"
 InputDevice "Synaptics Touchpad"
EndSection

Section "DRI"
 Mode 0666
EndSection



All times are GMT -5. The time now is 01:01 AM.