Lines Matching defs:error
208 int mb_index, error, j;
211 error = s->error_status_table[mb_index];
215 if (!(error & ER_DC_ERROR))
236 * simple horizontal deblocking filter used for error resilience
305 * simple vertical deblocking filter used for error resilience
418 int error = s->error_status_table[mb_xy];
422 if (!(error & ER_MV_ERROR))
731 const int error = s->error_status_table[mb_xy];
732 if (!((error & ER_DC_ERROR) && (error & ER_MV_ERROR)))
745 int error;
748 error = s->error_status_table[mb_xy];
749 if ((error & ER_DC_ERROR) && (error & ER_MV_ERROR))
820 * assumed that no earlier end or error of the same type occurred
836 "internal error, slice end before start\n");
895 int i, mb_x, mb_y, error, error_type, dc_error, mv_error, ac_error;
932 av_log(s->avctx, AV_LOG_WARNING, "Cannot use previous picture in error concealment\n");
940 av_log(s->avctx, AV_LOG_WARNING, "Cannot use next picture in error concealment\n");
985 int error = s->error_status_table[mb_xy];
987 if (error & (1 << error_type))
989 if (error & (8 << error_type))
995 if (error & VP_START)
1007 int error = s->error_status_table[mb_xy];
1009 if (error & ER_AC_END)
1011 if ((error & ER_MV_END) ||
1012 (error & ER_DC_END) ||
1013 (error & ER_AC_ERROR))
1019 if (error & VP_START)
1056 int error = s->error_status_table[mb_xy];
1060 if (error & (1 << error_type))
1071 if (error & VP_START)
1078 error = 0;
1084 error = old_error & ER_MB_ERROR;
1086 error |= old_error & ER_MB_ERROR;
1087 s->error_status_table[mb_xy] |= error;
1095 int error = s->error_status_table[mb_xy];
1096 if (error & ER_MB_ERROR)
1097 error |= ER_MB_ERROR;
1098 s->error_status_table[mb_xy] = error;
1106 int error = s->error_status_table[mb_xy];
1107 if (error & ER_DC_ERROR)
1109 if (error & ER_AC_ERROR)
1111 if (error & ER_MV_ERROR)
1124 int error = s->error_status_table[mb_xy];
1125 if (!((error & ER_DC_ERROR) && (error & ER_MV_ERROR)))
1152 int error = s->error_status_table[mb_xy];
1156 if (error & ER_MV_ERROR)
1158 if (!(error & ER_AC_ERROR))
1189 int error = s->error_status_table[mb_xy];
1193 if (!(error & ER_MV_ERROR))
1195 if (!(error & ER_AC_ERROR))
1237 // error = s->error_status_table[mb_xy];
1241 // if (error & ER_MV_ERROR)
1293 int error = s->error_status_table[mb_xy];
1297 if (!(error & ER_AC_ERROR))
1335 int error = s->error_status_table[mb_xy];
1338 (error & (ER_DC_ERROR | ER_MV_ERROR | ER_AC_ERROR))) {