Skip to content

Commit

Permalink
unused var warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
wang-bin committed May 12, 2014
1 parent 88b929f commit c2aabc2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/VideoRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ bool VideoRenderer::setPreferredPixelFormat(VideoFormat::PixelFormat pixfmt)

bool VideoRenderer::onSetPreferredPixelFormat(VideoFormat::PixelFormat pixfmt)
{
Q_UNUSED(pixfmt);
return true;
}

Expand All @@ -95,6 +96,7 @@ void VideoRenderer::forcePreferredPixelFormat(bool force)

bool VideoRenderer::onForcePreferredPixelFormat(bool force)
{
Q_UNUSED(force);
return true;
}

Expand All @@ -117,6 +119,7 @@ void VideoRenderer::scaleInRenderer(bool q)

bool VideoRenderer::onScaleInRenderer(bool q)
{
Q_UNUSED(q);
return true;
}

Expand Down Expand Up @@ -324,6 +327,7 @@ void VideoRenderer::setRegionOfInterest(const QRectF &roi)

bool VideoRenderer::onSetRegionOfInterest(const QRectF &roi)
{
Q_UNUSED(roi);
return true;
}

Expand Down

0 comments on commit c2aabc2

Please sign in to comment.