Lines Matching refs:lowres
285 ff_h264chroma_init(&s->h264chroma, 8); //for lowres
927 const int lowres = s->avctx->lowres;
928 const int op_index = FFMIN(lowres, 3);
929 const int s_mask = (2 << lowres) - 1;
940 src_x += motion_x >> lowres + 1;
941 src_y += motion_y >> lowres + 1;
956 sx = (sx << 2) >> lowres;
957 sy = (sy << 2) >> lowres;
980 const int lowres = s->avctx->lowres;
981 const int op_index = FFMIN(lowres-1+s->chroma_x_shift, 3);
982 const int block_s = 8>>lowres;
983 const int s_mask = (2 << lowres) - 1;
984 const int h_edge_pos = s->h_edge_pos >> lowres;
985 const int v_edge_pos = s->v_edge_pos >> lowres;
989 // FIXME obviously not perfect but qpel will not work in lowres anyway
996 motion_y += (bottom_field - field_select)*((1 << lowres)-1);
1001 src_x = s->mb_x * 2 * block_s + (motion_x >> lowres + 1);
1002 src_y = (mb_y * 2 * block_s >> field_based) + (motion_y >> lowres + 1);
1015 uvsrc_x = s->mb_x * block_s + (mx >> lowres);
1016 uvsrc_y = mb_y * block_s + (my >> lowres);
1023 uvsrc_x = s->mb_x * block_s + (mx >> lowres + 1);
1024 uvsrc_y = (mb_y * block_s >> field_based) + (my >> lowres + 1);
1032 uvsrc_x = s->mb_x*block_s + (mx >> (lowres+1));
1088 sx = (sx << 2) >> lowres;
1089 sy = (sy << 2) >> lowres;
1090 pix_op[lowres - 1](dest_y, ptr_y, linesize, h, sx, sy);
1094 uvsx = (uvsx << 2) >> lowres;
1095 uvsy = (uvsy << 2) >> lowres;
1101 // FIXME h261 lowres loop filter
1110 const int lowres = s->avctx->lowres;
1111 const int op_index = FFMIN(lowres, 3);
1112 const int block_s = 8 >> lowres;
1113 const int s_mask = (2 << lowres) - 1;
1114 const int h_edge_pos = s->h_edge_pos >> lowres + 1;
1115 const int v_edge_pos = s->v_edge_pos >> lowres + 1;
1132 src_x = s->mb_x * block_s + (mx >> lowres + 1);
1133 src_y = s->mb_y * block_s + (my >> lowres + 1);
1146 sx = (sx << 2) >> lowres;
1147 sy = (sy << 2) >> lowres;
1180 const int lowres = s->avctx->lowres;
1181 const int block_s = 8 >>lowres;
1204 s->h_edge_pos >> lowres, s->v_edge_pos >> lowres,
1445 const int block_size= lowres_flag ? 8>>s->avctx->lowres : 8;
1665 if(s->avctx->lowres) mpv_reconstruct_mb_internal(s, block, 1, 1);
1669 if(s->avctx->lowres) mpv_reconstruct_mb_internal(s, block, 1, 0);
1676 const int width_of_mb = (4 + (s->avctx->bits_per_raw_sample > 8)) - s->avctx->lowres;
1677 const int height_of_mb = 4 - s->avctx->lowres;