Lines Matching defs:f_code
532 av_log(s->avctx, AV_LOG_ERROR, "marker does not match f_code\n");
586 int f_code = get_bits(&s->gb, 3); /* fcode_for */
587 if (f_code == 0)
589 "Error, video packet header damaged (f_code=0)\n");
663 int len = 1 << (s->f_code + 4);
898 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
902 my = ff_h263_decode_motion(s, pred_y, s->f_code);
929 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
933 my = ff_h263_decode_motion(s, pred_y, s->f_code);
1571 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1575 my = ff_h263_decode_motion(s, pred_y / 2, s->f_code);
1587 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1592 my = ff_h263_decode_motion(s, pred_y, s->f_code);
1604 mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1608 my = ff_h263_decode_motion(s, pred_y, s->f_code);
1707 mx = ff_h263_decode_motion(s, s->last_mv[0][0][0], s->f_code);
1708 my = ff_h263_decode_motion(s, s->last_mv[0][0][1], s->f_code);
1736 mx = ff_h263_decode_motion(s, s->last_mv[0][i][0], s->f_code);
1737 my = ff_h263_decode_motion(s, s->last_mv[0][i][1] / 2, s->f_code);
3130 s->f_code = get_bits(gb, 3); /* fcode_for */
3131 if (s->f_code == 0) {
3133 "Error, header damaged or not MPEG-4 header (f_code=0)\n");
3134 s->f_code = 1;
3138 s->f_code = 1;
3154 s->qscale, s->f_code, s->b_code,