Searched defs:mvs (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp8/common/
H A Ddebugmodes.c22 FILE *mvs = fopen("mvs.stt", "a"); local
26 fprintf(mvs, "Mb Modes for Frame %d\n", frame);
33 fprintf(mvs, "%2d ", mi[mb_index].mbmi.mode);
38 fprintf(mvs, "\n");
42 fprintf(mvs, "\n");
45 fprintf(mvs, "Mb mv ref for Frame %d\n", frame);
52 fprintf(mvs, "%2d ", mi[mb_index].mbmi.ref_frame);
57 fprintf(mvs, "\n");
61 fprintf(mvs, "\
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_debugmodes.c53 FILE *mvs = fopen(file, "a"); local
58 print_mi_data(cm, mvs, "Partitions:", offsetof(MB_MODE_INFO, sb_type));
59 print_mi_data(cm, mvs, "Modes:", offsetof(MB_MODE_INFO, mode));
60 print_mi_data(cm, mvs, "Skips:", offsetof(MB_MODE_INFO, skip));
61 print_mi_data(cm, mvs, "Ref frame:", offsetof(MB_MODE_INFO, ref_frame[0]));
62 print_mi_data(cm, mvs, "Transform:", offsetof(MB_MODE_INFO, tx_size));
63 print_mi_data(cm, mvs, "UV Modes:", offsetof(MB_MODE_INFO, uv_mode));
65 log_frame_info(cm, "Vectors ", mvs);
67 fprintf(mvs, "V ");
69 fprintf(mvs, "
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c232 static void inc_mvs(const MB_MODE_INFO *mbmi, const int_mv mvs[2], argument
238 const MV diff = {mvs[i].as_mv.row - ref->row,
239 mvs[i].as_mv.col - ref->col};
H A Dvp9_rdopt.c1163 int_mv mvs[2]; member in struct:__anon9591
1306 // making it so that we very rarely check mvs on
1382 // max mv magnitude and the best ref mvs of the current block for
1483 bsi->rdstat[i][mode_idx].mvs[ref].as_int =
1486 bsi->rdstat[i + 1][mode_idx].mvs[ref].as_int =
1489 bsi->rdstat[i + 2][mode_idx].mvs[ref].as_int =
1507 ref_bsi->rdstat[i][mode_idx].mvs[ref].as_int;
1515 ref_bsi->rdstat[i][mode_idx].mvs[ref].as_int;
1612 mi->bmi[i].as_mv[0].as_int = bsi->rdstat[i][mode_idx].mvs[0].as_int;
1614 mi->bmi[i].as_mv[1].as_int = bsi->rdstat[i][mode_idx].mvs[
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c1086 int_mv mvs[16]; member in struct:__anon9499
1141 * very rarely check mvs on segments. setting this to 1 would make mv
1359 bsi->mvs[i].as_mv = x->partition_info->bmi[i].mv.as_mv;
1440 bsi.sv_mvp[0].as_int = bsi.mvs[0].as_int;
1441 bsi.sv_mvp[1].as_int = bsi.mvs[2].as_int;
1442 bsi.sv_mvp[2].as_int = bsi.mvs[8].as_int;
1443 bsi.sv_mvp[3].as_int = bsi.mvs[10].as_int;
1489 bd->bmi.mv.as_int = bsi.mvs[i].as_int;
1508 x->partition_info->bmi[i].mv.as_mv = bsi.mvs[j].as_mv;
1513 x->partition_info->bmi[15].mv.as_int = bsi.mvs[1
[all...]

Completed in 320 milliseconds