Browse Source

Merge pull request #8527 from alexeylysenko/fix_videoreceiver_typo

Fixed 'if' typo in VideoReceiver::_makeSource method
QGC4.4
Gus Grubba 5 years ago committed by GitHub
parent
commit
be0cef2ff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/VideoStreaming/VideoReceiver.cc

2
src/VideoStreaming/VideoReceiver.cc

@ -332,7 +332,7 @@ VideoReceiver::_makeSource(const QString& uri) @@ -332,7 +332,7 @@ VideoReceiver::_makeSource(const QString& uri)
qCCritical(VideoReceiverLog) << "gst_caps_from_string() failed";
break;
}
} else if (isUdp264) {
} else if (isUdp265) {
if ((caps = gst_caps_from_string("application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H265")) == nullptr) {
qCCritical(VideoReceiverLog) << "gst_caps_from_string() failed";
break;

Loading…
Cancel
Save