Skip to content

Commit bc8b045

Browse files
committed
Version 2.3.2
Increase MAXPACKET limit.
1 parent 540951d commit bc8b045

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/droidcam.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
1 VERSIONINFO
2-
FILEVERSION 2,3,1,0
2+
FILEVERSION 2,3,2,0
33
BEGIN
44
BLOCK "StringFileInfo"
55
BEGIN
@@ -11,7 +11,7 @@ BEGIN
1111
VALUE "OriginalFilename", "droidcam-obs.dll"
1212
VALUE "ProductName", "DroidCam"
1313
VALUE "ProductVersion", "7"
14-
VALUE "LegalCopyright", "DEV47APPS, 2023"
14+
VALUE "LegalCopyright", "DEV47APPS, 2024"
1515
END
1616
END
1717

src/source.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extern QMainWindow *main_window;
3838
#include "buffer_util.h"
3939
#include "device_discovery.h"
4040

41-
#define PLUGIN_VERSION_STR "231"
41+
#define PLUGIN_VERSION_STR "232"
4242
#define FPS 25
4343
#define MILLI_SEC 1000
4444
#define NANO_SEC 1000000000
@@ -174,7 +174,7 @@ static socket_t connect(struct droidcam_obs_source *plugin) {
174174
}
175175

176176
#define MAXCONFIG 1024
177-
#define MAXPACKET 1024 * 1024
177+
#define MAXPACKET 1024 * 1024 * 16
178178
static DataPacket*
179179
read_frame(Decoder *decoder, socket_t sock, int *has_config)
180180
{

0 commit comments

Comments
 (0)