Searched refs:pred_x (Results 1 - 23 of 23) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dituh263dec.c316 int cbpc, i, pred_x, pred_y, mx, my; local
359 mot_val= ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
361 mx = h263p_decode_umotion(s, pred_x);
363 mx = ff_h263_decode_motion(s, pred_x, 1);
377 mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
379 mx = h263p_decode_umotion(s, pred_x);
381 mx = ff_h263_decode_motion(s, pred_x, 1);
387 if (s->umvplus && (mx - pred_x) == 1 && (my - pred_y) == 1)
584 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
636 ff_h263_pred_motion(s, 0, 0, &pred_x,
[all...]
H A Dwmv2enc.c157 int pred_x, pred_y; local
176 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
177 ff_msmpeg4_encode_motion(s, motion_x - pred_x,
H A Dmotion_est_template.c37 const int pred_x= c->pred_x;\
45 d += (mv_penalty[hx - pred_x] + mv_penalty[hy - pred_y])*penalty_factor;\
78 dmin += (mv_penalty[2*mx - pred_x] + mv_penalty[2*my - pred_y])*penalty_factor;
86 + (mv_penalty[bx - pred_x] + mv_penalty[by-2 - pred_y])*c->penalty_factor;
88 + (mv_penalty[bx-2 - pred_x] + mv_penalty[by - pred_y])*c->penalty_factor;
90 + (mv_penalty[bx+2 - pred_x] + mv_penalty[by - pred_y])*c->penalty_factor;
92 + (mv_penalty[bx - pred_x] + mv_penalty[by+2 - pred_y])*c->penalty_factor;
187 d += (mv_penalty[mx - pred_x] + mv_penalty[my - pred_y])*penalty_factor;
203 d += (mv_penalty[hx - pred_x]
[all...]
H A Dituh263enc.c450 int cbpc, cbpy, i, cbp, pred_x, pred_y; local
492 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
495 ff_h263_encode_motion_vector(s, motion_x - pred_x,
499 h263p_encode_umotion(s, motion_x - pred_x);
501 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1))
519 ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
524 ff_h263_encode_motion_vector(s, motion_x - pred_x,
528 h263p_encode_umotion(s, motion_x - pred_x);
530 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1))
H A Dmsmpeg4enc.c376 int pred_x, pred_y; local
413 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
414 msmpeg4v2_encode_motion(s, motion_x - pred_x);
424 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
425 ff_msmpeg4_encode_motion(s, motion_x - pred_x,
H A Dmotion_est.c429 pen_x= pred_x + mx;
602 c->pred_x= pred_x4= P_LEFT[0];
617 c->pred_x= pred_x4 = P_MEDIAN[0];
705 c->pred_x= mx;
772 c->pred_x= P_LEFT[0];
811 dmin+= (mv_penalty[mx_i-c->pred_x] + mv_penalty[my_i-c->pred_y] + 1)*c->mb_penalty_factor;
945 c->pred_x = P_MEDIAN[0];
948 c->pred_x= P_LEFT[0];
952 c->pred_x= P_LEFT[0];
1107 c->pred_x
[all...]
H A Dsvq1enc.c404 int mx, my, pred_x, pred_y, dxy; local
407 motion_ptr = ff_h263_pred_motion(&s->m, 0, 0, &pred_x, &pred_y);
421 av_assert1(pred_x >= -32 && pred_x <= 31);
423 ff_h263_encode_motion(&s->m, mx - pred_x, 1);
H A Dmpeg4videoenc.c506 int cbpc, cbpy, pred_x, pred_y; local
750 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
753 motion_x - pred_x,
776 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
783 s->mv[0][0][0] - pred_x,
787 s->mv[0][1][0] - pred_x,
805 ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
808 s->current_picture.motion_val[0][s->block_index[i]][0] - pred_x,
H A Dmpeg4videodec.c647 int mx, my, pred_x, pred_y, bits; local
725 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
727 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
757 int16_t *mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
758 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1297 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
1385 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
1388 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1403 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
1404 mx = ff_h263_decode_motion(s, pred_x,
[all...]
H A Dmpegvideo.h191 int pred_x; member in struct:MotionEstContext
H A Dmpegvideo_enc.c2658 int pred_x, pred_y; local
2660 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
2665 bytestream_put_byte(&ptr, pred_x); /* hmv1 */
H A Dsnowenc.c306 c->pred_x= P_LEFT[0];
309 c->pred_x = P_MEDIAN[0];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dituh263dec.c339 int cbpc, i, pred_x, pred_y, mx, my; local
382 mot_val= ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
384 mx = h263p_decode_umotion(s, pred_x);
386 mx = ff_h263_decode_motion(s, pred_x, 1);
400 mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
402 mx = h263p_decode_umotion(s, pred_x);
404 mx = ff_h263_decode_motion(s, pred_x, 1);
410 if (s->umvplus && (mx - pred_x) == 1 && (my - pred_y) == 1)
604 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
656 ff_h263_pred_motion(s, 0, 0, &pred_x,
[all...]
H A Dwmv2enc.c156 int pred_x, pred_y; local
174 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
175 ff_msmpeg4_encode_motion(s, motion_x - pred_x,
H A Dmotion_est_template.c35 const int pred_x= c->pred_x;\
43 d += (mv_penalty[hx - pred_x] + mv_penalty[hy - pred_y])*penalty_factor;\
76 dmin += (mv_penalty[2*mx - pred_x] + mv_penalty[2*my - pred_y])*penalty_factor;
84 + (mv_penalty[bx - pred_x] + mv_penalty[by-2 - pred_y])*c->penalty_factor;
86 + (mv_penalty[bx-2 - pred_x] + mv_penalty[by - pred_y])*c->penalty_factor;
88 + (mv_penalty[bx+2 - pred_x] + mv_penalty[by - pred_y])*c->penalty_factor;
90 + (mv_penalty[bx - pred_x] + mv_penalty[by+2 - pred_y])*c->penalty_factor;
188 d += (mv_penalty[mx - pred_x] + mv_penalty[my - pred_y])*penalty_factor;
198 d += (mv_penalty[hx - pred_x]
[all...]
H A Dituh263enc.c461 int cbpc, cbpy, i, cbp, pred_x, pred_y; local
503 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
506 ff_h263_encode_motion_vector(s, motion_x - pred_x,
510 h263p_encode_umotion(s, motion_x - pred_x);
512 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1))
530 ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
535 ff_h263_encode_motion_vector(s, motion_x - pred_x,
539 h263p_encode_umotion(s, motion_x - pred_x);
541 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1))
H A Dsvq1enc.c402 int mx, my, pred_x, pred_y, dxy; local
405 motion_ptr= ff_h263_pred_motion(&s->m, 0, 0, &pred_x, &pred_y);
417 assert(pred_x>=-32 && pred_x<=31);
419 ff_h263_encode_motion(&s->m, mx - pred_x, 1);
H A Dmpeg4videoenc.c475 int cbpc, cbpy, pred_x, pred_y; local
696 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
698 ff_h263_encode_motion_vector(s, motion_x - pred_x,
720 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
726 ff_h263_encode_motion_vector(s, s->mv[0][0][0] - pred_x,
728 ff_h263_encode_motion_vector(s, s->mv[0][1][0] - pred_x,
748 ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
750 ff_h263_encode_motion_vector(s, s->current_picture.f.motion_val[0][ s->block_index[i] ][0] - pred_x,
H A Dmotion_est.c437 pen_x= pred_x + mx;
601 c->pred_x= pred_x4= P_LEFT[0];
616 c->pred_x= pred_x4 = P_MEDIAN[0];
695 c->pred_x= mx;
762 c->pred_x= P_LEFT[0];
801 dmin+= (mv_penalty[mx_i-c->pred_x] + mv_penalty[my_i-c->pred_y] + 1)*c->mb_penalty_factor;
1072 c->pred_x = P_MEDIAN[0];
1075 c->pred_x= P_LEFT[0];
1079 c->pred_x= P_LEFT[0];
1236 c->pred_x
[all...]
H A Dmpeg4videodec.c594 int mx, my, pred_x, pred_y, bits; local
654 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
656 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
678 int16_t *mot_val= ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
679 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1152 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
1226 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
1229 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1244 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
1245 mx = ff_h263_decode_motion(s, pred_x,
[all...]
H A Dmsmpeg4.c541 int pred_x, pred_y; local
578 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
579 msmpeg4v2_encode_motion(s, motion_x - pred_x);
589 ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
590 ff_msmpeg4_encode_motion(s, motion_x - pred_x,
H A Dmpegvideo.h175 int pred_x; member in struct:MotionEstContext
H A Dsnowenc.c394 c->pred_x= P_LEFT[0];
397 c->pred_x = P_MEDIAN[0];

Completed in 164 milliseconds