1. 07 7月, 2015 13 次提交
  2. 06 7月, 2015 5 次提交
    • P
      UI: Fix memory leak when saving stream settings · 9f2566fe
      Palana 提交于
      SetService started using addref in
      71abed38, so we have to release
      the extra reference here
      9f2566fe
    • P
      UI: Toggle password "Show" button text when clicked · 99db4d75
      Palana 提交于
      99db4d75
    • J
      ipc-util: Fix access rights issue with IPC pipe · 8ae0cd24
      jp9000 提交于
      This was the reason why game capture could not hook when the hook was
      run at administrator level and the game/target was below administrator
      level: it was because the plugin created a pipe, and the hook tried to
      connect to that pipe, but because the pipe was created as administrator
      with default access rights, the pipe did not allow write access for
      anything below administrator level, therefor the hook could not connect
      to the plugin, and the hook would always fail as a result.
      
      This fixes the issue by creating the pipe with full access rights to
      everyone instead of default access rights.
      8ae0cd24
    • J
      win-capture: Add direct hooking and use by default · f4d0da4e
      jp9000 提交于
      I've come to realize that it's probably not wise to deviate from the
      original version's functionality due to the fact that the original
      version works without issues.  I'm wondering if some of the capture
      problems have been due to the fact that the direct hook method (via
      CreateRemoteThread) was removed, so I put it back in, made it default,
      and added an option to use anti-cheat compatibility just like in the
      original version.
      f4d0da4e
    • J
      win-capture: Add inject library files · b0570c46
      jp9000 提交于
      This is intended to separate the library injection code so that both the
      inject helper process and the plugin itself can inject directly if they
      wish.
      b0570c46
  3. 05 7月, 2015 4 次提交
    • P
      coreaudio-encoder: Reduce log level for some non-fatal errors · f3473901
      Palana 提交于
      This should reduce debug breaks due to LOG_ERROR on windows when running
      with debugger attached
      f3473901
    • P
      coreaudio-encoder: Add log level parameter to log_osstatus · f7ee1cf7
      Palana 提交于
      f7ee1cf7
    • J
      deps-libff: Fix starting timestamp bug · 6ed694f6
      jp9000 提交于
      Certain input streams (such as remote streams that are already active)
      can start up mid-stream with a very high initial timestamp values.
      Because of this, it would cause the libff timer to delay for that
      initial timestamp, which often would cause it to not render at all
      because it was stuck waiting.
      
      To fix the problem, we should ignore the timestamp difference of the
      first frame when it's above a certain threshold.
      6ed694f6
    • J
      deps-libff: Offset start of stream by start pts · 171f0e3d
      jp9000 提交于
      Now that we're using the timestamps from the stream for playback,
      certain types of streams and certain file formats will not start from a
      pts of 0.  This causes the start of the playback to be delayed.  This
      code simply ensures that there's no delay on startup.  This is basically
      the same code as used in FFmpeg itself for handling this situation.
      171f0e3d
  4. 04 7月, 2015 18 次提交