tz_search step 1, first if: && -> ||

This commit is contained in:
SanteriS 2015-03-12 17:57:17 +02:00
parent 949ec57849
commit 913ade461b

View file

@ -447,7 +447,7 @@ static unsigned tz_search(const encoder_state_t * const state, unsigned depth,
//step 1, compare (0,0) vector to predicted vectors
// Check whatever input vector we got, unless its (0, 0) which will be checked later.
if (mv.x && mv.y)
if (mv.x || mv.y)
{
PERFORMANCE_MEASURE_START(_DEBUG_PERF_SEARCH_PIXELS);