1. 16 10月, 2020 1 次提交
  2. 15 10月, 2020 2 次提交
    • J
      obs-ffmpeg/ffmpeg-mux: Fix issue with HLS · 0b24b3ae
      jp9000 提交于
      For some reason, currently unknown, FFmpeg logging has to be set to
      something in order for HLS to not fail on Windows, even if it's just an
      empty function.
      
      (Author comment: I don't feel comfortable not knowing why, my theory is
      that FFmpeg has an issue with this internally with HLS on Windows
      related to logging or how it's trying to log, I have absolutely no idea
      what's going on and if someone can enlighten me or debug FFmpeg itself
      it'd be real nice to know why.)
      0b24b3ae
    • J
      obs-ffmpeg: Add ability to debug ffmpeg-mux subprocess · 18486853
      jp9000 提交于
      Adds a cmake variable (DEBUG_FFMPEG_MUX) which enables FFmpeg debug
      output in the ffmpeg-mux subprocess, and if on Windows, shows the
      console window of the ffmpeg-mux subprocess so the current output can be
      seen.
      18486853
  3. 14 10月, 2020 14 次提交
  4. 13 10月, 2020 2 次提交
    • J
      UI: Fix replay buffer frontend event not triggering · 3d516026
      jp9000 提交于
      The frontend API event OBS_FRONTEND_EVENT_REPLAY_BUFFER_SAVED was not
      being triggered when hotkeys were used because it was only set to
      trigger when the replay buffer button was clicked, not when a hotkey was
      used. This fixes it so that the frontend event sends a signal to the
      frontend so that hotkeys will actually work.
      3d516026
    • J
      UI/obs-frontend-api: Fix replay buffer save event ABI break · a38cd03e
      jp9000 提交于
      New events must go at the bottom of the list, not at the top, otherwise
      ABI will be broken.
      a38cd03e
  5. 11 10月, 2020 4 次提交
  6. 10 10月, 2020 3 次提交
  7. 06 10月, 2020 6 次提交
  8. 05 10月, 2020 6 次提交
  9. 04 10月, 2020 2 次提交
    • J
      libobs-winrt: Use native cursor draw for WGC · d4a607a3
      jpark37 提交于
      We were performing a custom cursor draw for WGC, which we attempted
      because we thought we could bring back hardware cursor responsiveness,
      but MS says that it won't. Since the custom draw was bugged to cause
      black screens anyway, just use the native cursor draw for now.
      d4a607a3
    • J
      win-capture: Violate Vulkan spec for compatibility · 9ba76883
      jpark37 提交于
      Rivatuner Statistics Server calls vkGetInstanceProcAddr for
      vkCreateDevice with a NULL instance. According to spec, this should
      return NULL, but RTSS will dereference this and crash.
      
      This change returns function pointers for every intercepted function
      regardless of instance, which is enough to keep RTSS alive.
      9ba76883