Skip to content

Commit

Permalink
Current version of Psi+ is 1.5.1733
Browse files Browse the repository at this point in the history
It is based on:
* psi: ccdbb7d4
* plugins: 3c71dec
* psimedia: ef69a21
* resources: 2ef1865
  • Loading branch information
tehnick committed Apr 1, 2024
1 parent d7c4176 commit e8061e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions plugins/generic/psimedia/gstprovider/modes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ QList<PVideoParams> modes_supportedVideo()
p.size = QSize(640, 480);
p.fps = 30;
list += p;

p.size = { 1280, 720 };
list += p;
}

return list;
Expand Down
6 changes: 3 additions & 3 deletions plugins/generic/psimedia/gstprovider/rtpworker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -995,9 +995,9 @@ bool RtpWorker::startSend(int rate)

if (!vin.isEmpty() && !localVideoParams.isEmpty()) {
PipelineDeviceOptions opts;
// opts.videoSize = localVideoParams[0].size;
opts.videoSize = QSize(640, 480);
opts.fps = 30;
opts.videoSize = localVideoParams[0].size;
// opts.videoSize = QSize(640, 480);
opts.fps = 30;

pd_videosrc = PipelineDeviceContext::create(send_pipelineContext, vin, PDevice::VideoIn,
hardwareDeviceMonitor_, opts);
Expand Down

0 comments on commit e8061e4

Please sign in to comment.