[WiP] madVR support in MP1 (8 Viewers)

Kotik

MP Donator
  • Premium Supporter
  • March 19, 2009
    699
    485
    Athens
    Home Country
    Greece Greece
    For testing :)
    Ok this one will result in dxva surface error almost every time i exit full screen. So u did the right thing to edit it.
    Regarding the Y thing on my setup even default wide skin will drop frames like mad lol!
    It is funny cause i never in my life use Y info but wanted to test it while testing madvr overlay menus hahaha.
    Anyway this one is not madvr related and i wonder if noone is using the Y info overlay???? Cause this one is broken on evr on both default mp skins lol.
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    For testing :)
    Ok this one will result in dxva surface error almost every time i exit full screen. So u did the right thing to edit it.
    Regarding the Y thing on my setup even default wide skin will drop frames like mad lol!
    It is funny cause i never in my life use Y info but wanted to test it while testing madvr overlay menus hahaha.
    Anyway this one is not madvr related and i wonder if noone is using the Y info overlay???? Cause this one is broken on evr on both default mp skins lol.

    It didn't trigger stutter on my side but will try to debug against default skin to see if some null exception are trigger :)
     

    azzuro

    Test Group
  • Team MediaPortal
  • May 10, 2007
    9,984
    5,663
    France - IDF
    Home Country
    France France
    Yes needed. Because when you use the option for use video codec for play td record. Its an rtsp stream. So. Need to check this variable.
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    That's doesn't work, livetv is played with madvr if use video codec is checked lol
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Yes needed. Because when you use the option for use video codec for play td record. Its an rtsp stream. So. Need to check this variable.

    Can you try to change by :

    C#:
    // Check if need to set EVR for LiveTV when using madVR
            if (UseMadVideoRenderer)
            {
              if (Util.Utils.IsVideo(g_Player.CurrentFile) && !g_Player.IsTimeShifting)
              {
                GUIGraphicsContext.VideoRenderer = GUIGraphicsContext.VideoRendererType.madVR;
              }
              else if (UseEVRMadVRForTV)
              {
                GUIGraphicsContext.VideoRenderer = GUIGraphicsContext.VideoRendererType.EVR;
              }
            }
     

    azzuro

    Test Group
  • Team MediaPortal
  • May 10, 2007
    9,984
    5,663
    France - IDF
    Home Country
    France France
    Im not sure time shifting work for record.
    I think tje usevideocodec must be integrated. But maybe as if condition.
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France

    Users who are viewing this thread

    Top Bottom