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-05-09 19:39:45 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-05-09 19:39:45 +0400
commit9fecf638811ef53335bbdbd7e499a2440efe770a (patch)
tree711107dd41083e64fe45b503608da7550c31292c /decoder/LAVVideo/pixconv
parentbfb425de58530a687cc1650caa1d2305c4371a25 (diff)
The RGB48->RGB24 converter doesn't actually use SSSE3
Diffstat (limited to 'decoder/LAVVideo/pixconv')
-rw-r--r--decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp b/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp
index 44864551..42c2ce56 100644
--- a/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp
+++ b/decoder/LAVVideo/pixconv/rgb2rgb_unscaled.cpp
@@ -83,7 +83,7 @@ DECLARE_CONV_FUNC_IMPL(convert_rgb48_rgb32_ssse3)
return S_OK;
}
-DECLARE_CONV_FUNC_IMPL(convert_rgb48_rgb24_ssse3)
+DECLARE_CONV_FUNC_IMPL(convert_rgb48_rgb24)
{
const uint16_t *rgb = (const uint16_t *)src[0];
const ptrdiff_t inStride = srcStride[0] >> 1;