The Wayback Machine - https://web.archive.org/web/20191116065800/https://github.com/obsproject/obs-studio/commits/master
Skip to content
Permalink
Branch: master
Commits on Nov 15, 2019
  1. Merge pull request #2079 from exeldro/startcase

    jp9000 committed Nov 15, 2019
    obs-text: text transform add locale and start case
  2. Merge pull request #2085 from ratwithacompiler/macos-python-fix

    jp9000 committed Nov 15, 2019
    obs-scripting: Fix Python on MacOS
  3. Merge pull request #2077 from brittneysclark/qsv_cust_quant_mat

    jp9000 committed Nov 15, 2019
    obs-qsv: Enable option for Custom Quantization Matrix
Commits on Nov 13, 2019
  1. Merge pull request #2125 from DDRBoxman/appbundle

    jp9000 committed Nov 13, 2019
    Fixes to make OBS work on Catalina
  2. Merge pull request #2072 from jpark37/dshow-negative-height

    jp9000 committed Nov 13, 2019
    win-dshow: Support bottom-up DIBs
  3. Merge pull request #1914 from YouNow/master

    jp9000 committed Nov 13, 2019
    rtmp-services: Add YouNow service and implement ingest lookup
  4. win-dshow: Support bottom-up DIBs

    jpark37 committed Nov 13, 2019
    The biHeight field can be negative, leading to crashes on some cards
    like VisionRGB-E1S. Adding flip support is fairly straightforward.
    
    There also appears to be a hack to automatically flip for RGB formats,
    but I wish to remove it because it seems to fight with this change. We
    already have a separate vertical flip checkbox to deal with non
    compliant behavior.
  5. Merge pull request #2010 from wanhongqing123/master

    jp9000 committed Nov 13, 2019
    win-dshow: fix H264 to mjpeg issue
  6. Merge pull request #2042 from WizardCM/custom-twitch-docks

    jp9000 committed Nov 13, 2019
    UI: Add support for Custom (Legacy) Twitch Dashboard Docks
Commits on Nov 12, 2019
  1. win-dshow: Fix format switching issue

    wanhongqing authored and jp9000 committed Aug 6, 2019
    If the format was one encoded format and changes to another encoded
    format, it could cause it to continue to treat it as the old format.
Commits on Nov 11, 2019
  1. Merge pull request #2081 from jpark37/cpp17

    jp9000 committed Nov 11, 2019
    CMake 3.10, C++17, SWIG warnings
  2. Merge pull request #1974 from DDRBoxman/state

    jp9000 committed Nov 11, 2019
    decklink-ui: Show the state of outputs in the decklink dialog
Commits on Nov 10, 2019
  1. Merge pull request #1990 from cg2121/flv-radio-buttons

    jp9000 committed Nov 10, 2019
    UI: Use radio buttons for FLV track selection
  2. Merge pull request #1927 from rxrbln/master

    jp9000 committed Nov 10, 2019
    Just a couple of more X.org / Unix hotkey defines.
Commits on Nov 9, 2019
  1. decklink-ui: Show the state of outputs in the decklink dialog

    DDRBoxman committed Jul 17, 2019
  2. UI: Use radio buttons for FLV track selection

    cg2121 authored and jp9000 committed Jul 23, 2019
  3. libobs: Add more X.org / Unix hotkey defines

    rxrbln authored and jp9000 committed Jun 15, 2019
Commits on Nov 7, 2019
  1. Merge pull request #1919 from omkelderman/mask-filter-reload-on-file-…

    jp9000 committed Nov 7, 2019
    …change
    
    obs-filters: Reload the mask image when file change is detected
  2. obs-filters: Reload the mask image when file change is detected

    omkelderman authored and jp9000 committed Jun 8, 2019
  3. Merge pull request #1917 from VodBox/scroll-loop-option

    jp9000 committed Nov 7, 2019
    libobs/obs-filters: Add toggle for scroll filter looping
  4. obs-filters: Add toggle for scroll filter looping

    VodBox authored and jp9000 committed Jul 30, 2019
    By giving the option to disable the looping in the scroll filter, it
    makes it more suitable for tasks like credits sequences, where you don't
    want the texture to repeat and for the motion to only be performed once.
  5. Merge pull request #2144 from cg2121/quick-tr-fix

    jp9000 committed Nov 7, 2019
    UI: Fix main transition being set to the quick one
  6. Merge pull request #2168 from kkartaltepe/vaapi-profile-fix

    jp9000 committed Nov 7, 2019
    rtmp-services: Type check apply_encoder_settings
  7. rtmp-services: Type check apply_encoder_settings

    kkartaltepe committed Nov 7, 2019
    This fixes ovewritting hidden "profile" setting in ffmpeg vaapi which is
    a number and not a string. It also shouldnt be overwritten as it is
    required on some AMD hardware for the encoder to work.
Commits on Nov 6, 2019
  1. UI: Fix main transition being set to the quick one

    cg2121 committed Oct 25, 2019
    This fixes an issue where using a quick transition, it would change
    the main transition as well.
  2. Merge pull request #2153 from tujinshu/master

    jp9000 committed Nov 6, 2019
    win-capture: Fix rare crash when OpenGL programs exit with graphics-hook
Commits on Nov 5, 2019
  1. win-capture: Fix rare crash when GL program exits

    tujinshu authored and jp9000 committed Oct 29, 2019
    **Commit message modified and clarified by Jim**
    
    When hooking a program that has both DirectX and OpenGL contexts in use,
    it is possible to cause a crash on shutdown due to capture_active()
    returning true when an OpenGL context is deleted.  Normally, when
    capturing an OpenGL program, this would not happen because the 'active'
    variable would not be set due to OpenGL capture not being initialized,
    but if DirectX is captured while an OpenGL context is available, and
    OpenGL could not load these required functions, then GL can crash due to
    trying to use unavailable functions.
    
    This case is extremely rare and doesn't happen under normal
    circumstances; only if a program is using both DirectX and OpenGL within
    the same program simultaneously, and *only* if OpenGL could not load the
    required functions.  This likely almost never happens under normal
    programs, games, and hardware.  This was apparently produced by hooking
    a GL Qt program that used QWebEngine, which used multiple contexts at
    once.
  2. Merge pull request #2148 from eulertour/master

    jp9000 committed Nov 5, 2019
    UI: Fall back to XGetWMName if XFetchName fails
  3. Merge pull request #2146 from Fenrirthviti/recording-bitrate-fix

    jp9000 committed Nov 5, 2019
    UI: Fix audio bitrate not being set in simple mode
  4. Merge pull request #2142 from cg2121/fade-to-black

    jp9000 committed Nov 5, 2019
    UI: Add fade to black in studio mode
  5. libobs: Fix race condition

    jp9000 committed Oct 17, 2019
    It is possible for a GPU encoder to be in a destruction state while
    still in the GPU encoder list, although very rare.
Commits on Nov 3, 2019
  1. CI: Use custom macdylibbundler for OSX deps

    DDRBoxman committed Oct 15, 2019
Commits on Nov 1, 2019
  1. Merge pull request #2145 from JohannMG/UpgradeStream-Link

    jp9000 committed Nov 1, 2019
    UI: Upgrade stream key link into button
Commits on Oct 30, 2019
  1. UI: Upgrade stream link hotlink to a button

    JohannMG committed Oct 25, 2019
    Most of the top streaming services now have a link in the stream key
    label. Upgrading this button to a button clarifies the assistance
    for the important step of setting up a stream.
    
    Creates a new type of button for URL opening simply which also
    automatically updates the tootip to the current URL.
    
    Includes addition of Twitter/Periscope URL to make this feature more
    complete.
Older
You can’t perform that action at this time.