HomeSort by relevance Sort by last modified time
    Searched refs:linestocopy (Results 1 - 2 of 2) sorted by null

  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 34 int linestocopy; local
40 linestocopy = (yheight >> 4) / PARTIAL_FRAME_FRACTION;
41 linestocopy = linestocopy ? linestocopy << 4 : 16; /* 16 lines per MB */
47 linestocopy += 4;
53 memcpy(dst_y, src_y, ystride * linestocopy);
64 int linestocopy; local
67 linestocopy = (source->y_height >> 4) / PARTIAL_FRAME_FRACTION;
68 linestocopy = linestocopy ? linestocopy << 4 : 16; /* 16 lines per MB *
    [all...]
  /external/libvpx/libvpx/vp8/common/
vp8_loopfilter.c 488 int linestocopy; local
507 linestocopy = mb_rows / PARTIAL_FRAME_FRACTION;
508 linestocopy = linestocopy ? linestocopy << 4 : 16; /* 16 lines per MB */
515 for (mb_row = 0; mb_row < (linestocopy >> 4); ++mb_row) {

Completed in 93 milliseconds