TSREADER doesn't disable exclusive mode when stopped. (1 Viewer)

SciDoctor

Retired Team Member
  • Premium Supporter
  • February 2, 2005
    1,465
    139
    England
    VideoPlayer does but TSreader doesn't , see attached logs .

    'VideoPlayerVMR9: Disabling DX9 exclusive mode'; this is in the logs for Videos played ie AVI's etc. BUT the logs don't show this action for Tsreader after file playback is stopped.
     

    tourettes

    Retired Team Member
  • Premium Supporter
  • January 7, 2005
    17,301
    4,800
    Looks like it's not disabled if the stopping happens inside TVE3 plugin... dunno why that if has been implemented.

    Code:
          //switch back to directx windowed mode
          if (!GUIGraphicsContext.IsTvWindow(GUIWindowManager.ActiveWindow))
          {
            Log.Info("TSReaderPlayer: Disabling DX9 exclusive mode");
            GUIMessage msg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_SWITCH_FULL_WINDOWED, 0, 0, 0, 0, 0, null);
            GUIWindowManager.SendMessage(msg);
          }

    works ok if you stop tv in the home screen for example.
     

    SciDoctor

    Retired Team Member
  • Premium Supporter
  • February 2, 2005
    1,465
    139
    England
    Yes I noticed that aswell, seems odd. There were a couple of other screens that had a similar affect but no logs to post as of yet.
     

    Users who are viewing this thread

    Top Bottom