• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/

Lines Matching defs:dest_y

1601                            uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
1630 qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); //FIXME try variable height perhaps?
1632 qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
1659 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
1668 dest_y += 2*x_offset + 2*y_offset*h-> mb_linesize;
1677 dest_y, dest_cb, dest_cr, x_offset, y_offset,
1687 dest_y, dest_cb, dest_cr, x_offset, y_offset,
1693 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
1701 dest_y += 2*x_offset + 2*y_offset*h-> mb_linesize;
1717 dest_y, dest_cb, dest_cr,
1726 luma_weight_avg( dest_y, tmp_y, h-> mb_linesize, 5, weight0, weight1, 0);
1730 luma_weight_avg(dest_y, tmp_y, h->mb_linesize, h->luma_log2_weight_denom,
1745 dest_y, dest_cb, dest_cr, x_offset, y_offset,
1748 luma_weight_op(dest_y, h->mb_linesize, h->luma_log2_weight_denom,
1760 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
1769 mc_part_weighted(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr,
1773 mc_part_std(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr,
1793 static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
1806 mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0,
1811 mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0,
1815 mc_part(h, 8, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 4,
1820 mc_part(h, 0, 0, 8, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 0, 0,
1824 mc_part(h, 4, 0, 8, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 4, 0,
1840 mc_part(h, n, 1, 4, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset,
1845 mc_part(h, n , 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset,
1849 mc_part(h, n+2, 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset+2,
1854 mc_part(h, n , 0, 4, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset,
1858 mc_part(h, n+1, 0, 4, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset,
1868 mc_part(h, n+j, 1, 2, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset,
2422 uint8_t *dest_y, *dest_cb, *dest_cr;
2432 dest_y = s->current_picture.data[0] + (mb_x + mb_y * s->linesize ) * 16;
2436 s->dsp.prefetch(dest_y + (s->mb_x&3)*4*s->linesize + 64, s->linesize, 4);
2444 dest_y -= s->linesize*15;
2473 memcpy(dest_y + i* linesize, h->mb + i*8, 16);
2482 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1, simple);
2500 uint8_t * const ptr= dest_y + block_offset[i];
2525 uint8_t * const ptr= dest_y + block_offset[i];
2560 h->hpc.pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
2568 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0, simple);
2570 hl_motion(h, dest_y, dest_cb, dest_cr,
2582 h->hpc.pred16x16_add[h->intra16x16_pred_mode](dest_y, block_offset, h->mb, linesize);
2586 s->dsp.add_pixels4(dest_y + block_offset[i], h->mb + i*16, linesize);
2590 s->dsp.h264_idct_add16intra(dest_y, block_offset, h->mb, linesize, h->non_zero_count_cache);
2598 idct_add(dest_y + block_offset[i], h->mb + i*16, linesize);
2603 s->dsp.h264_idct8_add4(dest_y, block_offset, h->mb, linesize, h->non_zero_count_cache);
2605 s->dsp.h264_idct_add16(dest_y, block_offset, h->mb, linesize, h->non_zero_count_cache);
2612 uint8_t * const ptr= dest_y + block_offset[i];
2659 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, simple);
2664 filter_mb (h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
2666 filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);