1. 09 1月, 2018 9 次提交
  2. 08 1月, 2018 10 次提交
  3. 07 1月, 2018 6 次提交
  4. 06 1月, 2018 15 次提交
    • J
      Merge pull request #1118 from admshao/multiview-click-to-change · 09049bdb
      Jim 提交于
      UI: Add Click capabilities and Multiple Layouts to Multiview
      09049bdb
    • J
      Merge pull request #1120 from pkviet/ffmpeg · 05a89694
      Jim 提交于
      obs-ffmpeg: Fix ffmpeg output recording in x264
      05a89694
    • J
      Merge pull request #1122 from SuslikV/patch-5 · 98d291c0
      Jim 提交于
      libobs: Fix incomplete struct in scaler call
      98d291c0
    • M
      obs-outputs: Fix FMS auth with query string · 5cf11d67
      Matt Morrissette 提交于
      Fix FMS authentication to support RTMP connection URLs that have a
      query string parameter already.
      
      Closes jp9000/obs-studio#1105
      5cf11d67
    • M
      UI: Add frontend API funcs for enabling/disable preview · 5e741b8a
      Matt Morrissette 提交于
      Closes jp9000/obs-studio#1106
      5e741b8a
    • J
      Merge pull request #1129 from Fenrirthviti/help-menu · 619618ac
      Jim 提交于
      UI: Add help portal link to help menu
      619618ac
    • P
      mac-capture: Update fix for Soundflower · d5140e92
      pkviet 提交于
      Some audio devices do not have a fixed number of channels.  For example,
      Soundflower.  This was previously fixed by defaulting the speaker layout
      to stereo.  With surround sound support, the default has been changed to
      the output speaker layout as set in Settings > Audio.
      
      Closes jp9000/obs-studio#1110
      d5140e92
    • P
      decklink: Add 2.1 & 4.1 surround layouts · 974e64eb
      pkviet 提交于
      The list of channel layouts available for decklink input is missing 2.1
      & 4.1 layouts.  The commit adds them.  This aligns the decklink input
      with the speaker layouts available at outputs.  Having different layouts
      as input and output invokes FFmpeg resampler, which remixes the channels
      in non trivial way except when downmixing to stereo.  This patch allows
      to avoid such uncontrolled remix of channels with decklink input.
      974e64eb
    • P
      coreaudio-encoder: Surround sound improvements · 292ad0fe
      pkviet 提交于
      The core audio aac encoder has bitrates maps specific to speaker
      layouts.  Previously, the bitrate map maxed at 320 kbs and was the map
      for stereo.  The bitrate map is now tailored to the speaker layout.  In
      practice this unlocks higher bitrates.  For instance up to 960 kbs for
      7.1.  Additionally the commit fixes a bug with 2.1 with channels not
      ordered correctly.
      292ad0fe
    • P
      obs-libdk: Unlock bitrates for surround layouts · c5e14456
      pkviet 提交于
      Bitrate map was previously maxed at 256 kbs which is OK for stereo.
      This commit enables up to 1024 kbs which can be used for surround
      channel layouts.
      c5e14456
    • S
      UI: Add Multiview Layout Options · abc26b87
      Shaolin 提交于
      abc26b87
    • S
      UI: Add Single/Double click options to Multiview · 864caee1
      Shaolin 提交于
      The click to select scenes follows the same rules
      as the main UI. The double click respects the option
      under Settings -> General -> Studio -> Transition
      to scene when Double Clicked.
      864caee1
    • J
      UI: Add help portal link to help menu · 2959b22b
      Joel Bethke 提交于
      2959b22b
    • P
      libobs/media-io: Replace quad with 4.0 · 67e48ecc
      pkviet 提交于
      (also obs, deps/media-playback, libobs/audio-monitoring, decklink,
      linux-alsa, linux-pulseaudio, mac-capture, obs-ffmpeg, win-dshow,
      win-wasapi)
      
      Default channel layout for 4 channels is 4.0 in FFmpeg.
      Replacing quad with 4.0 will improve compatibility since FFmpeg has
      better support of its default channel layouts.
      67e48ecc
    • P
      libobs/media-io: Clean surround API · fb580535
      pkviet 提交于
      (also modifies obs-ffmpeg, audio-monitoring, win-wasapi, decklink,
      obs-outputs)
      
      Removes speaker layouts which are not exposed in UI.  The speaker
      layouts selectable by users in the UI are the most common ones.  It is
      not necessary to keep other layouts.  (This basically removes
      5POINT1_SURROUND, 7POINT1_SURROUND, SURROUND =3.0).
      fb580535