• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:lowres

1827     const int lowres   = s->avctx->lowres;
1828 const int op_index = FFMIN(lowres, 2);
1829 const int s_mask = (2 << lowres) - 1;
1840 src_x += motion_x >> lowres + 1;
1841 src_y += motion_y >> lowres + 1;
1856 sx = (sx << 2) >> lowres;
1857 sy = (sy << 2) >> lowres;
1880 const int lowres = s->avctx->lowres;
1881 const int op_index = FFMIN(lowres, 2);
1882 const int block_s = 8>>lowres;
1883 const int s_mask = (2 << lowres) - 1;
1884 const int h_edge_pos = s->h_edge_pos >> lowres;
1885 const int v_edge_pos = s->v_edge_pos >> lowres;
1889 // FIXME obviously not perfect but qpel will not work in lowres anyway
1896 motion_y += (bottom_field - field_select) * (1 << lowres - 1);
1901 src_x = s->mb_x * 2 * block_s + (motion_x >> lowres + 1);
1902 src_y = (mb_y * 2 * block_s >> field_based) + (motion_y >> lowres + 1);
1915 uvsrc_x = s->mb_x * block_s + (mx >> lowres);
1916 uvsrc_y = mb_y * block_s + (my >> lowres);
1922 uvsrc_x = s->mb_x * block_s + (mx >> lowres + 1);
1923 uvsrc_y = (mb_y * block_s >> field_based) + (my >> lowres + 1);
1965 sx = (sx << 2) >> lowres;
1966 sy = (sy << 2) >> lowres;
1967 pix_op[lowres - 1](dest_y, ptr_y, linesize, h, sx, sy);
1970 uvsx = (uvsx << 2) >> lowres;
1971 uvsy = (uvsy << 2) >> lowres;
1977 // FIXME h261 lowres loop filter
1986 const int lowres = s->avctx->lowres;
1987 const int op_index = FFMIN(lowres, 2);
1988 const int block_s = 8 >> lowres;
1989 const int s_mask = (2 << lowres) - 1;
1990 const int h_edge_pos = s->h_edge_pos >> lowres + 1;
1991 const int v_edge_pos = s->v_edge_pos >> lowres + 1;
2007 src_x = s->mb_x * block_s + (mx >> lowres + 1);
2008 src_y = s->mb_y * block_s + (my >> lowres + 1);
2021 sx = (sx << 2) >> lowres;
2022 sy = (sy << 2) >> lowres;
2053 const int lowres = s->avctx->lowres;
2054 const int block_s = 8 >>lowres;
2077 s->h_edge_pos >> lowres, s->v_edge_pos >> lowres,
2331 const int block_size= lowres_flag ? 8>>s->avctx->lowres : 8;
2526 if(s->avctx->lowres) MPV_decode_mb_internal(s, block, 1, 1);
2530 if(s->avctx->lowres) MPV_decode_mb_internal(s, block, 1, 0);
2606 const int mb_size= 4 - s->avctx->lowres;