1. 02 5月, 2018 4 次提交
  2. 30 4月, 2018 2 次提交
    • J
      libobs: Add "static" to inline func · 238df3da
      jp9000 提交于
      Fixes linux-specific compiler error:
      libobs/libobs.so.0: undefined reference to `hmax_ps'
      238df3da
    • T
      libobs, UI: Add true peak measurements · b0f94afa
      Tjienta Vara 提交于
      Add a new algorithm to calculate the true-peak. It implements the
      Whittaker- Shannon interpolation from four samples to create 4
      intermediate samples (5 x oversampling) inbetween the middle two
      samples.
      
      With 4 samples and 4 intermediate samples the algorithm can be
      implemented as a 4x4 vector-matrix cross product, which is ideal for
      SSE.
      
      I've also replaced the sample-peak algorithm using SSE as well to
      improve performance.
      
      Closes obsproject/obs-studio#1189
      b0f94afa
  3. 27 4月, 2018 4 次提交
  4. 26 4月, 2018 4 次提交
  5. 25 4月, 2018 4 次提交
  6. 24 4月, 2018 1 次提交
    • J
      libobs: Add functions to get raw video output · c4b482ef
      jp9000 提交于
      Adds obs_add_raw_video_callback() and obs_remove_raw_video_callback()
      functions which allow the ability to get raw video frames without
      necessarily needing to create an output.
      c4b482ef
  7. 23 4月, 2018 5 次提交
  8. 22 4月, 2018 4 次提交
  9. 21 4月, 2018 3 次提交
    • S
      libobs-d3d11: Do not allow Alt+Enter interception · dbfcbac3
      SuslikV 提交于
      Prevents Alt-Enter from attempting to automatically fullscreen an OBS
      graphics display.
      
      Closes obsproject/obs-studio#1248
      dbfcbac3
    • J
      Merge pull request #1246 from pkviet/onMeta · 2ebcd49b
      Jim 提交于
      obs-outputs/flv: Fix ECMA array size
      2ebcd49b
    • I
      UI: Sort audio controls by source name · 61839d8c
      Igor Bochkariov 提交于
      Audio controls in OBS Mixer and Advanced Audio Properties window are not
      sorted at all.  Every time OBS is restarted they get shuffled (Jim note:
      This is due to json object hashing).  The order of these controls is
      additionally not consistent between the mixer and the advanced audio
      properties window.
      
      Closes obsproject/obs-studio#1242
      61839d8c
  10. 20 4月, 2018 6 次提交
  11. 19 4月, 2018 3 次提交
    • J
      UI: Hold the clip flash for at least one second · 0d4677f3
      jp9000 提交于
      Holds the clipping flash for one second to better indicate that clipping
      is occurring.
      
      Closes obsproject/obs-studio#1201
      0d4677f3
    • A
      UI: Add Selected and Hidden Array Values · e92b2560
      Alex Anderson 提交于
      Add Selected and Hidden Array Values
      
      Let developers get and set whether items in an editable list are hidden
      or selected. May be useful in when editable lists are modified and
      handled in a callback. Especially when edit button callbacks are used.
      
      Closes obsproject/obs-studio#1200
      e92b2560
    • J
      UI: Move OpenSavedProjecters call to OBSBasic::Load() · 4fcc2ccc
      jp9000 提交于
      Due to the commit 34c14829, source loading is now deferred
      to after OBSInit(), which would cause saved scene/source projectors to
      no longer load on startup.  This fixes that issue by moving the
      OpenSavedProjectors call to OBSBasic::Load().
      4fcc2ccc