From 1d735afb29000c040daaf48040bdb4d3423f8352 Mon Sep 17 00:00:00 2001 From: Fiona Glaser Date: Tue, 28 Jul 2009 20:41:27 -0700 Subject: [PATCH] Fix another 10L in QPRD An entry in subpel_iterations was missing. I have no idea how QPRD was working at all without this change. --- encoder/me.c | 1 + 1 file changed, 1 insertion(+) diff --git a/encoder/me.c b/encoder/me.c index ff822271..969e1a9e 100644 --- a/encoder/me.c +++ b/encoder/me.c @@ -42,6 +42,7 @@ static const int subpel_iterations[][4] = {0,0,2,2}, {0,0,2,2}, {0,0,4,10}, + {0,0,4,10}, {0,0,4,10}}; /* (x-1)%6 */ -- 2.39.5