• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:row_offset

322                            int32_t row_offset)
324 for (; n > 0; dst += row_offset, n--)
346 copy_block4(dst, ref, row_offset, row_offset, 4 << v_zoom)
352 fill_64(dst + row_offset, pix64, 7, row_offset);\
353 AVG_64(dst, ref, dst + row_offset);\
355 fill_64(dst, pix64, 8, row_offset)
358 copy_block4(dst, ref, row_offset, row_offset, num_lines << v_zoom)
364 fill_64(dst + row_offset, pix64, (num_lines << 1) - 1, row_offset);\
365 AVG_64(dst, ref, dst + row_offset);\
367 fill_64(dst, pix64, num_lines << 1, row_offset)
376 AV_COPY32U(dst, dst + row_offset);\
378 AVG_32(dst, ref, dst + row_offset);\
385 AV_WN32A(dst + row_offset , \
387 AV_WN32A(dst + row_offset + 4, \
390 AV_WN32A(dst + row_offset , \
392 AV_WN32A(dst + row_offset + 4, \
399 AV_COPY64U(dst, dst + row_offset);\
401 AVG_64(dst, ref, dst + row_offset);
410 AV_WN32A(dst + row_offset , \
411 (AV_RN32(dst + row_offset ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
412 AV_WN32A(dst + row_offset + 4, \
413 (AV_RN32(dst + row_offset + 4) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
419 AV_WN16A(dst + row_offset , \
420 (AV_RN16(dst + row_offset ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
421 AV_WN16A(dst + row_offset + 2, \
422 (AV_RN16(dst + row_offset + 2) + delta_tab->deltas[dyad2]) & 0x7F7F);\
439 int row_offset, blk_row_offset, line_offset;
441 row_offset = pitch;
442 blk_row_offset = (row_offset << (2 + v_zoom)) - (cell->width << 2);
443 line_offset = v_zoom ? row_offset : 0;
552 ref += row_offset * (num_lines << v_zoom);
553 dst += row_offset * (num_lines << v_zoom);