Skip to content

Commit

Permalink
Version 2.3.2
Browse files Browse the repository at this point in the history
Increase MAXPACKET limit.
  • Loading branch information
aramg committed Mar 12, 2024
1 parent 540951d commit bc8b045
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/droidcam.rc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1 VERSIONINFO
FILEVERSION 2,3,1,0
FILEVERSION 2,3,2,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
Expand All @@ -11,7 +11,7 @@ BEGIN
VALUE "OriginalFilename", "droidcam-obs.dll"
VALUE "ProductName", "DroidCam"
VALUE "ProductVersion", "7"
VALUE "LegalCopyright", "DEV47APPS, 2023"
VALUE "LegalCopyright", "DEV47APPS, 2024"
END
END

Expand Down
4 changes: 2 additions & 2 deletions src/source.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern QMainWindow *main_window;
#include "buffer_util.h"
#include "device_discovery.h"

#define PLUGIN_VERSION_STR "231"
#define PLUGIN_VERSION_STR "232"
#define FPS 25
#define MILLI_SEC 1000
#define NANO_SEC 1000000000
Expand Down Expand Up @@ -174,7 +174,7 @@ static socket_t connect(struct droidcam_obs_source *plugin) {
}

#define MAXCONFIG 1024
#define MAXPACKET 1024 * 1024
#define MAXPACKET 1024 * 1024 * 16
static DataPacket*
read_frame(Decoder *decoder, socket_t sock, int *has_config)
{
Expand Down

2 comments on commit bc8b045

@neofeo
Copy link

@neofeo neofeo commented on bc8b045 May 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi! we need a ffmpeg 6 release since a wild ubuntu noble appeared thanks!

@aramg
Copy link
Collaborator Author

@aramg aramg commented on bc8b045 May 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the Flatpak package is linked against ffmpeg 6 and should work

Please sign in to comment.