1. 28 12月, 2014 4 次提交
    • J
      libobs: Remove unused audio level source vars · 1ed4c2a9
      jp9000 提交于
      These variables are no longer used by sources anymore, as they were
      removed in favor of the new source audio control handlers.
      1ed4c2a9
    • J
      libobs: Fix a few warnings · c72284f3
      jp9000 提交于
      Two integers are needlessly converted to floating points for what should
      be an integer operation.  One of those floats is then used for another
      integer operation later, where the original integer value should have
      been used.  So essentially there was an int -> float -> int conversion
      going on, which could lead to potential loss of data due to floating
      point precision.
      
      There were also some general 64bit -> 32bit conversion warnings.
      c72284f3
    • J
      Merge pull request #316 from fryshorts/qt-stuff · 3816c5a0
      Jim 提交于
      obs: Refactor network requests.
      3816c5a0
    • J
      Merge pull request #319 from skwerlman/patch-1 · 5a5f8659
      Jim 提交于
      fixed debian source install instructions
      5a5f8659
  2. 27 12月, 2014 2 次提交
  3. 25 12月, 2014 6 次提交
    • F
      obs: Refactor network requests. · ca8ac4e8
      fryshorts 提交于
      Remove unneeded class members for request and buffer handling.
      Let Qt do all the hard work here, keeping track of requests and
      associated data.
      ca8ac4e8
    • E
      Fix minor grammar errors in README · c6ad237b
      Emil Sayahi 提交于
      c6ad237b
    • J
      libobs: Implement obs_source_active · 5875434a
      jp9000 提交于
      ..Apparently I left this function unimplemented.  This function just
      returns whether a source is currently active or not.
      5875434a
    • J
      libobs: Fix export declaration name · 78c2129f
      jp9000 提交于
      obs_encoder_getdisplayname declaration was not changed to match the
      definition (obs_encoder_get_display_name) when the API consistency
      update occurred.
      78c2129f
    • J
      Merge pull request #314 from raincomplex/master · b4535713
      Jim 提交于
      Mark windows changed on Expose
      b4535713
    • R
      Mark windows changed on Expose · 01491a96
      raincomplex 提交于
      On i3wm, windows aren't unmapped when switching away from a window's
      workspace, but it does cause OBS to lose the capture. Because
      switching back will not trigger a MapNotify, the capture fails to
      restart unless you resize or move the window (ConfigureNotify). An
      Expose event is fired by the wm, however, so catching this correctly
      restarts the capture.
      01491a96
  4. 23 12月, 2014 1 次提交
  5. 22 12月, 2014 16 次提交
    • F
      UI: Fix bug with xinerama on linux · 20863c5e
      fryshorts 提交于
      Refactor the screen enumeration code a little to make sure xinerama is present
      and active before using it. If the extension is present but not active it will
      no longer fail.
      20863c5e
    • J
      Merge pull request #311 from fryshorts/audio-analyzer-move · 9f3ab85d
      Jim 提交于
      libobs: Move audio level calculations
      9f3ab85d
    • J
      win-dshow: Use actual encoder names · c456e421
      jp9000 提交于
      Was using a temporary name for the encoders still; now uses the actual
      encoder names.
      c456e421
    • J
      win-dshow: Add C985/C353 hardware h264 encoders · eb4a0566
      jp9000 提交于
      This adds support for the AverMedia C985 encoder (which is available on
      C985 capture cards) as well as the C353 hardware encoder (which is
      currently available on the X99S Gaming 9 motherboards).
      
      These encoders have some limitations, such as limited resolutions
      (1280x720 and 1024x768), a max GOP size of 30, and the encoder format
      only supports YV12, which requires conversion if the current output
      format isn't the same.  The C985 and C353 encoders seem to be pretty
      much identical, although it seems like the C353 has a bit more efficient
      encoding.
      
      I don't believe these are really suitable for streaming, as they do not
      really have the encoding efficiency needed to stream at lower bitrates,
      and seem to only support variable bitrate.  However, for recording these
      encoders are quite nice to have available, and work quite well.
      eb4a0566
    • J
      win-dshow: Move module loading to separate file · bbff0eee
      jp9000 提交于
      The main module code was originally all packed in to the win-dshow.cpp
      file, which isn't exactly ideal or clean if one wants to add other
      things to the module as a whole.
      bbff0eee
    • J
      win-dshow: Allow use of YV12 video format · 67587fbc
      jp9000 提交于
      Previously, due to a bug in libdshowcapture, the NV12 format was
      actually being used for YV12 erroneously, and no actual support for YV12
      existed.  This fixes the bug with NV12 and adds support for YV12.
      67587fbc
    • J
      win-dshow: Put device id mangling in separate file · 77f0f680
      jp9000 提交于
      This is going to be used for other code as well, so may as well put it
      in its own file.
      77f0f680
    • J
      win-dshow: Use obs_avc_keyframe instead of own · 1884fea3
      jp9000 提交于
      1884fea3
    • J
      obs-outputs: Wait for packet before header output · 3412a0e1
      jp9000 提交于
      Waiting for the first packet to arrive before sending the headers helps
      prevent issues with certain types of encoders that may not get their
      header/SEI until the first packet has been received.
      3412a0e1
    • J
      libobs: Fix bug when SEI not present · 1a95004f
      jp9000 提交于
      If an encoder did not possess any SEI data, it would never send data at
      all because the sent_first_packet wasn't set despite the first packet
      being sent.
      1a95004f
    • J
      libobs: Add function to determine AVC keyframes · 9f97b02c
      jp9000 提交于
      Added obs_avc_keyframe that returns whether an avc packet is a keyframe
      or not.  This function is particularly useful for when writing custom
      encoder plugins.
      9f97b02c
    • J
      libobs: Expose NAL enums in obs-avc.h · f8e56a4e
      jp9000 提交于
      I encountered some cases where I needed to use these enumerations
      outside of the file, so this allows other modules to use AVC
      enumerations without having to redefine them each time.  Especially
      useful for custom encoder modules.
      f8e56a4e
    • J
      libobs: Use extern "C" on export headers if C++ · 923916ec
      jp9000 提交于
      I neglected to surround some files with extern "C", so if something
      written with C++ used the files it would cause function exports to not
      be mangled by it correctly.
      923916ec
    • J
      Basic UI: Raise bitrate limit to 1000000 · 1d9440c6
      jp9000 提交于
      I don't know why on earth I set the limit to 16000.  There's no reason
      why there should really be a low hard limit.
      1d9440c6
    • J
      libobs/media-io: Fix recursive lock in video · c52406c1
      jp9000 提交于
      In certain cases the video thread could end up trying to lock itself
      recursively.  This just allows the mutexes to safely be locked
      recursively.
      c52406c1
    • J
      libobs: Add NV12_Reverse shader · 817a724d
      jp9000 提交于
      817a724d
  6. 20 12月, 2014 3 次提交
  7. 15 12月, 2014 8 次提交
    • J
      UI: Fix locale typo · 793d7b51
      jp9000 提交于
      793d7b51
    • J
      UI: Add video scale filters to basic settings · 640967b9
      jp9000 提交于
      640967b9
    • J
      libobs: Set version to 0.7.0 · 488cd84f
      jp9000 提交于
      488cd84f
    • J
      (API Change) libobs: Add bicubic/lanczos scaling · c8822055
      jp9000 提交于
      This adds bicubic and lanczos scaling capability to libobs to improve
      scaling quality and sharpness when the output resolution has to be
      scaled relative to the base resolution.  Bilinear is also available,
      although bilinear has rather poor quality and causes scaling to appear
      blurry.
      
      If the output resolution is close to the base resolution, then bilinear
      is used instead as an optimization, as there's no need to use these
      shaders if scaling is not in use.
      
      The Bicubic and Lanczos effects are also exposed via exported function
      to allow the ability to use those shaders in plugin modules if desired.
      
      The API change adds a variable 'scale_type' to the obs_video_info
      structure that allows the user interface to choose what type of scaling
      filter should be used.
      c8822055
    • J
      Don't copy D3D compiler binary on windows (cmake) · 1b454647
      jp9000 提交于
      Copying this binary is kind of unnecessary because it's something that
      everyone has as long as they update DirectX, and isn't something we can
      distribute because it's a Microsoft DLL.
      1b454647
    • F
      obs: Remove update time from volume meter · 43552478
      fryshorts 提交于
      Remove the update time check from the volume meter since it is no longer
      nescessary. The update interval can now be set with the volmeter which has
      the added benefit of not loosing data where previously updates had been
      skipped.
      43552478
    • F
      libobs: Remove volume level signal from obs_source · 73883e6f
      fryshorts 提交于
      Remove the calculation of volume levels and the corresponding signal
      from obs_source since this is now handled in the volume meter.
      Code that is interested in the volume levels can either use the
      volmeter provided from obs_audio_controls or use the audio_data signal
      to gain access to the raw audio data.
      73883e6f
    • F
      libobs: Signal own levels in volmeter · c0e63242
      fryshorts 提交于
      Signal updated volume levels when they become available in the volume
      meter. The frequency of the updates can be adjusted by setting a
      different update interval.
      c0e63242