[x264-devel] commit: Fix another 10L in QPRD (Jason Garrett-Glaser )
git version control
git at videolan.org
Wed Jul 29 05:42:55 CEST 2009
x264 | branch: master | Jason Garrett-Glaser <darkshikari at gmail.com> | Tue Jul 28 20:41:27 2009 -0700| [5d75a9bd5b942392c4ab64156a266eed64c0793f] | committer: Jason Garrett-Glaser
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.
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=5d75a9bd5b942392c4ab64156a266eed64c0793f
---
encoder/me.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/encoder/me.c b/encoder/me.c
index e5952bb..efab7c0 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 */
More information about the x264-devel
mailing list