1. 02 5月, 2018 1 次提交
  2. 26 4月, 2018 1 次提交
  3. 25 4月, 2018 1 次提交
  4. 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
  5. 20 4月, 2018 1 次提交
  6. 28 2月, 2018 1 次提交
  7. 04 1月, 2018 2 次提交
  8. 02 1月, 2018 1 次提交
    • J
      libobs: Add obs_render_main_texture · 7f6cf97b
      jp9000 提交于
      (Note: This commit also modifies UI and test)
      
      This makes it so that main preview panes are rendered with the main
      output texture rather than re-rendering the main view.  The view will
      render all objects again, whereas the output texture will be a single
      texture render of the same exact thing.
      
      Also fixes some abnormal artifacting when scaling the main preview pane.
      7f6cf97b
  9. 10 10月, 2017 1 次提交
    • J
      libobs: Add async video/audio decoupling functions · b54f70ef
      jp9000 提交于
      Decoupling the audio from the video causes the audio to be played right
      when it's received rather than attempt to sync up to the video frames.
      This is useful with certain async sources/devices when the audio/video
      timestamps are not reliable.
      
      Naturally because it plays audio right when it's received, this should
      only be used when the async source is operating in unbuffered mode,
      otherwise the video frame timing will be out of sync by the amount of
      buffering the video currently has.
      b54f70ef
  10. 14 9月, 2017 1 次提交
  11. 07 8月, 2017 1 次提交
  12. 01 8月, 2017 1 次提交
    • J
      libobs: Add API function to get version string · e423492d
      jp9000 提交于
      Some plugins are using the OBS_VERSION macro obs-config.h to specify the
      current version, which will bake the string in to the plugin, making it
      so that if the plugin is not replaced for a patch, it could potentially
      have the incorrect version.  This makes it so that a plugin/frontend can
      get the current version string that's baked in to libobs itself.
      e423492d
  13. 21 7月, 2017 1 次提交
    • S
      libobs: Add post-load module callback · 4fd66d4d
      SammyJames 提交于
      This allows the ability for certain types of modules (particularly
      scripting-related modules) to initialize extra data when all other
      modules have loaded.  Because front-ends may wish to have custom
      handling for loading modules, the front-end must manually call
      obs_post_load_modules after it has completed loading all plug-in
      modules.
      
      Closes jp9000/obs-studio#965
      4fd66d4d
  14. 20 7月, 2017 2 次提交
  15. 15 7月, 2017 1 次提交
    • 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
  16. 14 7月, 2017 1 次提交
  17. 28 6月, 2017 1 次提交
  18. 17 5月, 2017 1 次提交
  19. 15 5月, 2017 2 次提交
  20. 14 5月, 2017 1 次提交
    • J
      libobs: Don't use source flags for async buffering · d13fa968
      jp9000 提交于
      (This commit also modifies the decklink, linux-v4l2, mac-avcapture,
      obs-ffmpeg, and win-dshow modules)
      
      Originally, async buffering for sources was supposed to be a
      user-controllable flag.  However, that turned out to be less than ideal
      because sources (such as the win-dshow plugin) were programmed with
      automatic control over their buffering (such as automatically detecting
      USB 2.0 capture devices and then enabling in those cases).
      
      The fact that it was a flag caused a design flaw to where buffering
      values would be overwritten when a source is loaded from save data.
      
      Because of that, this flag is being deprecated and replaced with a
      specific function to enable unbuffered mode instead.
      d13fa968
  21. 13 5月, 2017 3 次提交
  22. 07 5月, 2017 2 次提交
  23. 26 4月, 2017 1 次提交
  24. 29 3月, 2017 1 次提交
  25. 26 3月, 2017 1 次提交
  26. 25 3月, 2017 1 次提交
  27. 07 2月, 2017 1 次提交
    • J
      libobs: Implement audio monitoring · d2934eca
      jp9000 提交于
      Adds functions to turn on audio monitoring to allow the user to hear
      playback of an audio source over the user's speaker.  It can be set to
      turn off monitoring and only output to stream, or it can be set to
      output only to monitoring, or it can be set to both.
      
      On windows, audio monitoring uses WASAPI.  Windows also is capable of
      syncing the audio to the video according to when the video frame itself
      was played.
      
      On mac, it uses AudioQueue.
      
      On linux, it's not currently implemented and won't do anything (to be
      implemented).
      d2934eca
  28. 25 1月, 2017 1 次提交
  29. 24 12月, 2016 1 次提交
  30. 08 12月, 2016 2 次提交
    • J
      libobs: Use reference counting for encoder packets · 7d6e6eee
      jp9000 提交于
      Prevents reallocation of encoded packet data.
      
      Deprecates:
      obs_duplicate_encoder_packet
      obs_free_encoder_packet
      
      Replaces those functions with:
      obs_encoder_packet_ref
      obs_encoder_packet_release
      7d6e6eee
    • J
      libobs: Fix deprecated macro · b29d8a44
      jp9000 提交于
      There's no need to have two separate macros to declare something as
      deprecated.
      b29d8a44
  31. 23 8月, 2016 1 次提交
    • J
      libobs: Add obs_get_active_fps function · 95ce5560
      jp9000 提交于
      Allows getting the current active framerate that the core is rendering
      with.  This takes in to account any rendering lag or stalls that may be
      occurring.
      95ce5560
  32. 06 8月, 2016 1 次提交
  33. 29 6月, 2016 1 次提交
    • J
      libobs: Add ability to use scale filters on scene items · d4983383
      jp9000 提交于
      Allows the ability to use scale filters such as point, bicubic, lanczos
      on specific scene items, disabled by default.  When using one of the
      latter two options, if the item's scale is under half of the source's
      original size, it uses the bilinear low resolution downscale shader
      instead.
      d4983383