IS_INTRA          154 libavcodec/error_resilience.c             int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]);
IS_INTRA          167 libavcodec/error_resilience.c             int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]);
IS_INTRA          182 libavcodec/error_resilience.c             int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]);
IS_INTRA          195 libavcodec/error_resilience.c             int intra_j = IS_INTRA(s->cur_pic.mb_type[mb_index_j]);
IS_INTRA          253 libavcodec/error_resilience.c             int left_intra   = IS_INTRA(s->cur_pic.mb_type[( b_x      >> is_luma) + (b_y >> is_luma) * s->mb_stride]);
IS_INTRA          254 libavcodec/error_resilience.c             int right_intra  = IS_INTRA(s->cur_pic.mb_type[((b_x + 1) >> is_luma) + (b_y >> is_luma) * s->mb_stride]);
IS_INTRA          321 libavcodec/error_resilience.c             int top_intra     = IS_INTRA(s->cur_pic.mb_type[(b_x >> is_luma) + ( b_y      >> is_luma) * s->mb_stride]);
IS_INTRA          322 libavcodec/error_resilience.c             int bottom_intra  = IS_INTRA(s->cur_pic.mb_type[(b_x >> is_luma) + ((b_y + 1) >> is_luma) * s->mb_stride]);
IS_INTRA          393 libavcodec/error_resilience.c         if (IS_INTRA(s->cur_pic.mb_type[mb_xy]))
IS_INTRA          418 libavcodec/error_resilience.c                 if (IS_INTRA(s->cur_pic.mb_type[mb_xy]))
IS_INTRA          459 libavcodec/error_resilience.c                     av_assert1(!IS_INTRA(s->cur_pic.mb_type[mb_xy]));
IS_INTRA          747 libavcodec/error_resilience.c                 if (IS_INTRA(s->cur_pic.mb_type[mb_xy]))
IS_INTRA         1106 libavcodec/error_resilience.c             if (!IS_INTRA(s->cur_pic.mb_type[mb_xy]))
IS_INTRA         1121 libavcodec/error_resilience.c             if (IS_INTRA(mb_type))
IS_INTRA         1158 libavcodec/error_resilience.c                 if (IS_INTRA(mb_type))
IS_INTRA         1209 libavcodec/error_resilience.c             if (IS_INTRA(mb_type) && s->partitioned_frame)
IS_INTRA         1858 libavcodec/h264_cabac.c         int cqm = (IS_INTRA( mb_type ) ? 0:3) + p;
IS_INTRA         2038 libavcodec/h264_cabac.c     if( IS_INTRA( mb_type ) ) {
IS_INTRA         2303 libavcodec/h264_cabac.c     if( dct8x8_allowed && (cbp&15) && !IS_INTRA( mb_type ) ) {
IS_INTRA         2319 libavcodec/h264_cabac.c                 nnz_cache[3+8*12 + 2*8*i]= IS_INTRA(mb_type) ? 64 : 0;
IS_INTRA         2323 libavcodec/h264_cabac.c             uint32_t top_empty = CABAC(h) && !IS_INTRA(mb_type) ? 0 : 0x40404040;
IS_INTRA         2390 libavcodec/h264_cabac.c                     qmul = h->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][h->chroma_qp[c]];
IS_INTRA         2413 libavcodec/h264_cabac.c                     qmul = h->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][h->chroma_qp[c]];
IS_INTRA          663 libavcodec/h264_cavlc.c         int cqm = (IS_INTRA( mb_type ) ? 0:3)+p;
IS_INTRA          798 libavcodec/h264_cavlc.c     if(IS_INTRA(mb_type)){
IS_INTRA         1082 libavcodec/h264_cavlc.c     if(dct8x8_allowed && (cbp&15) && !IS_INTRA(mb_type)){
IS_INTRA         1093 libavcodec/h264_cavlc.c         GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr;
IS_INTRA         1147 libavcodec/h264_cavlc.c                     const uint32_t *qmul = h->dequant4_coeff[chroma_idx+1+(IS_INTRA( mb_type ) ? 0:3)][h->chroma_qp[chroma_idx]];
IS_INTRA          348 libavcodec/h264_direct.c             if (!IS_INTRA(mb_type_col[y8]) && !h->ref_list[1][0].long_ref &&
IS_INTRA          379 libavcodec/h264_direct.c         if (!IS_INTRA(mb_type_col[0]) && !h->ref_list[1][0].long_ref &&
IS_INTRA          417 libavcodec/h264_direct.c             if (!IS_INTRA(mb_type_col[0]) && !h->ref_list[1][0].long_ref &&
IS_INTRA          582 libavcodec/h264_direct.c                 if (IS_INTRA(mb_type_col[y8])) {
IS_INTRA          621 libavcodec/h264_direct.c             if (IS_INTRA(mb_type_col[0])) {
IS_INTRA          649 libavcodec/h264_direct.c                 if (IS_INTRA(mb_type_col[0])) {
IS_INTRA          268 libavcodec/h264_loopfilter.c     if( IS_INTRA(mb_type) ) {
IS_INTRA          374 libavcodec/h264_loopfilter.c         if( IS_INTRA(left_type) )
IS_INTRA          376 libavcodec/h264_loopfilter.c         if( IS_INTRA(top_type) )
IS_INTRA          497 libavcodec/h264_loopfilter.c                 if (IS_INTRA(mb_type | h->cur_pic.mb_type[mbn_xy])) {
IS_INTRA          535 libavcodec/h264_loopfilter.c             if( IS_INTRA(mb_type|mbm_type)) {
IS_INTRA          622 libavcodec/h264_loopfilter.c         if( IS_INTRA(mb_type)) {
IS_INTRA          730 libavcodec/h264_loopfilter.c         if( IS_INTRA(mb_type) ) {
IS_INTRA          749 libavcodec/h264_loopfilter.c                 if( IS_INTRA( mbn_type ) )
IS_INTRA          791 libavcodec/h264_mb.c                                        h->qscale, IS_INTRA(mb_type) ? 1 : 0);
IS_INTRA          157 libavcodec/h264_mb_template.c         if (IS_INTRA(mb_type)) {
IS_INTRA          197 libavcodec/h264_mb_template.c                 if (IS_INTRA(mb_type) && h->sps.profile_idc == 244 &&
IS_INTRA          239 libavcodec/h264_mb_template.c                                                                h->dequant4_coeff[IS_INTRA(mb_type) ? 1 : 4][qp[0]][0]);
IS_INTRA          242 libavcodec/h264_mb_template.c                                                                h->dequant4_coeff[IS_INTRA(mb_type) ? 2 : 5][qp[1]][0]);
IS_INTRA          248 libavcodec/h264_mb_template.c                                                            h->dequant4_coeff[IS_INTRA(mb_type) ? 1 : 4][h->chroma_qp[0]][0]);
IS_INTRA          250 libavcodec/h264_mb_template.c                                                            h->dequant4_coeff[IS_INTRA(mb_type) ? 2 : 5][h->chroma_qp[1]][0]);
IS_INTRA          341 libavcodec/h264_mb_template.c         if (IS_INTRA(mb_type)) {
IS_INTRA          460 libavcodec/h264_mvpred.h         if (IS_INTRA(mb_type)) {
IS_INTRA          461 libavcodec/h264_mvpred.h             int type_mask = h->pps.constrained_intra_pred ? IS_INTRA(-1) : -1;
IS_INTRA          548 libavcodec/h264_mvpred.h             uint32_t top_empty = CABAC(h) && !IS_INTRA(mb_type) ? 0 : 0x40404040;
IS_INTRA          579 libavcodec/h264_mvpred.h                 nnz_cache[3 + 8 * 12 + 2 * 8 * i] = CABAC(h) && !IS_INTRA(mb_type) ? 0 : 64;
IS_INTRA          588 libavcodec/h264_mvpred.h                 h->top_cbp = IS_INTRA(mb_type) ? 0x7CF : 0x00F;
IS_INTRA          595 libavcodec/h264_mvpred.h                 h->left_cbp = IS_INTRA(mb_type) ? 0x7CF : 0x00F;
IS_INTRA         2199 libavcodec/h264_slice.c     if (IS_INTRA(mb_type))
IS_INTRA           52 libavcodec/hevcpred_template.c             if (!IS_INTRA(i, -1))                                              \
IS_INTRA           58 libavcodec/hevcpred_template.c             if (!IS_INTRA(i - 1, -1)) \
IS_INTRA           62 libavcodec/hevcpred_template.c             if (!IS_INTRA(-1, i - 3))                                          \
IS_INTRA           68 libavcodec/hevcpred_template.c             if (!IS_INTRA(-1, i))                                              \
IS_INTRA          202 libavcodec/hevcpred_template.c                 while (j > -1 && !IS_INTRA(-1, j))
IS_INTRA          204 libavcodec/hevcpred_template.c                 if (!IS_INTRA(-1, j)) {
IS_INTRA          206 libavcodec/hevcpred_template.c                     while (j < size_max_x && !IS_INTRA(j, -1))
IS_INTRA          213 libavcodec/hevcpred_template.c                 while (j < size_max_x && !IS_INTRA(j, -1))
IS_INTRA          236 libavcodec/hevcpred_template.c                 if (!IS_INTRA(-1, - 1))
IS_INTRA          730 libavcodec/ituh263dec.c         s->mb_intra = IS_INTRA(mb_type);
IS_INTRA          755 libavcodec/mpeg12dec.c             if (IS_INTRA(mb_type)) {
IS_INTRA          805 libavcodec/mpeg12dec.c     if (IS_INTRA(mb_type)) {
IS_INTRA          812 libavcodec/mpeg4videodec.c                 if (IS_INTRA(s->current_picture.mb_type[xy])) {
IS_INTRA         1231 libavcodec/mpeg4videodec.c         s->mb_intra = IS_INTRA(mb_type);
IS_INTRA         2266 libavcodec/mpegvideo.c                     else if (IS_INTRA(mb_type) && IS_ACPRED(mb_type))
IS_INTRA         2298 libavcodec/mpegvideo.c                     else if (IS_INTRA(mb_type) || IS_16X16(mb_type))
IS_INTRA         2452 libavcodec/mpegvideo.c                     } else if ((IS_INTRA(mb_type) && IS_ACPRED(mb_type)) ||
IS_INTRA          690 libavcodec/mpegvideo_motion.c     if (mb_y == 0 || IS_INTRA(cur_frame->mb_type[xy - s->mb_stride])) {
IS_INTRA          700 libavcodec/mpegvideo_motion.c     if (mb_x == 0 || IS_INTRA(cur_frame->mb_type[xy - 1])) {
IS_INTRA          709 libavcodec/mpegvideo_motion.c     if (mb_x + 1 >= s->mb_width || IS_INTRA(cur_frame->mb_type[xy + 1])) {
IS_INTRA          159 libavcodec/rv30.c         if(IS_INTRA(mbtype) || IS_SEPARATE_DC(mbtype))
IS_INTRA          161 libavcodec/rv30.c         if(IS_INTRA(mbtype))
IS_INTRA          415 libavcodec/rv34.c     if(IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){
IS_INTRA          888 libavcodec/rv34.c         if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){
IS_INTRA         1231 libavcodec/rv34.c     if (IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){
IS_INTRA          372 libavcodec/rv40.c         if(IS_INTRA(mbtype) || IS_SEPARATE_DC(mbtype))
IS_INTRA          374 libavcodec/rv40.c         if(IS_INTRA(mbtype))
IS_INTRA          411 libavcodec/rv40.c             mb_strong[i] = IS_INTRA(mbtype[i]) || IS_SEPARATE_DC(mbtype[i]);
IS_INTRA          702 libavcodec/svq3.c         cbp = IS_INTRA(mb_type) ? golomb_to_intra4x4_cbp[vlc]
IS_INTRA          772 libavcodec/svq3.c     if (IS_INTRA(mb_type))