Changes of Revision 110
obs-studio.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Wed Jun 21 08:03:37 UTC 2023 - hpj@urpla.net
4
+
5
+- Update to version 29.1.3:
6
+ * UI: Translate place holder name for new group
7
+ * UI: Fix changed state of audio settings
8
+ * UI: Fix changing quick transition to/from fade to black
9
+ * UI: Fix checked state of source toolbar menu item
10
+ * text-freetype2: Fix not updating chat log mode property
11
+ * libobs: Update version to 29.1.3
12
+ * obs-ffmpeg: Fix logic in one of the AMF preset fallback checks
13
+ * obs-websocket: Update version to 5.2.3
14
+ * libobs: Set video thread qos class to user interactive on macOS
15
+ * mac-capture: Explicitly set clear background for SCK
16
+ * UI: Don't update text source when nothing changed
17
+ * docs: Clarify da_erase_range
18
+ * deps/obs-scripting: Fix crash removing callbacks in script_unload
19
+ * libobs: Use da_clear() to clear obs_core_data::sources_to_tick
20
+ * libobs/util: Add da_clear()
21
+ * libobs: Don't keep the sources mutex in tick_sources
22
+ * libobs/util: Actually fix use-after-free in da_insert_new
23
+ * libobs/util: Fix use-after-free in darray_insert_new
24
+ * win-capture: Skip compat helper matching if properties are null
25
+ * win-capture: Add Honkai: Star Rail to compatibility list
26
+ * UI: Don't trigger a settings update when list is empty To avoid recursive call
27
+ * obs-ffmpeg: Consider requested throughput in AMF preset fallback
28
+ * obs-ffmpeg: Fix AMF encoder reconfiguration
29
+ * UI: Fix filter shortcuts not showing in context menu
30
+ * text-freetype2: Fix crash after reaching buffer size
31
+ * UI: Fix menu actions missing shortcuts
32
+ * libobs: Fix crash when properties are deleted in callback
33
+ * UI: Assume RTMP if service has no protcol
34
+ * Revert "UI: Reset service selection to custom if name not found"
35
+
36
+-------------------------------------------------------------------
37
Fri Jun 2 15:59:13 UTC 2023 - Hans-Peter Jansen <hpj@urpla.net>
38
39
- libmfx is available for x86 archs only
40
obs-studio.spec
Changed
10
1
2
%bcond_without websockets
3
4
Name: obs-studio
5
-Version: 29.1.2
6
+Version: 29.1.3
7
Release: 0
8
Summary: A recording/broadcasting program
9
Group: Productivity/Multimedia/Video/Editors and Convertors
10
_service
Changed
10
1
2
<services>
3
<service name="tar_scm" mode="disabled">
4
<param name="versionformat">@PARENT_TAG@</param>
5
- <param name="revision">refs/tags/29.1.2</param>
6
+ <param name="revision">refs/tags/29.1.3</param>
7
<param name="url">https://github.com/obsproject/obs-studio.git</param>
8
<param name="scm">git</param>
9
<param name="changesgenerate">enable</param>
10
_servicedata
Changed
10
1
2
<servicedata>
3
<service name="tar_scm">
4
<param name="url">https://github.com/obsproject/obs-studio.git</param>
5
- <param name="changesrevision">e15a92e16fc3827027a956f6d6a1223b41aced61</param>
6
+ <param name="changesrevision">c58e511813c33e93da7637d50aa431ae0cddda0c</param>
7
</service>
8
</servicedata>
9
\ No newline at end of file
10
obs-studio-29.1.2.tar.xz/UI/context-bar-controls.cpp -> obs-studio-29.1.3.tar.xz/UI/context-bar-controls.cpp
Changed
21
1
2
if (!source) {
3
return;
4
}
5
-
6
+ std::string newText = QT_TO_UTF8(ui->text->text());
7
+ OBSDataAutoRelease settings = obs_source_get_settings(source);
8
+ if (newText == obs_data_get_string(settings, "text")) {
9
+ return;
10
+ }
11
SaveOldProperties(source);
12
13
- OBSDataAutoRelease settings = obs_data_create();
14
- obs_data_set_string(settings, "text", QT_TO_UTF8(ui->text->text()));
15
- obs_source_update(source, settings);
16
+ obs_data_set_string(settings, "text", newText.c_str());
17
+ obs_source_update(source, nullptr);
18
19
SetUndoProperties(source, true);
20
}
21
obs-studio-29.1.2.tar.xz/UI/forms/OBSBasic.ui -> obs-studio-29.1.3.tar.xz/UI/forms/OBSBasic.ui
Changed
21
1
2
<property name="shortcutContext">
3
<enum>Qt::WidgetWithChildrenShortcut</enum>
4
</property>
5
+ <property name="iconVisibleInMenu">
6
+ <bool>false</bool>
7
+ </property>
8
<property name="themeID" stdset="0">
9
<string notr="true">removeIconSmall</string>
10
</property>
11
12
<property name="shortcutContext">
13
<enum>Qt::WidgetWithChildrenShortcut</enum>
14
</property>
15
+ <property name="iconVisibleInMenu">
16
+ <bool>false</bool>
17
+ </property>
18
<property name="themeID" stdset="0">
19
<string notr="true">removeIconSmall</string>
20
</property>
21
obs-studio-29.1.2.tar.xz/UI/forms/OBSBasicFilters.ui -> obs-studio-29.1.3.tar.xz/UI/forms/OBSBasicFilters.ui
Changed
23
1
2
<property name="shortcut">
3
<string>Del</string>
4
</property>
5
+ <property name="iconVisibleInMenu">
6
+ <bool>false</bool>
7
+ </property>
8
</action>
9
<action name="actionMoveUp">
10
<property name="icon">
11
12
<string>Ctrl+Down</string>
13
</property>
14
</action>
15
+ <action name="actionRenameFilter">
16
+ <property name="text">
17
+ <string>Rename</string>
18
+ </property>
19
+ </action>
20
</widget>
21
<customwidgets>
22
<customwidget>
23
obs-studio-29.1.2.tar.xz/UI/properties-view.cpp -> obs-studio-29.1.3.tar.xz/UI/properties-view.cpp
Changed
10
1
2
children.emplace_back(info);
3
4
/* trigger a settings update if the index was not found */
5
- if (idx == -1)
6
+ if (count && idx == -1)
7
info->ControlChanged();
8
9
return combo;
10
obs-studio-29.1.2.tar.xz/UI/window-basic-filters.cpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-filters.cpp
Changed
71
1
2
QApplication::translate("OBSBasicFilters", "Del", nullptr));
3
#endif // QT_NO_SHORTCUT
4
5
+ addAction(ui->actionRenameFilter);
6
addAction(ui->actionRemoveFilter);
7
addAction(ui->actionMoveUp);
8
addAction(ui->actionMoveDown);
9
10
ui->preview->hide();
11
}
12
13
- QAction *renameAsync = new QAction(ui->asyncWidget);
14
- renameAsync->setShortcutContext(Qt::WidgetWithChildrenShortcut);
15
- connect(renameAsync, SIGNAL(triggered()), this,
16
- SLOT(RenameAsyncFilter()));
17
- ui->asyncWidget->addAction(renameAsync);
18
-
19
- QAction *renameEffect = new QAction(ui->effectWidget);
20
- renameEffect->setShortcutContext(Qt::WidgetWithChildrenShortcut);
21
- connect(renameEffect, SIGNAL(triggered()), this,
22
- SLOT(RenameEffectFilter()));
23
- ui->effectWidget->addAction(renameEffect);
24
-
25
#ifdef __APPLE__
26
- renameAsync->setShortcut({Qt::Key_Return});
27
- renameEffect->setShortcut({Qt::Key_Return});
28
+ ui->actionRenameFilter->setShortcut({Qt::Key_Return});
29
#else
30
- renameAsync->setShortcut({Qt::Key_F2});
31
- renameEffect->setShortcut({Qt::Key_F2});
32
+ ui->actionRenameFilter->setShortcut({Qt::Key_F2});
33
#endif
34
35
UpdateFilters();
36
37
on_moveEffectFilterDown_clicked();
38
}
39
40
+void OBSBasicFilters::on_actionRenameFilter_triggered()
41
+{
42
+ if (ui->asyncFilters->hasFocus())
43
+ RenameAsyncFilter();
44
+ else if (ui->effectFilters->hasFocus())
45
+ RenameEffectFilter();
46
+}
47
+
48
void OBSBasicFilters::CustomContextMenu(const QPoint &pos, bool async)
49
{
50
QListWidget *list = async ? ui->asyncFilters : ui->effectFilters;
51
52
async ? SLOT(DuplicateAsyncFilter())
53
: SLOT(DuplicateEffectFilter());
54
55
- const char *renameSlot = async ? SLOT(RenameAsyncFilter())
56
- : SLOT(RenameEffectFilter());
57
- const char *removeSlot =
58
- async ? SLOT(on_removeAsyncFilter_clicked())
59
- : SLOT(on_removeEffectFilter_clicked());
60
-
61
popup.addSeparator();
62
popup.addAction(QTStr("Duplicate"), this, dulpicateSlot);
63
popup.addSeparator();
64
- popup.addAction(QTStr("Rename"), this, renameSlot);
65
- popup.addAction(QTStr("Remove"), this, removeSlot);
66
+ popup.addAction(ui->actionRenameFilter);
67
+ popup.addAction(ui->actionRemoveFilter);
68
popup.addSeparator();
69
70
QAction *copyAction = new QAction(QTStr("Copy"));
71
obs-studio-29.1.2.tar.xz/UI/window-basic-filters.hpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-filters.hpp
Changed
10
1
2
void on_actionMoveUp_triggered();
3
void on_actionMoveDown_triggered();
4
5
+ void on_actionRenameFilter_triggered();
6
+
7
void AsyncFilterNameEdited(QWidget *editor);
8
void EffectFilterNameEdited(QWidget *editor);
9
10
obs-studio-29.1.2.tar.xz/UI/window-basic-main-transitions.cpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-main-transitions.cpp
Changed
9
1
2
trIdx);
3
if (tr) {
4
qt->source = tr;
5
+ qt->fadeToBlack = fadeToBlack;
6
ResetQuickTransitionText(qt);
7
}
8
}
9
obs-studio-29.1.2.tar.xz/UI/window-basic-main.cpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-main.cpp
Changed
55
1
2
connect(diskFullTimer, SIGNAL(timeout()), this,
3
SLOT(CheckDiskSpaceRemaining()));
4
5
- renameScene = new QAction(ui->scenesDock);
6
+ renameScene = new QAction(QTStr("Rename"), ui->scenesDock);
7
renameScene->setShortcutContext(Qt::WidgetWithChildrenShortcut);
8
connect(renameScene, SIGNAL(triggered()), this, SLOT(EditSceneName()));
9
ui->scenesDock->addAction(renameScene);
10
11
- renameSource = new QAction(ui->sourcesDock);
12
+ renameSource = new QAction(QTStr("Rename"), ui->sourcesDock);
13
renameSource->setShortcutContext(Qt::WidgetWithChildrenShortcut);
14
connect(renameSource, SIGNAL(triggered()), this,
15
SLOT(EditSceneItemName()));
16
17
popup.addAction(copyFilters);
18
popup.addAction(pasteFilters);
19
popup.addSeparator();
20
- popup.addAction(QTStr("Rename"), this, SLOT(EditSceneName()));
21
- popup.addAction(QTStr("Remove"), this,
22
- SLOT(RemoveSelectedScene()));
23
+ popup.addAction(renameScene);
24
+ popup.addAction(ui->actionRemoveScene);
25
popup.addSeparator();
26
27
order.addAction(QTStr("Basic.MainMenu.Edit.Order.MoveUp"), this,
28
29
colorSelect = new ColorSelect(colorMenu);
30
popup.addMenu(AddBackgroundColorMenu(
31
colorMenu, colorWidgetAction, colorSelect, sceneItem));
32
- popup.addAction(QTStr("Rename"), this,
33
- SLOT(EditSceneItemName()));
34
- popup.addAction(QTStr("Remove"), this,
35
- SLOT(on_actionRemoveSource_triggered()));
36
+ popup.addAction(renameSource);
37
+ popup.addAction(ui->actionRemoveSource);
38
popup.addSeparator();
39
40
popup.addMenu(ui->orderMenu);
41
42
void OBSBasic::ShowContextBar()
43
{
44
on_toggleContextBar_toggled(true);
45
+ ui->toggleContextBar->setChecked(true);
46
}
47
48
void OBSBasic::HideContextBar()
49
{
50
on_toggleContextBar_toggled(false);
51
+ ui->toggleContextBar->setChecked(false);
52
}
53
54
void OBSBasic::on_toggleContextBar_toggled(bool visible)
55
obs-studio-29.1.2.tar.xz/UI/window-basic-settings-stream.cpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-settings-stream.cpp
Changed
29
1
2
QTStr("Basic.Settings.Stream.Custom.Password.ToolTip"));
3
} else {
4
int idx = ui->service->findText(service);
5
- /* 29.1 crash workaround: Fall back to "Custom" if service not found. */
6
- if (idx == -1)
7
- idx = 0;
8
-
9
+ if (idx == -1) {
10
+ if (service && *service)
11
+ ui->service->insertItem(1, service);
12
+ idx = 1;
13
+ }
14
ui->service->setCurrentIndex(idx);
15
lastServiceIdx = idx;
16
17
18
19
obs_properties_destroy(props);
20
21
- return QT_UTF8(obs_data_get_string(settings, "protocol"));
22
+ const char *protocol =
23
+ obs_data_get_string(settings, "protocol");
24
+ if (protocol && *protocol)
25
+ return QT_UTF8(protocol);
26
}
27
28
return QString("RTMP");
29
obs-studio-29.1.2.tar.xz/UI/window-basic-settings.cpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-settings.cpp
Changed
23
1
2
if (currentChannelIndex != channelIndex ||
3
currentSampleRateIndex != sampleRateIndex ||
4
currentLLAudioBufVal != llBufferingEnabled) {
5
- audioChanged = true;
6
ui->audioMsg->setText(
7
QTStr("Basic.Settings.ProgramRestart"));
8
- sender()->setProperty("changed", QVariant(true));
9
- EnableApplyButton(true);
10
} else {
11
- audioChanged = false;
12
ui->audioMsg->setText("");
13
- sender()->setProperty("changed", QVariant(false));
14
- EnableApplyButton(false);
15
}
16
+
17
+ audioChanged = true;
18
+ sender()->setProperty("changed", QVariant(true));
19
+ EnableApplyButton(true);
20
}
21
}
22
23
obs-studio-29.1.2.tar.xz/UI/window-basic-source-select.cpp -> obs-studio-29.1.3.tar.xz/UI/window-basic-source-select.cpp
Changed
10
1
2
{
3
if (strcmp(id, "scene") == 0)
4
return Str("Basic.Scene");
5
+ else if (strcmp(id, "group") == 0)
6
+ return Str("Group");
7
const char *v_id = obs_get_latest_input_type_id(id);
8
return obs_source_get_display_name(v_id);
9
}
10
obs-studio-29.1.2.tar.xz/deps/obs-scripting/obs-scripting-lua.c -> obs-studio-29.1.3.tar.xz/deps/obs-scripting/obs-scripting-lua.c
Changed
15
1
2
/* call script_unload */
3
4
pthread_mutex_lock(&data->mutex);
5
+ current_lua_script = data;
6
7
lua_getglobal(script, "script_unload");
8
lua_pcall(script, 0, 0, 0);
9
10
+ current_lua_script = NULL;
11
+
12
/* ---------------------------- */
13
/* remove all callbacks */
14
15
obs-studio-29.1.2.tar.xz/docs/sphinx/reference-libobs-util-darray.rst -> obs-studio-29.1.3.tar.xz/docs/sphinx/reference-libobs-util-darray.rst
Changed
11
1
2
3
.. function:: void da_erase_range(da, size_t start_idx, size_t end_idx)
4
5
- Erases a range of values.
6
+ Erases a range of values, including the element at ``start_idx``, but
7
+ not the one at ``end_idx``.
8
9
:param da: The dynamic array
10
:param start_idx: The starting index
11
obs-studio-29.1.2.tar.xz/libobs/obs-config.h -> obs-studio-29.1.3.tar.xz/libobs/obs-config.h
Changed
10
1
2
*
3
* Reset to zero each major or minor version
4
*/
5
-#define LIBOBS_API_PATCH_VER 2
6
+#define LIBOBS_API_PATCH_VER 3
7
8
#define MAKE_SEMANTIC_VERSION(major, minor, patch) \
9
((major << 24) | (minor << 16) | patch)
10
obs-studio-29.1.2.tar.xz/libobs/obs-internal.h -> obs-studio-29.1.3.tar.xz/libobs/obs-internal.h
Changed
9
1
2
volatile bool valid;
3
4
DARRAY(char *) protocols;
5
+ DARRAY(obs_source_t *) sources_to_tick;
6
};
7
8
/* user hotkeys */
9
obs-studio-29.1.2.tar.xz/libobs/obs-properties.c -> obs-studio-29.1.3.tar.xz/libobs/obs-properties.c
Changed
22
1
2
obs_data_t *settings,
3
obs_properties_t *realprops)
4
{
5
- struct obs_property *p, *tmp;
6
+ struct obs_property *p = props->properties;
7
8
- HASH_ITER (hh, props->properties, p, tmp) {
9
+ while (p) {
10
if (p->type == OBS_PROPERTY_GROUP) {
11
obs_properties_apply_settings_internal(
12
obs_property_group_content(p), settings,
13
14
p->modified(realprops, p, settings);
15
else if (p->modified2)
16
p->modified2(p->priv, realprops, p, settings);
17
+
18
+ p = p->hh.next;
19
}
20
}
21
22
obs-studio-29.1.2.tar.xz/libobs/obs-video.c -> obs-studio-29.1.3.tar.xz/libobs/obs-video.c
Changed
55
1
2
/* ------------------------------------- */
3
/* call tick callbacks */
4
5
- pthread_mutex_lock(&obs->data.draw_callbacks_mutex);
6
+ pthread_mutex_lock(&data->draw_callbacks_mutex);
7
8
- for (size_t i = obs->data.tick_callbacks.num; i > 0; i--) {
9
+ for (size_t i = data->tick_callbacks.num; i > 0; i--) {
10
struct tick_callback *callback;
11
- callback = obs->data.tick_callbacks.array + (i - 1);
12
+ callback = data->tick_callbacks.array + (i - 1);
13
callback->tick(callback->param, seconds);
14
}
15
16
- pthread_mutex_unlock(&obs->data.draw_callbacks_mutex);
17
+ pthread_mutex_unlock(&data->draw_callbacks_mutex);
18
19
/* ------------------------------------- */
20
- /* call the tick function of each source */
21
+ /* get an array of all sources to tick */
22
+
23
+ da_clear(data->sources_to_tick);
24
25
pthread_mutex_lock(&data->sources_mutex);
26
27
source = data->sources;
28
while (source) {
29
obs_source_t *s = obs_source_get_ref(source);
30
-
31
- if (s) {
32
- obs_source_video_tick(s, seconds);
33
- obs_source_release(s);
34
- }
35
-
36
+ if (s)
37
+ da_push_back(data->sources_to_tick, &s);
38
source = (struct obs_source *)source->context.hh_uuid.next;
39
}
40
41
pthread_mutex_unlock(&data->sources_mutex);
42
43
+ /* ------------------------------------- */
44
+ /* call the tick function of each source */
45
+
46
+ for (size_t i = 0; i < data->sources_to_tick.num; i++) {
47
+ obs_source_t *s = data->sources_to_tick.arrayi;
48
+ obs_source_video_tick(s, seconds);
49
+ obs_source_release(s);
50
+ }
51
+
52
return cur_time;
53
}
54
55
obs-studio-29.1.2.tar.xz/libobs/obs.c -> obs-studio-29.1.3.tar.xz/libobs/obs.c
Changed
21
1
2
3
int errorcode;
4
#ifdef __APPLE__
5
- errorcode = pthread_create(&video->video_thread, NULL,
6
+ pthread_attr_t attr;
7
+ pthread_attr_init(&attr);
8
+ pthread_attr_set_qos_class_np(&attr, QOS_CLASS_USER_INTERACTIVE, 0);
9
+ errorcode = pthread_create(&video->video_thread, &attr,
10
obs_graphics_thread_autorelease, obs);
11
#else
12
errorcode = pthread_create(&video->video_thread, NULL,
13
14
for (size_t i = 0; i < data->protocols.num; i++)
15
bfree(data->protocols.arrayi);
16
da_free(data->protocols);
17
+ da_free(data->sources_to_tick);
18
}
19
20
static const char *obs_signals = {
21
obs-studio-29.1.2.tar.xz/libobs/util/darray.h -> obs-studio-29.1.3.tar.xz/libobs/util/darray.h
Changed
35
1
2
dst->capacity = new_cap;
3
}
4
5
+static inline void darray_clear(struct darray *dst)
6
+{
7
+ dst->num = 0;
8
+}
9
+
10
static inline void darray_resize(const size_t element_size, struct darray *dst,
11
const size_t size)
12
{
13
14
if (idx == dst->num)
15
return darray_push_back_new(element_size, dst);
16
17
- item = darray_item(element_size, dst, idx);
18
-
19
move_count = dst->num - idx;
20
darray_ensure_capacity(element_size, dst, ++dst->num);
21
+
22
+ item = darray_item(element_size, dst, idx);
23
memmove(darray_item(element_size, dst, idx + 1), item,
24
move_count * element_size);
25
26
27
28
#define da_resize(v, size) darray_resize(sizeof(*v.array), &v.da, size)
29
30
+#define da_clear(v) darray_clear(&v.da)
31
+
32
#define da_copy(dst, src) darray_copy(sizeof(*dst.array), &dst.da, &src.da)
33
34
#define da_copy_array(dst, src_array, n) \
35
obs-studio-29.1.2.tar.xz/plugins/mac-capture/mac-screen-capture.m -> obs-studio-29.1.3.tar.xz/plugins/mac-capture/mac-screen-capture.m
Changed
14
1
2
} break;
3
}
4
os_sem_post(sc->shareable_content_available);
5
+
6
+ CGColorRef background = CGColorGetConstantColor(kCGColorClear);
7
sc->stream_properties setQueueDepth:8;
8
sc->stream_properties setShowsCursor:!sc->hide_cursor;
9
sc->stream_properties setColorSpaceName:kCGColorSpaceDisplayP3;
10
+ sc->stream_properties setBackgroundColor:background;
11
FourCharCode l10r_type = 0;
12
l10r_type = ('l' << 24) | ('1' << 16) | ('0' << 8) | 'r';
13
sc->stream_properties setPixelFormat:l10r_type;
14
obs-studio-29.1.2.tar.xz/plugins/obs-ffmpeg/texture-amf.cpp -> obs-studio-29.1.3.tar.xz/plugins/obs-ffmpeg/texture-amf.cpp
Changed
167
1
2
AMF_SURFACE_FORMAT amf_format;
3
4
amf_int64 max_throughput = 0;
5
+ amf_int64 requested_throughput = 0;
6
amf_int64 throughput = 0;
7
int64_t dts_offset = 0;
8
uint32_t cx;
9
10
if (res == AMF_OK) {
11
caps->GetProperty(get_opt_name(CAP_MAX_THROUGHPUT),
12
&enc->max_throughput);
13
+ caps->GetProperty(get_opt_name(CAP_REQUESTED_THROUGHPUT),
14
+ &enc->requested_throughput);
15
}
16
}
17
18
19
preset = "quality";
20
set_opt(QUALITY_PRESET, get_preset(enc, preset));
21
} else {
22
- if (enc->max_throughput < enc->throughput) {
23
+ if (enc->max_throughput - enc->requested_throughput <
24
+ enc->throughput) {
25
preset = "quality";
26
refresh_throughput_caps(enc, preset);
27
}
28
29
preset = "balanced";
30
set_opt(QUALITY_PRESET, get_preset(enc, preset));
31
} else {
32
- if (enc->max_throughput < enc->throughput) {
33
+ if (enc->max_throughput - enc->requested_throughput <
34
+ enc->throughput) {
35
preset = "balanced";
36
refresh_throughput_caps(enc, preset);
37
}
38
39
40
if (astrcmpi(preset, "balanced") == 0) {
41
if (enc->max_throughput &&
42
- enc->max_throughput < enc->throughput) {
43
+ enc->max_throughput - enc->requested_throughput <
44
+ enc->throughput) {
45
preset = "speed";
46
refresh_throughput_caps(enc, preset);
47
}
48
49
int64_t qp = obs_data_get_int(settings, "cqp");
50
const char *rc_str = obs_data_get_string(settings, "rate_control");
51
int rc = get_avc_rate_control(rc_str);
52
- AMF_RESULT res;
53
+ AMF_RESULT res = AMF_OK;
54
55
amf_avc_update_data(enc, rc, bitrate * 1000, qp);
56
57
+ res = enc->amf_encoder->Flush();
58
+ if (res != AMF_OK)
59
+ throw amf_error("AMFComponent::Flush failed", res);
60
+
61
res = enc->amf_encoder->ReInit(enc->cx, enc->cy);
62
if (res != AMF_OK)
63
- throw amf_error("AMFComponent::Init failed", res);
64
+ throw amf_error("AMFComponent::ReInit failed", res);
65
66
return true;
67
68
69
&enc->bframes_supported);
70
caps->GetProperty(AMF_VIDEO_ENCODER_CAP_MAX_THROUGHPUT,
71
&enc->max_throughput);
72
+ caps->GetProperty(AMF_VIDEO_ENCODER_CAP_REQUESTED_THROUGHPUT,
73
+ &enc->requested_throughput);
74
}
75
76
const char *preset = obs_data_get_string(settings, "preset");
77
78
amf_encoder_info.get_name = amf_avc_get_name;
79
amf_encoder_info.create = amf_avc_create_texencode;
80
amf_encoder_info.destroy = amf_destroy;
81
- /* FIXME: Figure out why encoder does not survive reconfiguration
82
- amf_encoder_info.update = amf_avc_update; */
83
+ amf_encoder_info.update = amf_avc_update;
84
amf_encoder_info.encode_texture = amf_encode_tex;
85
amf_encoder_info.get_defaults = amf_defaults;
86
amf_encoder_info.get_properties = amf_avc_properties;
87
88
int64_t qp = obs_data_get_int(settings, "cqp");
89
const char *rc_str = obs_data_get_string(settings, "rate_control");
90
int rc = get_hevc_rate_control(rc_str);
91
- AMF_RESULT res;
92
+ AMF_RESULT res = AMF_OK;
93
94
amf_hevc_update_data(enc, rc, bitrate * 1000, qp);
95
96
+ res = enc->amf_encoder->Flush();
97
+ if (res != AMF_OK)
98
+ throw amf_error("AMFComponent::Flush failed", res);
99
+
100
res = enc->amf_encoder->ReInit(enc->cx, enc->cy);
101
if (res != AMF_OK)
102
- throw amf_error("AMFComponent::Init failed", res);
103
+ throw amf_error("AMFComponent::ReInit failed", res);
104
105
return true;
106
107
108
if (res == AMF_OK) {
109
caps->GetProperty(AMF_VIDEO_ENCODER_HEVC_CAP_MAX_THROUGHPUT,
110
&enc->max_throughput);
111
+ caps->GetProperty(
112
+ AMF_VIDEO_ENCODER_HEVC_CAP_REQUESTED_THROUGHPUT,
113
+ &enc->requested_throughput);
114
}
115
116
const bool is10bit = enc->amf_format == AMF_SURFACE_P010;
117
118
amf_encoder_info.get_name = amf_hevc_get_name;
119
amf_encoder_info.create = amf_hevc_create_texencode;
120
amf_encoder_info.destroy = amf_destroy;
121
- /* FIXME: Figure out why encoder does not survive reconfiguration
122
- amf_encoder_info.update = amf_hevc_update; */
123
+ amf_encoder_info.update = amf_hevc_update;
124
amf_encoder_info.encode_texture = amf_encode_tex;
125
amf_encoder_info.get_defaults = amf_defaults;
126
amf_encoder_info.get_properties = amf_hevc_properties;
127
128
int64_t cq_level = obs_data_get_int(settings, "cqp");
129
const char *rc_str = obs_data_get_string(settings, "rate_control");
130
int rc = get_av1_rate_control(rc_str);
131
+ AMF_RESULT res = AMF_OK;
132
133
amf_av1_update_data(enc, rc, bitrate * 1000, cq_level);
134
135
- AMF_RESULT res = enc->amf_encoder->ReInit(enc->cx, enc->cy);
136
+ res = enc->amf_encoder->Flush();
137
if (res != AMF_OK)
138
- throw amf_error("AMFComponent::Init failed", res);
139
+ throw amf_error("AMFComponent::Flush failed", res);
140
+
141
+ res = enc->amf_encoder->ReInit(enc->cx, enc->cy);
142
+ if (res != AMF_OK)
143
+ throw amf_error("AMFComponent::ReInit failed", res);
144
145
return true;
146
147
148
if (res == AMF_OK) {
149
caps->GetProperty(AMF_VIDEO_ENCODER_AV1_CAP_MAX_THROUGHPUT,
150
&enc->max_throughput);
151
+ caps->GetProperty(
152
+ AMF_VIDEO_ENCODER_AV1_CAP_REQUESTED_THROUGHPUT,
153
+ &enc->requested_throughput);
154
}
155
156
const bool is10bit = enc->amf_format == AMF_SURFACE_P010;
157
158
amf_encoder_info.get_name = amf_av1_get_name;
159
amf_encoder_info.create = amf_av1_create_texencode;
160
amf_encoder_info.destroy = amf_destroy;
161
- /* FIXME: Figure out why encoder does not survive reconfiguration
162
- amf_encoder_info.update = amf_av1_update; */
163
+ amf_encoder_info.update = amf_av1_update;
164
amf_encoder_info.encode_texture = amf_encode_tex;
165
amf_encoder_info.get_defaults = amf_av1_defaults;
166
amf_encoder_info.get_properties = amf_av1_properties;
167
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/CMakeLists.txt -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/CMakeLists.txt
Changed
19
1
2
3
legacy_check()
4
5
-set(obs-websocket_VERSION 5.2.2)
6
+set(obs-websocket_VERSION 5.2.3)
7
set(OBS_WEBSOCKET_RPC_VERSION 1)
8
9
option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)
10
11
$<$<PLATFORM_ID:Darwin,Linux,FreeBSD>:-Wall>
12
$<$<COMPILE_LANG_AND_ID:CXX,GNU,AppleClang,Clang>:-Wno-error=float-conversion;-Wno-error=shadow>
13
$<$<COMPILE_LANG_AND_ID:CXX,GNU>:-Wno-error=format-overflow;-Wno-error=int-conversion;-Wno-error=comment>
14
- $<$<COMPILE_LANG_AND_ID:CXX,AppleClang,Clang>:-Wno-error=null-pointer-subtraction;-Wno-error=deprecated-declarations;-Wno-error=implicit-int-conversion;-Wno-error=shorten-64-to-32>
15
+ $<$<COMPILE_LANG_AND_ID:CXX,AppleClang,Clang>:-Wno-error=null-pointer-subtraction;-Wno-error=deprecated-declarations;-Wno-error=implicit-int-conversion;-Wno-error=shorten-64-to-32;-Wno-comma;-Wno-quoted-include-in-framework-header>
16
)
17
18
target_link_libraries(
19
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/cmake/legacy.cmake -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/cmake/legacy.cmake
Changed
7
1
2
-project(obs-websocket VERSION 5.2.2)
3
+project(obs-websocket VERSION 5.2.3)
4
set(OBS_WEBSOCKET_RPC_VERSION 1)
5
6
option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)
7
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/docs/generated/protocol.json -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/docs/generated/protocol.json
Changed
16
1
2
"enumValue": 206
3
},
4
{
5
+ "description": "The server is not ready to handle the request.\n\nNote: This usually occurs during OBS scene collection change or exit. Requests may be tried again after a delay if this code is given.",
6
+ "enumIdentifier": "NotReady",
7
+ "rpcVersion": "1",
8
+ "deprecated": false,
9
+ "initialVersion": "5.3.0",
10
+ "enumValue": 207
11
+ },
12
+ {
13
"description": "A required request field is missing.",
14
"enumIdentifier": "MissingRequestField",
15
"rpcVersion": "1",
16
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/docs/generated/protocol.md -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/docs/generated/protocol.md
Changed
28
1
2
- RequestStatus::UnknownRequestType(#requeststatusunknownrequesttype)
3
- RequestStatus::GenericError(#requeststatusgenericerror)
4
- RequestStatus::UnsupportedRequestBatchExecutionType(#requeststatusunsupportedrequestbatchexecutiontype)
5
+ - RequestStatus::NotReady(#requeststatusnotready)
6
- RequestStatus::MissingRequestField(#requeststatusmissingrequestfield)
7
- RequestStatus::MissingRequestData(#requeststatusmissingrequestdata)
8
- RequestStatus::InvalidRequestField(#requeststatusinvalidrequestfield)
9
10
11
---
12
13
+### RequestStatus::NotReady
14
+
15
+The server is not ready to handle the request.
16
+
17
+Note: This usually occurs during OBS scene collection change or exit. Requests may be tried again after a delay if this code is given.
18
+
19
+- Identifier Value: `207`
20
+- Latest Supported RPC Version: `1`
21
+- Added in v5.3.0
22
+
23
+---
24
+
25
### RequestStatus::MissingRequestField
26
27
A required request field is missing.
28
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/src/eventhandler/EventHandler.cpp -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/src/eventhandler/EventHandler.cpp
Changed
10
1
2
case OBS_FRONTEND_EVENT_FINISHED_LOADING:
3
eventHandler->FrontendFinishedLoadingMultiHandler();
4
break;
5
- case OBS_FRONTEND_EVENT_EXIT:
6
+ case OBS_FRONTEND_EVENT_SCRIPTING_SHUTDOWN:
7
eventHandler->FrontendExitMultiHandler();
8
break;
9
10
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/src/eventhandler/EventHandler_Scenes.cpp -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/src/eventhandler/EventHandler_Scenes.cpp
Changed
13
1
2
OBSSourceAutoRelease currentScene = obs_frontend_get_current_scene();
3
4
json eventData;
5
- eventData"sceneName" = obs_source_get_name(currentScene);
6
+ if (currentScene)
7
+ eventData"sceneName" = obs_source_get_name(currentScene);
8
+ else
9
+ eventData"sceneName" = nullptr;
10
BroadcastEvent(EventSubscription::Scenes, "CurrentProgramSceneChanged", eventData);
11
}
12
13
obs-studio-29.1.2.tar.xz/plugins/obs-websocket/src/requesthandler/types/RequestStatus.h -> obs-studio-29.1.3.tar.xz/plugins/obs-websocket/src/requesthandler/types/RequestStatus.h
Changed
21
1
2
* @api enums
3
*/
4
UnsupportedRequestBatchExecutionType = 206,
5
+ /**
6
+ * The server is not ready to handle the request.
7
+ *
8
+ * Note: This usually occurs during OBS scene collection change or exit. Requests may be tried again after a delay if this code is given.
9
+ *
10
+ * @enumIdentifier NotReady
11
+ * @enumValue 207
12
+ * @enumType RequestStatus
13
+ * @rpcVersion -1
14
+ * @initialVersion 5.3.0
15
+ * @api enums
16
+ */
17
+ NotReady = 207,
18
19
/**
20
* A required request field is missing.
21
obs-studio-29.1.2.tar.xz/plugins/text-freetype2/text-freetype2.c -> obs-studio-29.1.3.tar.xz/plugins/text-freetype2/text-freetype2.c
Changed
13
1
2
srcdata->log_lines = log_lines;
3
vbuf_needs_update = true;
4
}
5
- srcdata->log_mode = chat_log_mode;
6
+ if (srcdata->log_mode != chat_log_mode) {
7
+ srcdata->log_mode = chat_log_mode;
8
+ vbuf_needs_update = true;
9
+ }
10
11
if (ft2_lib == NULL)
12
goto error;
13
obs-studio-29.1.2.tar.xz/plugins/text-freetype2/text-functionality.c -> obs-studio-29.1.3.tar.xz/plugins/text-freetype2/text-functionality.c
Changed
11
1
2
next_char:;
3
glyph_index =
4
FT_Get_Char_Index(srcdata->font_face, srcdata->texti);
5
- word_width += src_glyph->xadv;
6
+ if (src_glyph)
7
+ word_width += src_glyph->xadv;
8
eos_skip:;
9
}
10
11
obs-studio-29.1.2.tar.xz/plugins/win-capture/compat-helpers.c -> obs-studio-29.1.3.tar.xz/plugins/win-capture/compat-helpers.c
Changed
25
1
2
const char *j_title = get_string_val(entry, "window_title");
3
const char *j_class = get_string_val(entry, "window_class");
4
5
- if (win_class && (match_flags & MATCH_CLASS) &&
6
- strcmp(win_class, j_class) != 0)
7
+ if ((match_flags & MATCH_CLASS) &&
8
+ (!win_class || strcmp(win_class, j_class) != 0))
9
continue;
10
- if (exe && (match_flags & MATCH_EXE) &&
11
- astrcmpi(exe, j_exe) != 0)
12
+ if ((match_flags & MATCH_EXE) &&
13
+ (!exe || astrcmpi(exe, j_exe) != 0))
14
continue;
15
/* Title supports partial matches as some games append additional
16
* information after the title, e.g., "Minecraft 1.18". */
17
- if (win_title && (match_flags & MATCH_TITLE) &&
18
- astrcmpi_n(win_title, j_title, strlen(j_title)) != 0)
19
+ if ((match_flags & MATCH_TITLE) &&
20
+ (!win_title ||
21
+ astrcmpi_n(win_title, j_title, strlen(j_title)) != 0))
22
continue;
23
24
/* Attempt to translate and compile message */
25
obs-studio-29.1.2.tar.xz/plugins/win-capture/data/compatibility.json -> obs-studio-29.1.3.tar.xz/plugins/win-capture/data/compatibility.json
Changed
22
1
2
"window_capture_wgc": false,
3
"message": "Edge may not be capturable using the selected Capture Method (BitBlt).",
4
"url": ""
5
+ },
6
+ {
7
+ "name": "Honkai: Star Rail",
8
+ "translation_key": "Compatibility.GameCapture.Admin",
9
+ "severity": 1,
10
+ "executable": "StarRail.exe",
11
+ "window_class": "",
12
+ "window_title": "",
13
+ "match_flags": 1,
14
+ "game_capture": true,
15
+ "window_capture": false,
16
+ "window_capture_wgc": false,
17
+ "message": "Honkai: Star Rail may require OBS to be run as admin to use Game Capture.",
18
+ "url": "https://obsproject.com/kb/game-capture-troubleshooting"
19
}
20
21
}
22
obs-studio-29.1.2.tar.xz/plugins/win-capture/data/package.json -> obs-studio-29.1.3.tar.xz/plugins/win-capture/data/package.json
Changed
15
1
2
{
3
"$schema": "schema/package-schema.json",
4
"url": "https://obsproject.com/obs2_update/win-capture/v1",
5
- "version": 1,
6
+ "version": 2,
7
"files":
8
{
9
"name": "compatibility.json",
10
- "version": 1
11
+ "version": 2
12
}
13
14
}
15