Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2013-12-15 16:18:12 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-12-15 16:18:12 +0400
commit210f2d6a4a99708be3b0809c5ca122a0dc34557f (patch)
tree95cd0f58710b51de06e5fc2774e4f653e215dd6e /decoder/LAVVideo/pixconv/convert_generic.cpp
parent3c95c2263f471e933ed1633fb3540dc9f4fc0fb3 (diff)
Remove superfluous parameter
Diffstat (limited to 'decoder/LAVVideo/pixconv/convert_generic.cpp')
-rw-r--r--decoder/LAVVideo/pixconv/convert_generic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/LAVVideo/pixconv/convert_generic.cpp b/decoder/LAVVideo/pixconv/convert_generic.cpp
index 234b947a..6c4af788 100644
--- a/decoder/LAVVideo/pixconv/convert_generic.cpp
+++ b/decoder/LAVVideo/pixconv/convert_generic.cpp
@@ -85,7 +85,7 @@ DECLARE_CONV_FUNC_IMPL(convert_generic)
hr = swscale_scale(inputFmt, AV_PIX_FMT_YUV444P, src, srcStride, dst, width, height, dstStride, lav_pixfmt_desc[m_OutputPixFmt], true);
break;
case LAVOutPixFmt_RGB48:
- hr = swscale_scale(inputFmt, AV_PIX_FMT_RGB48LE, src, srcStride, dst, width, height, dstStride, lav_pixfmt_desc[m_OutputPixFmt], true);
+ hr = swscale_scale(inputFmt, AV_PIX_FMT_RGB48LE, src, srcStride, dst, width, height, dstStride, lav_pixfmt_desc[m_OutputPixFmt]);
break;
default:
ASSERT(0);