Skip to content

Commit 9d19ce4

Browse files
committed
Version 0.2.1
1440p and 9:16 support (experimental)
1 parent 09d87f4 commit 9d19ce4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/droidcam.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
1 VERSIONINFO
2-
FILEVERSION 0,2,0,0
2+
FILEVERSION 0,2,1,0
33
BEGIN
44
BLOCK "StringFileInfo"
55
BEGIN

src/plugin.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ QAction *auto_start_action;
3838
QAction *tools_menu_action;
3939
#endif
4040

41-
const char *PluginVer = "020";
41+
const char *PluginVer = "021";
4242
const char *PluginName = "DroidCam Virtual Output";
4343
obs_output_t *droidcam_virtual_output = NULL;
4444
config_t *obs_config = NULL;

src/structs.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#pragma warning(disable : 4505)
44

55
#define CONTROL 0x02020101
6-
#define MAX_WIDTH 1920
7-
#define MAX_HEIGHT 1080
6+
#define MAX_WIDTH 3860
7+
#define MAX_HEIGHT 2160
88
#define DEF_WIDTH 640
99
#define DEF_HEIGHT 480
1010

@@ -24,9 +24,9 @@
2424
#define AUDIO_MAP_SIZE (sizeof(AudioHeader) + (AUDIO_DATA_SIZE * CHUNKS_COUNT))
2525

2626
#define AUDIO_MAP_NAME L"DroidCamOBS_AudioOut0"
27-
#define VIDEO_MAP_NAME L"DroidCamOBS_VideoOut0"
28-
#define VIDEO_WR_LOCK_NAME L"DroidCamOBS_VideoWr0"
29-
#define VIDEO_RD_LOCK_NAME L"DroidCamOBS_VideoRd0"
27+
#define VIDEO_MAP_NAME L"DroidCamOBS_VideoOut1"
28+
#define VIDEO_WR_LOCK_NAME L"DroidCamOBS_VideoWr1"
29+
#define VIDEO_RD_LOCK_NAME L"DroidCamOBS_VideoRd1"
3030

3131
#define REG_WEBCAM_SIZE_KEY L"SOFTWARE\\DroidCam"
3232
#define REG_WEBCAM_SIZE_VAL L"Size"

0 commit comments

Comments
 (0)