From 73762062b639d3f4ec92bf66f25f7608d7986845 Mon Sep 17 00:00:00 2001 From: Ari Lemmetti Date: Thu, 15 Jan 2015 11:56:25 +0200 Subject: [PATCH] Clarified comments a bit --- src/inter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inter.c b/src/inter.c index 58df8927..e47235d8 100644 --- a/src/inter.c +++ b/src/inter.c @@ -186,7 +186,7 @@ void inter_recon_lcu(const encoder_state * const encoder_state, const image * co filter_inter_octpel_chroma(encoder_state->encoder_control, octpel_src_off_v, width_c+FILTER_SIZE_C, width_c, width_c, octpel_dst_v, width_c*8, c_off_x, c_off_y); - //Luma + //Sample fractional pixels for luma for(y = 0; y < width; ++y) { int y_in_lcu = ((y+ypos) & ((LCU_WIDTH)-1)); int qpel_y = y*4+y_off_y; @@ -196,7 +196,7 @@ void inter_recon_lcu(const encoder_state * const encoder_state, const image * co lcu->rec.y[y_in_lcu * LCU_WIDTH + x_in_lcu] = (pixel)qpel_dst_y[qpel_y*(width*4)+qpel_x]; } } - //Chroma + //Sample fractional pixels for chroma for(y = 0; y < width_c; ++y) { int y_in_lcu = ((y+(ypos>>1)) & ((LCU_WIDTH>>1)-1)); int qpel_y = y*8+c_off_y;