summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2019-01-16 03:34:27 -0500
committerBradley Sepos <[email protected]>2019-01-19 14:18:29 -0500
commit96e63ecf50d0bafd273ea17ff3f3bbf49ff42f7b (patch)
tree1f032640f1d0e243ee3b30f5db333d09d50df0be
parenta7e9979c4af79b97cbc57a77ff96223a24731d0b (diff)
libhb: Remove some NLMeans TODO comments.
NLMeans has used frame threading for years, so SIMD aside, these areas are sufficiently parallelized overall.
-rw-r--r--libhb/nlmeans.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libhb/nlmeans.c b/libhb/nlmeans.c
index 38b2c61c2..4a0621ecc 100644
--- a/libhb/nlmeans.c
+++ b/libhb/nlmeans.c
@@ -798,7 +798,6 @@ static void nlmeans_plane(NLMeansFunctions *functions,
// Apply special weight tuning to origin patch
if (dx == 0 && dy == 0 && f == 0)
{
- // TODO: Parallelize this
for (int y = n_half; y < dst_h-n + n_half; y++)
{
for (int x = n_half; x < dst_w-n + n_half; x++)
@@ -825,7 +824,6 @@ static void nlmeans_plane(NLMeansFunctions *functions,
dy);
// Average displacement
- // TODO: Parallelize this
for (int y = 0; y <= dst_h-n; y++)
{
const uint32_t *integral_ptr1 = integral + (y -1)*integral_stride - 1;