diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-26 01:10:35 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-26 01:10:35 +0200 |
commit | b28fa86e6ab633b2d3d9bfdb4642c661ff8c45fc (patch) | |
tree | e3500273bcd79fc9e6389e8dcc626607a2677678 /src/voip/WebRTCSession.cpp | |
parent | Merge pull request #1215 from foxB612/fix-thumbnail-size (diff) | |
download | nheko-b28fa86e6ab633b2d3d9bfdb4642c661ff8c45fc.tar.xz |
Enable -Wconversion
Diffstat (limited to '')
-rw-r--r-- | src/voip/WebRTCSession.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/voip/WebRTCSession.cpp b/src/voip/WebRTCSession.cpp index b3e6bf26..706a69d9 100644 --- a/src/voip/WebRTCSession.cpp +++ b/src/voip/WebRTCSession.cpp @@ -141,7 +141,8 @@ parseSDP(const std::string &sdp, GstWebRTCSDPType type) { GstSDPMessage *msg; gst_sdp_message_new(&msg); - if (gst_sdp_message_parse_buffer((guint8 *)sdp.c_str(), sdp.size(), msg) == GST_SDP_OK) { + if (gst_sdp_message_parse_buffer((guint8 *)sdp.c_str(), static_cast<guint>(sdp.size()), msg) == + GST_SDP_OK) { return gst_webrtc_session_description_new(type, msg); } else { nhlog::ui()->error("WebRTC: failed to parse remote session description"); @@ -371,9 +372,12 @@ getResolution(GstElement *pipe, const gchar *elementName, const gchar *padName) std::pair<int, int> getPiPDimensions(const std::pair<int, int> &resolution, int fullWidth, double scaleFactor) { - int pipWidth = fullWidth * scaleFactor; - int pipHeight = static_cast<double>(resolution.second) / resolution.first * pipWidth; - return {pipWidth, pipHeight}; + double pipWidth = fullWidth * scaleFactor; + double pipHeight = static_cast<double>(resolution.second) / resolution.first * pipWidth; + return { + static_cast<int>(std::ceil(pipWidth)), + static_cast<int>(std::ceil(pipHeight)), + }; } void |