Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[XORG]Problemas con overlay y TVTime (Solucionado)
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Spanish
View previous topic :: View next topic  
Author Message
OnekO
n00b
n00b


Joined: 23 Mar 2006
Posts: 32

PostPosted: Sat Mar 25, 2006 12:22 pm    Post subject: [XORG]Problemas con overlay y TVTime (Solucionado) Reply with quote

Hola a todos:

Tengo un pequeño problemilla al ejecutar TVTime en mi flamante y recien instalada Gentoo:
Code:
oneko@OnekoAtHome ~ $ tvtime
Running tvtime 0.9.15.
rtctimer: Cannot set periodic interval: Función ioctl no apropiada para el dispositivo
rtctimer: Cannot set periodic interval: Función ioctl no apropiada para el dispositivo
Reading configuration from /etc/tvtime/tvtime.xml
Reading configuration from /home/oneko/.tvtime/tvtime.xml
xvoutput: No XVIDEO port found which supports YUY2 images.

*** tvtime requires hardware YUY2 overlay support from your video card
*** driver.  If you are using an older NVIDIA card (TNT2), then
*** this capability is only available with their binary drivers.
*** For some ATI cards, this feature may be found in the experimental
*** GATOS drivers: http://gatos.souceforge.net/
*** If unsure, please check with your distribution to see if your
*** X driver supports hardware overlay surfaces.


Al parecer necesita que mi gráfica (una ATI Radeon9600XT) soporte overlay. Hasta ahora, en mi anterior Fedora, funcionaba a la perfección, asi que supongo que el pronblema será de configuración. He estado leyendo por foros y demas, y parece que el problema esta en xorg.conf. El mio es este:
Code:

# **********************************************************************
# DRI Section
# **********************************************************************

Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "aticonfig Screen 0" 0 0
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/lib/X11/rgb"
   ModulePath   "/usr/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/CID/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "extmod"
   Load  "dri"
   Load  "dbe"
   Load  "record"
   Load  "xtrap"
   Load  "glx"
   Load  "type1"
   Load  "freetype"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
   Option       "CoreKeyboard"
   Option       "XkbRules" "xorg"
   Option       "XkbModel" "pc105"
   Option       "XkbLayout" "es"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "ZAxisMapping" "4 5"
   Option       "Device" "/dev/input/mice"
EndSection

Section "Monitor"

   #DisplaySize     330   250   # mm
   Identifier   "Monitor0"
   VendorName   "GSM"
   ModelName    ""
   HorizSync    30.0 - 71.0
   VertRefresh  50.0 - 160.0
   Option       "DPMS"
EndSection

Section "Monitor"
   Identifier   "aticonfig Monitor 0"
EndSection

Section "Device"

        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"               # [<bool>]
        #Option     "SWcursor"              # [<bool>]
        #Option     "Dac6Bit"               # [<bool>]
        #Option     "Dac8Bit"               # [<bool>]
        #Option     "BusType"               # [<str>]
        #Option     "CPPIOMode"             # [<bool>]
        #Option     "CPusecTimeout"         # <i>
        #Option     "AGPMode"               # <i>
        #Option     "AGPFastWrite"          # [<bool>]
        #Option     "AGPSize"               # <i>
        #Option     "GARTSize"              # <i>
        #Option     "RingSize"              # <i>
        #Option     "BufferSize"            # <i>
        #Option     "EnableDepthMoves"      # [<bool>]
        #Option     "EnablePageFlip"        # [<bool>]
        #Option     "NoBackBuffer"          # [<bool>]
        #Option     "DRIReinit"             # [<bool>]
        #Option     "PanelOff"              # [<bool>]
        #Option     "DDCMode"               # [<bool>]
        #Option     "MonitorLayout"         # [<str>]
        #Option     "IgnoreEDID"            # [<bool>]
        #Option     "UseFBDev"              # [<bool>]
        #Option     "VideoKey"              # <i>
        #Option     "MergedFB"              # [<bool>]
        #Option     "CRT2HSync"             # [<str>]
        #Option     "CRT2VRefresh"          # [<str>]
        #Option     "CRT2Position"          # [<str>]
        #Option     "MetaModes"             # [<str>]
        #Option     "MergedDPI"             # [<str>]
        #Option     "NoMergedXinerama"      # [<bool>]
        #Option     "MergedXineramaCRT2IsScreen0"    # [<bool>]
        #Option     "DisplayPriority"       # [<str>]
        #Option     "PanelSize"             # [<str>]
        #Option     "ForceMinDotClock"      # <freq>
        #Option     "RenderAccel"           # [<bool>]
        #Option     "SubPixelOrder"         # [<str>]
        #Option     "ShowCache"             # [<bool>]
        #Option     "DynamicClocks"         # [<bool>]
        #Option     "VGAAccess"             # [<bool>]
        #Option     "LVDSProbePLL"          # [<bool>]
        #Option     "ReverseDDC"            # [<bool>]
        #Option     "BIOSHotkeys"           # [<bool>]
   Identifier  "Card0"
   Driver      "ati"
   VendorName  "ATI Technologies Inc"
   BoardName   "RV350 AR [Radeon 9600]"
   Option       "OpenGLOverlay" "off"
   Option       "VideoOverlay" "on"
   BusID       "PCI:1:0:0"
EndSection

Section "Device"
   Identifier  "ATI Graphics Adapter 0"
   Driver      "fglrx"
   Option       "(null)"
   Option       "VideoOverlay" "off"
   Option       "OpenGLOverlay" "on"
   Option       "OverlayOnCRTC2" "0"
   BusID       "PCI:1:0:0"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   SubSection "Display"
      Viewport   0 0
      Depth     1
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     4
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     8
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     15
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     16
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     24
   EndSubSection
EndSection

Section "Screen"
   Identifier "aticonfig Screen 0"
   Device     "ATI Graphics Adapter 0"
   Monitor    "aticonfig Monitor 0"
   DefaultDepth     24
   SubSection "Display"
      Viewport   0 0
      Depth     24
   EndSubSection
EndSection

Section "DRI"

# Access to OpenGL ICD is allowed for all users:
    # Access to OpenGL ICD is restricted to a specific user group:
    #    Group 100    # users
    #    Mode 0660
   Mode         0666
EndSection



En principio lo tengo activado... ¿Alguna sugerencia?


Last edited by OnekO on Sat Mar 25, 2006 7:05 pm; edited 1 time in total
Back to top
View user's profile Send private message
Magnum44
Guru
Guru


Joined: 21 May 2003
Posts: 538

PostPosted: Sat Mar 25, 2006 3:33 pm    Post subject: Overlay desactivado en ATI Reply with quote

Seguro que lo tienes activado?
Code:
   Option       "VideoOverlay" "off"


Yo no tengo ATI, pero de todas maneras, creo que hay un configurador automático del xorg.conf, aunque luego lo quieras pulir a mano.
Ah, y si cambias eso y sigue sin funcionar pon un poco mas de info, como dmesg.

Suerte! 8)
_________________
"La suerte favorece sólo a la mente preparada." (Isaac Asimov citando a Louis Pasteur).
"Fortune favors the prepared mind." (Isaac Asimov quoting Louis Pasteur).
Back to top
View user's profile Send private message
OnekO
n00b
n00b


Joined: 23 Mar 2006
Posts: 32

PostPosted: Sat Mar 25, 2006 3:42 pm    Post subject: Reply with quote

Al activar OpenGLOverlay se desactiva VideoOverlay segun he leido. El configurador de ATI (aticonfig) lo he usado, pero la verdad, no ayuda mucho. Es como editar el xorg.conf a mano. Voy a probar a activar los 2 *Overlay y a alternarlos y posteo los resultados con dmesg. Si fuera necesario algun log mas avisadme please.
Back to top
View user's profile Send private message
OnekO
n00b
n00b


Joined: 23 Mar 2006
Posts: 32

PostPosted: Sat Mar 25, 2006 7:06 pm    Post subject: Reply with quote

Vale, ya esta solucionado. Al poner Option "VideoOverlay" "on" funciona ok, siempre y cuando OpenglOverlay este off.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Spanish All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum