[SCM] libav/experimental: hevc/intra_pred: simplify neighboring sample derivation

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:03:13 UTC 2014


The following commit has been merged in the experimental branch:
commit c9f8809ee4c576d5833865039bc1c85754448f67
Author: Anton Khirnov <anton at khirnov.net>
Date:   Sat May 17 22:30:42 2014 +0200

    hevc/intra_pred: simplify neighboring sample derivation

diff --git a/libavcodec/hevcpred_template.c b/libavcodec/hevcpred_template.c
index 8e80f81..53b9c59 100644
--- a/libavcodec/hevcpred_template.c
+++ b/libavcodec/hevcpred_template.c
@@ -159,10 +159,10 @@ do {                                  \
         }
     }
     if (cand_bottom_left) {
-        for (i = size + bottom_left_size; i < (size << 1); i++)
-            left[i] = POS(-1, size + bottom_left_size - 1);
-        for (i = size + bottom_left_size - 1; i >= size; i--)
+        for (i = size; i < size + bottom_left_size; i++)
             left[i] = POS(-1, i);
+        EXTEND(left + size + bottom_left_size, POS(-1, size + bottom_left_size - 1),
+               size - bottom_left_size);
     }
     if (cand_left)
         for (i = size - 1; i >= 0; i--)
@@ -172,13 +172,11 @@ do {                                  \
         top[-1]  = left[-1];
     }
     if (cand_up)
-        for (i = size - 1; i >= 0; i--)
-            top[i] = POS(i, -1);
+        memcpy(top, src - stride, size * sizeof(pixel));
     if (cand_up_right) {
-        for (i = size + top_right_size; i < (size << 1); i++)
-            top[i] = POS(size + top_right_size - 1, -1);
-        for (i = size + top_right_size - 1; i >= size; i--)
-            top[i] = POS(i, -1);
+        memcpy(top + size, src - stride + size, size * sizeof(pixel));
+        EXTEND(top + size + top_right_size, POS(size + top_right_size - 1, -1),
+               size - top_right_size);
     }
 
     if (s->pps->constrained_intra_pred_flag == 1) {

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list