Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
jami-client-windows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
savoirfairelinux
jami-client-windows
Commits
bf67431e
Commit
bf67431e
authored
Jan 25, 2016
by
Edric Milaret
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix warnings
Change-Id: Ideda88e70a0784fadd5ef45f0d2dce997996dd19 Tuleap: #148
parent
1ddb38d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
videowidget.cpp
videowidget.cpp
+2
-2
No files found.
videowidget.cpp
View file @
bf67431e
...
...
@@ -83,7 +83,7 @@ VideoWidget::paintEvent(QPaintEvent* evt) {
QMutexLocker
lock
(
&
mutex_
);
if
(
currentDistantFrame_
.
storage
.
size
()
!=
0
&&
currentDistantFrame_
.
storage
.
size
()
==
(
renderer_
->
size
().
height
()
*
renderer_
->
size
().
width
()
*
4
))
{
(
unsigned
int
)(
renderer_
->
size
().
height
()
*
renderer_
->
size
().
width
()
*
4
))
{
frameDistant_
=
std
::
move
(
currentDistantFrame_
.
storage
);
distantImage_
.
reset
(
new
QImage
((
uchar
*
)
frameDistant_
.
data
(),
renderer_
->
size
().
width
(),
...
...
@@ -103,7 +103,7 @@ VideoWidget::paintEvent(QPaintEvent* evt) {
QMutexLocker
lock
(
&
mutex_
);
if
(
currentPreviewFrame_
.
storage
.
size
()
!=
0
&&
currentPreviewFrame_
.
storage
.
size
()
==
(
previewRenderer_
->
size
().
height
()
*
previewRenderer_
->
size
().
width
()
*
4
))
{
(
unsigned
int
)(
previewRenderer_
->
size
().
height
()
*
previewRenderer_
->
size
().
width
()
*
4
))
{
framePreview_
=
std
::
move
(
currentPreviewFrame_
.
storage
);
previewImage_
.
reset
(
new
QImage
((
uchar
*
)
framePreview_
.
data
(),
previewRenderer_
->
size
().
width
(),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment