hash stringlengths 40 40 | date stringdate 2016-01-23 20:47:43 2025-03-14 03:12:14 | author stringclasses 153
values | commit_message stringlengths 12 123 | is_merge bool 1
class | masked_commit_message stringlengths 8 118 | type stringclasses 8
values | git_diff stringlengths 195 641k |
|---|---|---|---|---|---|---|---|
7ff5dd63b9f2edf31d155f2fda547d09489c0fc0 | 2023-05-07 05:01:06 | jpark37 | libobs: Fix luma sampling for packed 4:2:2 sources | false | Fix luma sampling for packed 4:2:2 sources | libobs | diff --git a/libobs/data/format_conversion.effect b/libobs/data/format_conversion.effect
index 40284a7b309dda..734f1403296df2 100644
--- a/libobs/data/format_conversion.effect
+++ b/libobs/data/format_conversion.effect
@@ -153,12 +153,12 @@ VertTexTexPos VSPacked422Left_Reverse(uint id : VERTEXID)
float x = idHigh * ... |
b3cf98f230c9eab02f61d0f04857f9f4b1d28156 | 2023-04-09 05:00:12 | derrod | libobs: Fix compiling in ISO C17 mode | false | Fix compiling in ISO C17 mode | libobs | diff --git a/libobs/obs-cocoa.m b/libobs/obs-cocoa.m
index b592f471fc10e1..1e52047c669898 100644
--- a/libobs/obs-cocoa.m
+++ b/libobs/obs-cocoa.m
@@ -487,6 +487,9 @@ static bool code_to_str(int code, struct dstr *str)
void obs_key_to_str(obs_key_t key, struct dstr *str)
{
+ const UniCharCount max_length = 16;
+ Un... |
1df278997883512e40b853dc3651ef31de0ec9c3 | 2021-10-02 22:46:24 | jp9000 | libobs: Don't return/set 0 mixers for non-audio sources | false | Don't return/set 0 mixers for non-audio sources | libobs | diff --git a/libobs/obs-source.c b/libobs/obs-source.c
index 33efdc2efce344..10bb9d5242bcaa 100644
--- a/libobs/obs-source.c
+++ b/libobs/obs-source.c
@@ -4231,19 +4231,19 @@ void obs_source_set_audio_mixers(obs_source_t *source, uint32_t mixers)
if (!obs_source_valid(source, "obs_source_set_audio_mixers"))
retu... |
96a5e11cd9606326290532ae63a0b93c9a245fb5 | 2021-10-24 12:51:10 | Clayton Groeneveld | ui: Cleanup advanced audio functions | false | Cleanup advanced audio functions | ui | diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp
index 2de43655c2c38a..677421b2ad390b 100644
--- a/UI/window-basic-main.cpp
+++ b/UI/window-basic-main.cpp
@@ -4798,19 +4798,6 @@ void OBSBasic::on_actionAdvAudioProperties_triggered()
advAudioWindow->show();
advAudioWindow->setAttribute(Qt::WA_DeleteO... |
ec17688a90c30d3213388f0a7146b95158143958 | 2024-02-09 04:51:37 | tytan652 | docs: Add deque to libobs/util table of content | false | Add deque to libobs/util table of content | docs | diff --git a/docs/sphinx/reference-libobs-util.rst b/docs/sphinx/reference-libobs-util.rst
index 1490bc2055f17d..344255c117cc7c 100644
--- a/docs/sphinx/reference-libobs-util.rst
+++ b/docs/sphinx/reference-libobs-util.rst
@@ -9,6 +9,7 @@ Platform/Utility API Reference (libobs/util)
reference-libobs-util-circlebuf
... |
624a0da3025e1406259c2741fb8f7da0f5ef3c50 | 2023-03-30 00:46:56 | derrod | ui: Only adjust size of properties on first draw | false | Only adjust size of properties on first draw | ui | diff --git a/UI/properties-view.cpp b/UI/properties-view.cpp
index 3037cc943c45e2..6b44b589f13bae 100644
--- a/UI/properties-view.cpp
+++ b/UI/properties-view.cpp
@@ -108,12 +108,15 @@ void OBSPropertiesView::ReloadProperties()
void OBSPropertiesView::RefreshProperties()
{
+ bool firstDraw = false;
int h, v;
Ge... |
25d84f40d6fc4f6cd68cc614dc45391d6e425eaa | 2022-07-25 20:58:42 | tududweb | libobs: Fix audio monitor output error in macOS | false | Fix audio monitor output error in macOS | libobs | diff --git a/libobs/audio-monitoring/osx/coreaudio-output.c b/libobs/audio-monitoring/osx/coreaudio-output.c
index f464aa6ecd97c3..1a1afa79c2bde6 100644
--- a/libobs/audio-monitoring/osx/coreaudio-output.c
+++ b/libobs/audio-monitoring/osx/coreaudio-output.c
@@ -65,6 +65,10 @@ static void on_audio_playback(void *param,... |
5748ab7e0dbe2ac4b9f39785a5c69976d356b02e | 2022-03-24 11:05:26 | jpark37 | ui: Wire up WM_MOVE and WM_DISPLAYCHANGE events | false | Wire up WM_MOVE and WM_DISPLAYCHANGE events | ui | diff --git a/UI/qt-display.cpp b/UI/qt-display.cpp
index 7dca7ead440c89..06414c007f7fef 100644
--- a/UI/qt-display.cpp
+++ b/UI/qt-display.cpp
@@ -221,6 +221,14 @@ QPaintEngine *OBSQTDisplay::paintEngine() const
return nullptr;
}
-void OBSQTDisplay::OnMove() {}
+void OBSQTDisplay::OnMove()
+{
+ if (display)
+ obs... |
4be88c7f2a8add27455bf6d9c9fa8821a746c7f1 | 2019-04-19 18:15:19 | Richard Stanway | ui: Add warning / critical QMessageBox wrappers | false | Add warning / critical QMessageBox wrappers | ui | diff --git a/UI/qt-wrappers.cpp b/UI/qt-wrappers.cpp
index 18bd34c884a9a0..2755b7ccc9911e 100644
--- a/UI/qt-wrappers.cpp
+++ b/UI/qt-wrappers.cpp
@@ -90,6 +90,30 @@ void OBSMessageBox::information(
mb.exec();
}
+void OBSMessageBox::warning(
+ QWidget *parent,
+ const QString &title,
+ const QString &text)
+{
+ QM... |
f1588daca064c2f48cfb775607a7fc6dc46df844 | 2017-07-03 02:01:51 | VodBox | ui: Ensure theme backward compat. with older OBS vers. | false | Ensure theme backward compat. with older OBS vers. | ui | diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp
index 6c345a7dfe24fa..a314febe182404 100644
--- a/UI/obs-app.cpp
+++ b/UI/obs-app.cpp
@@ -737,9 +737,14 @@ bool OBSApp::SetTheme(std::string name, std::string path)
bool OBSApp::InitTheme()
{
const char *themeName = config_get_string(globalConfig, "General",
- "Theme")... |
960958a4ca8eb365bb63efd7e34c547973e67207 | 2017-07-26 07:31:29 | jp9000 | ui: Fix potential crash when outputs change | false | Fix potential crash when outputs change | ui | diff --git a/UI/window-basic-main-outputs.cpp b/UI/window-basic-main-outputs.cpp
index ea4f67216f6685..2b69112ba01aae 100644
--- a/UI/window-basic-main-outputs.cpp
+++ b/UI/window-basic-main-outputs.cpp
@@ -662,6 +662,11 @@ bool SimpleOutput::StartStreaming(obs_service_t *service)
/* XXX: this is messy and disgusti... |
116107bc86a0ba83aedcb10255bcb018c223fdf7 | 2024-06-06 04:03:47 | tytan652 | ui: Fix Qt platform override in CMake 3 | false | Fix Qt platform override in CMake 3 | ui | diff --git a/UI/cmake/legacy.cmake b/UI/cmake/legacy.cmake
index dc2800464ac60b..709e9c7ab485bb 100644
--- a/UI/cmake/legacy.cmake
+++ b/UI/cmake/legacy.cmake
@@ -504,16 +504,22 @@ elseif(OS_POSIX)
target_compile_options(obs PRIVATE -Wno-unqualified-std-cast-call)
endif()
- if(OS_LINUX AND ENABLE_WHATSNEW)
-... |
15b6128d09ffeeffc60cc5cea32e7f37483cf8f3 | 2022-03-22 19:54:49 | PatTheMav | cmake: Fix PDB install directory for library installation | false | Fix PDB install directory for library installation | cmake | diff --git a/cmake/Modules/ObsHelpers_Windows.cmake b/cmake/Modules/ObsHelpers_Windows.cmake
index 36dcfba61fbda0..15ad9d42f1112c 100644
--- a/cmake/Modules/ObsHelpers_Windows.cmake
+++ b/cmake/Modules/ObsHelpers_Windows.cmake
@@ -210,11 +210,11 @@ function(export_target target)
if(MSVC)
install(
- DIREC... |
abf383f2646921ceee47a87ae7ce7fb69087a41f | 2022-05-22 10:30:55 | derrod | ci: Ping authors of failed services in removal PR | false | Ping authors of failed services in removal PR | ci | diff --git a/.github/workflows/services-json.yml b/.github/workflows/services-json.yml
index 0af3cf86eaa7aa..106f43b0e519bb 100644
--- a/.github/workflows/services-json.yml
+++ b/.github/workflows/services-json.yml
@@ -67,14 +67,7 @@ jobs:
- name: Check Services
id: check
- run: |
- p... |
67c7cfecb1ac31204c72f81e8cc4e73de75a9dc0 | 2023-03-25 14:52:16 | derrod | ui: Remove outdated NSIS data | false | Remove outdated NSIS data | ui | diff --git a/UI/installer/OBSBanner.bmp b/UI/installer/OBSBanner.bmp
deleted file mode 100644
index b1c01c6b78d00d..00000000000000
Binary files a/UI/installer/OBSBanner.bmp and /dev/null differ
diff --git a/UI/installer/OBSHeader.bmp b/UI/installer/OBSHeader.bmp
deleted file mode 100644
index 7d1d6f498990a3..0000000000... |
a4db1c760ba53fa719b581ffa73f2bcdd7fee99c | 2024-02-09 04:51:37 | tytan652 | docs: Fix title underline of obs_encoder_roi | false | Fix title underline of obs_encoder_roi | docs | diff --git a/docs/sphinx/reference-encoders.rst b/docs/sphinx/reference-encoders.rst
index c907aeca5740ac..3f4e44f030988f 100644
--- a/docs/sphinx/reference-encoders.rst
+++ b/docs/sphinx/reference-encoders.rst
@@ -267,7 +267,7 @@ Raw Frame Data Structure (encoder_frame)
Encoder Region of Interest Structure (obs_e... |
ffbcbaece8b85592e154da20a419d23cac2a0873 | 2022-09-18 05:40:38 | cg2121 | ui: Refine YouTube dialog | false | Refine YouTube dialog | ui | diff --git a/UI/data/locale/en-US.ini b/UI/data/locale/en-US.ini
index e036f1f8b9c2e0..9039eb067cbb77 100644
--- a/UI/data/locale/en-US.ini
+++ b/UI/data/locale/en-US.ini
@@ -1357,7 +1357,7 @@ YouTube.Actions.MadeForKids="Is this video made for kids?*"
YouTube.Actions.MadeForKids.Yes="Yes, it's made for kids"
YouTube... |
cafc9995d8150000f24271da83b5741ffd2500df | 2019-11-21 05:16:42 | jp9000 | ui: Fix wrong icon if recording stopped while paused | false | Fix wrong icon if recording stopped while paused | ui | diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp
index 73c2f7ae4e2d16..b2469387dfa94b 100644
--- a/UI/window-basic-main.cpp
+++ b/UI/window-basic-main.cpp
@@ -5098,6 +5098,10 @@ inline void OBSBasic::OnDeactivate()
if (trayIcon)
trayIcon->setIcon(QIcon::fromTheme(
"obs-tray", QIcon(":/res/im... |
ab5d41c445d5f80b0a34043079d982a17e8c837c | 2021-11-26 12:36:51 | Matt Gajownik | ui: Add separator before Custom Browser Docks in Dock menu | false | Add separator before Custom Browser Docks in Dock menu | ui | diff --git a/UI/window-extra-browsers.cpp b/UI/window-extra-browsers.cpp
index e6ad2c9cc11661..144bf631d7c457 100644
--- a/UI/window-extra-browsers.cpp
+++ b/UI/window-extra-browsers.cpp
@@ -473,6 +473,9 @@ void OBSBasic::LoadExtraBrowserDocks()
return;
Json::array array = json.array_items();
+ if (!array.empty(... |
476c332a4147e09e62515a567e89659246c05173 | 2020-03-09 18:27:01 | jp9000 | libobs: Compare scene/group ids by strcmp | false | Compare scene/group ids by strcmp | libobs | diff --git a/libobs/obs-scene.c b/libobs/obs-scene.c
index c65c5ce37e60f1..64d13ded19bf48 100644
--- a/libobs/obs-scene.c
+++ b/libobs/obs-scene.c
@@ -1410,7 +1410,7 @@ obs_source_t *obs_scene_get_source(const obs_scene_t *scene)
obs_scene_t *obs_scene_from_source(const obs_source_t *source)
{
- if (!source || sour... |
2d524580fe7251336169efc46466277a6af8aeff | 2021-06-11 03:03:32 | jp9000 | ui: Fix context bar crash | false | Fix context bar crash | ui | diff --git a/UI/context-bar-controls.cpp b/UI/context-bar-controls.cpp
index 9e79a3d842de95..09d2783fbfbb0a 100644
--- a/UI/context-bar-controls.cpp
+++ b/UI/context-bar-controls.cpp
@@ -36,19 +36,22 @@ SourceToolbar::SourceToolbar(QWidget *parent, OBSSource source)
void SourceToolbar::SaveOldProperties(obs_source_t... |
26d3f42b8947cebd0f55f4170007f1bb9a9e1556 | 2018-09-17 16:16:47 | wangrui05 | libobs: Fix heap corruption in obs_source_output_video | false | Fix heap corruption in obs_source_output_video | libobs | diff --git a/libobs/obs-source.c b/libobs/obs-source.c
index d77be32497e077..0e61af64c8facf 100644
--- a/libobs/obs-source.c
+++ b/libobs/obs-source.c
@@ -2342,7 +2342,7 @@ static void clean_cache(obs_source_t *source)
}
#define MAX_ASYNC_FRAMES 30
-
+//if return value is not null then do (os_atomic_dec_long(&outpu... |
7b81248a30b50ba4b1dd970ea6deae235507ea8b | 2018-09-19 00:43:39 | Ryan Foster | ci: Use cmd prefix on AppVeyor as needed | false | Use cmd prefix on AppVeyor as needed | ci | diff --git a/appveyor.yml b/appveyor.yml
index 16951da69fdd63..457156cd7fd35e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -8,11 +8,11 @@ install:
- cmd: C:\projects\obs-studio\CI\install-script-win.cmd
build_script:
- - call msbuild /m /p:Configuration=%build_config% C:\projects\obs-studio\build32\obs-studio... |
dfc842bfc4e9d61d70907f0f3f73ade869282232 | 2024-05-28 23:17:37 | derrod | ci: Update signing workflow commit and permissions | false | Update signing workflow commit and permissions | ci | diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml
index 2433cde085358a..ad107e55be2f12 100644
--- a/.github/workflows/push.yaml
+++ b/.github/workflows/push.yaml
@@ -207,12 +207,13 @@ jobs:
sign-windows-build:
name: Windows Signing ✍️
- uses: obsproject/obs-studio/.github/workflows/sig... |
236ac66121864bdf2af97636a17581cad50e290c | 2019-10-12 06:03:13 | jp9000 | libobs: Update version to 24.0.3 | false | Update version to 24.0.3 | libobs | diff --git a/libobs/obs-config.h b/libobs/obs-config.h
index 63b41b341fc5ec..644c2b63b12b90 100644
--- a/libobs/obs-config.h
+++ b/libobs/obs-config.h
@@ -41,7 +41,7 @@
*
* Reset to zero each major or minor version
*/
-#define LIBOBS_API_PATCH_VER 2
+#define LIBOBS_API_PATCH_VER 3
#define MAKE_SEMANTIC_VERSION... |
b26c0dd7d5acb74206dd0ee4540cde52e398623b | 2022-08-02 17:57:00 | Georges Basile Stavracas Neto | ui: Remove fixed icon sizes from SourceTree | false | Remove fixed icon sizes from SourceTree | ui | diff --git a/UI/data/themes/Yami.qss b/UI/data/themes/Yami.qss
index 62feeef914648c..581d111ac29be5 100644
--- a/UI/data/themes/Yami.qss
+++ b/UI/data/themes/Yami.qss
@@ -1094,7 +1094,6 @@ QGroupBox::indicator:unchecked:disabled {
LockedCheckBox {
outline: none;
background: transparent;
- margin-left: -2p... |
ab67b39257be83eaab87c4a938c4c58b5cccad7e | 2019-06-21 23:57:53 | Jimi Huotari | cmake: Install 'libobs.pc' under the correct 'libdir' | false | Install 'libobs.pc' under the correct 'libdir' | cmake | diff --git a/libobs/CMakeLists.txt b/libobs/CMakeLists.txt
index fed3e694927604..8681148164b1ff 100644
--- a/libobs/CMakeLists.txt
+++ b/libobs/CMakeLists.txt
@@ -454,7 +454,7 @@ if(UNIX AND NOT APPLE)
set(PRIVATE_LIBS "${PRIVATE_LIBS} -l${LIB}")
endforeach()
CONFIGURE_FILE("libobs.pc.in" "libobs.pc" @ONLY)
- in... |
e860b265895a3b594fac3f76a0ba29502695cf19 | 2022-04-18 23:38:33 | derrod | ci: Add Steam build uploader | false | Add Steam build uploader | ci | diff --git a/.github/workflows/steam.yml b/.github/workflows/steam.yml
new file mode 100644
index 00000000000000..af2fc3e3aebbcd
--- /dev/null
+++ b/.github/workflows/steam.yml
@@ -0,0 +1,215 @@
+name: Steam Upload
+
+on:
+ release:
+ types:
+ - published
+ workflow_dispatch:
+ inputs:
+ tag:
+ d... |
c280e620e3fe3401aac8e055e658d526163ca748 | 2019-05-17 20:26:27 | Michael Fabian Dirks | ui: Remove 5 file limit for drag & drop | false | Remove 5 file limit for drag & drop | ui | diff --git a/UI/window-basic-main-dropfiles.cpp b/UI/window-basic-main-dropfiles.cpp
index cd5c48116b1738..50dd3d395b1ad6 100644
--- a/UI/window-basic-main-dropfiles.cpp
+++ b/UI/window-basic-main-dropfiles.cpp
@@ -148,7 +148,7 @@ void OBSBasic::dropEvent(QDropEvent *event)
if (mimeData->hasUrls()) {
QList<QUrl> u... |
ac55328e7fbd225e0a8ac5626d512117b26f8da5 | 2022-08-24 18:03:47 | Richard Stanway | ui: Simplify multiview projector removal | false | Simplify multiview projector removal | ui | diff --git a/UI/window-projector.cpp b/UI/window-projector.cpp
index 2c1d17359cfeec..955f0ca9275cbf 100644
--- a/UI/window-projector.cpp
+++ b/UI/window-projector.cpp
@@ -106,11 +106,10 @@ OBSProjector::~OBSProjector()
if (source)
obs_source_dec_showing(source);
- if (isMultiview)
+ if (isMultiview) {
delete ... |
f5f7ae3e7f7d40fb33099762a0a9891bbb2e6360 | 2023-07-30 05:11:31 | jpark37 | decklink: Support 10-bit RGB capture | false | Support 10-bit RGB capture | decklink | diff --git a/plugins/decklink/decklink-device-instance.cpp b/plugins/decklink/decklink-device-instance.cpp
index 8727d12e320385..9d23ecf3911888 100644
--- a/plugins/decklink/decklink-device-instance.cpp
+++ b/plugins/decklink/decklink-device-instance.cpp
@@ -66,6 +66,8 @@ static inline enum video_format ConvertPixelFor... |
087353eb3f3d2d92c4ca19957aa0a1df43379034 | 2023-12-20 04:29:44 | PatTheMav | aja: Add shared interface library for plugin and frontend-plugin | false | Add shared interface library for plugin and frontend-plugin | aja | diff --git a/plugins/aja/CMakeLists.txt b/plugins/aja/CMakeLists.txt
index 233ef23b579dea..1f427030c2100b 100644
--- a/plugins/aja/CMakeLists.txt
+++ b/plugins/aja/CMakeLists.txt
@@ -14,53 +14,68 @@ find_package(LibAJANTV2 REQUIRED)
add_library(aja MODULE)
add_library(OBS::aja ALIAS aja)
+add_library(aja-support OB... |
5d19786e0492cab39375dd17f5cfd7915d6c4272 | 2019-09-15 08:07:37 | jp9000 | ui: Fix browser docks being unchecked when created | false | Fix browser docks being unchecked when created | ui | diff --git a/UI/window-extra-browsers.cpp b/UI/window-extra-browsers.cpp
index 7fecae02ff8d7a..c642da295a3f33 100644
--- a/UI/window-extra-browsers.cpp
+++ b/UI/window-extra-browsers.cpp
@@ -549,8 +549,10 @@ void OBSBasic::AddExtraBrowserDock(const QString &title, const QString &url,
dock->setVisible(true);
}
+ ... |
fd65a1404c228340ed53bbb4137db5180a1e8a6e | 2024-02-21 02:14:59 | Florian Zwoch | ui: Fill audio meter background each update (#9842) | false | Fill audio meter background each update (#9842) | ui | diff --git a/UI/volume-control.cpp b/UI/volume-control.cpp
index 9303f78dc8d2a3..88477300f9788d 100644
--- a/UI/volume-control.cpp
+++ b/UI/volume-control.cpp
@@ -1417,6 +1417,10 @@ void VolumeMeter::paintEvent(QPaintEvent *event)
QPainter painter(this);
+ // Paint window background color (as widget is opaque)
+ ... |
7ce217bbc006a2a37e83034e654004c271269ab5 | 2018-06-19 12:43:55 | Alex Anderson | libobs: prevent crash from unbounded copy and bfree | false | prevent crash from unbounded copy and bfree | libobs | diff --git a/libobs/util/cf-lexer.c b/libobs/util/cf-lexer.c
index 8258582ce5c796..0a8dd5c6e22c8c 100644
--- a/libobs/util/cf-lexer.c
+++ b/libobs/util/cf-lexer.c
@@ -76,11 +76,12 @@ char *cf_literal_to_str(const char *literal, size_t count)
if (literal[0] != '\"' && literal[0] != '\'')
return NULL;
- str = bmal... |
573fbbfeadcb17b8dff8656c92bc7bbaa0790148 | 2017-11-26 16:00:26 | jp9000 | ui: Fix a memory leak when renaming mixer sources | false | Fix a memory leak when renaming mixer sources | ui | diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp
index e74f15f3f50b33..515627992d3db2 100644
--- a/UI/window-basic-main.cpp
+++ b/UI/window-basic-main.cpp
@@ -2310,8 +2310,8 @@ void OBSBasic::MixerRenameSource()
continue;
}
- obs_source_t *sourceTest =
- obs_get_source_by_name(name.c_str())... |
64869bac46c05e4acf925990f126a49ce4beed4b | 2020-10-16 18:08:10 | Exeldro | ui: Add duplicate filter | false | Add duplicate filter | ui | diff --git a/UI/window-basic-filters.cpp b/UI/window-basic-filters.cpp
index 63d57f8f63afa2..5ceb638ef6683d 100644
--- a/UI/window-basic-filters.cpp
+++ b/UI/window-basic-filters.cpp
@@ -732,12 +732,18 @@ void OBSBasicFilters::CustomContextMenu(const QPoint &pos, bool async)
popup.addMenu(addMenu);
if (item) {
+... |
c041deb433d4f72441da79656ee3daa9334c0275 | 2022-07-17 05:20:32 | mvji | ui: Check output path when starting replay buffer | false | Check output path when starting replay buffer | ui | diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp
index 1853cf2c4d9c2c..e674014fb0721f 100644
--- a/UI/window-basic-main.cpp
+++ b/UI/window-basic-main.cpp
@@ -7286,6 +7286,12 @@ void OBSBasic::StartReplayBuffer()
return;
}
+ if (!OutputPathValid()) {
+ OutputPathInvalidMessage();
+ replayBuffer... |
f83bd9faccdff2752c493e4a1e4afb0b371b79dc | 2017-02-15 04:30:52 | jp9000 | ui: Change volume meter update interval to 30fps | false | Change volume meter update interval to 30fps | ui | diff --git a/UI/volume-control.cpp b/UI/volume-control.cpp
index e098c0f9cff497..4fa7a0e09afe44 100644
--- a/UI/volume-control.cpp
+++ b/UI/volume-control.cpp
@@ -260,7 +260,7 @@ VolumeMeter::VolumeMeter(QWidget *parent)
updateTimerRef = updateTimer.toStrongRef();
if (!updateTimerRef) {
updateTimerRef = QSharedP... |
fb7a9edadc7276683fbf723164b8fcc5eb83a053 | 2023-02-19 04:52:33 | PatTheMav | libobs: Fix non-exhaustive switch statements | false | Fix non-exhaustive switch statements | libobs | diff --git a/libobs/graphics/graphics-ffmpeg.c b/libobs/graphics/graphics-ffmpeg.c
index a94d41eb31eb71..87a62d9b6abe21 100644
--- a/libobs/graphics/graphics-ffmpeg.c
+++ b/libobs/graphics/graphics-ffmpeg.c
@@ -626,9 +626,9 @@ static inline enum gs_color_format convert_format(enum AVPixelFormat format)
return GS_BGR... |
fad299f99f4effd2bd2bbf33f3314f46eaa35b15 | 2021-12-06 09:47:39 | Richard Stanway | aja: Static analysis bug fixes | false | Static analysis bug fixes | aja | diff --git a/plugins/aja/aja-card-manager.cpp b/plugins/aja/aja-card-manager.cpp
index c545fe81be1a40..0ebddb959d314e 100644
--- a/plugins/aja/aja-card-manager.cpp
+++ b/plugins/aja/aja-card-manager.cpp
@@ -181,15 +181,13 @@ bool CardEntry::ChannelReady(NTV2Channel chan, const std::string &owner) const
{
const std::... |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 35