1. 15 7月, 2017 2 次提交
    • J
      obs-qsv11, obs-x264: Allow bframe count overriding · e230f773
      jp9000 提交于
      Allows the ability to override bframes (useful for specific protocols)
      e230f773
    • J
      libobs: Add ability for service to specify its output type · 24571599
      jp9000 提交于
      Allows the ability to change the output type in case one service
      requires a different output type.
      
      NOTE: This should be considered a temporarily yet simple solution to a
      specific problem: support for RTMP-like outputs.  This will allows
      seamless integration of supporting different RTMP-like output types
      within the same service.  This should probably be replaced with a more
      ideal solution later, such as implementing a completely different
      service type instead, when time permits.
      24571599
  2. 14 7月, 2017 1 次提交
  3. 13 7月, 2017 1 次提交
  4. 08 7月, 2017 1 次提交
  5. 05 7月, 2017 1 次提交
  6. 03 7月, 2017 4 次提交
  7. 02 7月, 2017 9 次提交
  8. 01 7月, 2017 1 次提交
    • J
      UI: Allow zoom with the scroll wheel · 8942c186
      Joseph El-Khouri 提交于
      Adds the ability to zoom into the preview when fixed scaling mode is
      enabled.
      
      (Edit by Jim: Also now saves zoom and scroll position)
      
      Closes jp9000/obs-studio#917
      8942c186
  9. 30 6月, 2017 2 次提交
  10. 29 6月, 2017 4 次提交
  11. 28 6月, 2017 10 次提交
  12. 27 6月, 2017 4 次提交
    • S
      baebfd0c
    • S
      obs-text: Fix file reader occasionally not updating · 2b085da6
      Skid-Inc 提交于
      Delayed reading the text file till the update after the timestamp
      changes, this should fix a minor issue where if the file updates twice
      in one second, only the first change it displayed.
      2b085da6
    • C
      UI: Add "Defaults" button to filters/properties windows · 2d84da2f
      cg2121 提交于
      This adds a "Defaults" button in the source and filter properties, which
      will clear and reset all settings.
      
      Closes jp9000/obs-studio#875
      2d84da2f
    • J
      libobs: Fix bug where obs_data default might not be set · 9ab0f262
      jp9000 提交于
      If a source is created with settings, default values would not be set on
      data items that already had values set.  The check here was supposed to
      be a not equal rather than an equal because you're not supposed to be
      able to set a default value of one type on an item that already exists
      but is of a different type.
      
      This bug would make it so that if a particular setting was removed,
      there would be no default value to fall back on, and it would always be
      0 or NULL for all values.
      
      It's likely this bug wasn't encountered until now because before now
      there had been no reason to clear or remove settings on most things.
      9ab0f262