⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 h264.c

📁 linux下的MPEG1
💻 C
📖 第 1 页 / 共 5 页
字号:
        diagonal_ref= fetch_diagonal_mv(h, &C, scan8[4], list, 2);        tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", diagonal_ref, C[0], C[1], h->s.mb_x, h->s.mb_y, n, list);        if(diagonal_ref == ref){            *mx= C[0];            *my= C[1];            return;        }    }    //RARE    pred_motion(h, n, 2, list, ref, mx, my);}static inline void pred_pskip_motion(H264Context * const h, int * const mx, int * const my){    const int top_ref = h->ref_cache[0][ scan8[0] - 8 ];    const int left_ref= h->ref_cache[0][ scan8[0] - 1 ];    tprintf("pred_pskip: (%d) (%d) at %2d %2d\n", top_ref, left_ref, h->s.mb_x, h->s.mb_y);    if(top_ref == PART_NOT_AVAILABLE || left_ref == PART_NOT_AVAILABLE       || (top_ref == 0  && *(uint32_t*)h->mv_cache[0][ scan8[0] - 8 ] == 0)       || (left_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 1 ] == 0)){        *mx = *my = 0;        return;    }    pred_motion(h, 0, 4, 0, 0, mx, my);    return;}static inline void direct_dist_scale_factor(H264Context * const h){    const int poc = h->s.current_picture_ptr->poc;    const int poc1 = h->ref_list[1][0].poc;    int i;    for(i=0; i<h->ref_count[0]; i++){        int poc0 = h->ref_list[0][i].poc;        int td = clip(poc1 - poc0, -128, 127);        if(td == 0 /* FIXME || pic0 is a long-term ref */){            h->dist_scale_factor[i] = 256;        }else{            int tb = clip(poc - poc0, -128, 127);            int tx = (16384 + (FFABS(td) >> 1)) / td;            h->dist_scale_factor[i] = clip((tb*tx + 32) >> 6, -1024, 1023);        }    }    if(FRAME_MBAFF){        for(i=0; i<h->ref_count[0]; i++){            h->dist_scale_factor_field[2*i] =            h->dist_scale_factor_field[2*i+1] = h->dist_scale_factor[i];        }    }}static inline void direct_ref_list_init(H264Context * const h){    MpegEncContext * const s = &h->s;    Picture * const ref1 = &h->ref_list[1][0];    Picture * const cur = s->current_picture_ptr;    int list, i, j;    if(cur->pict_type == I_TYPE)        cur->ref_count[0] = 0;    if(cur->pict_type != B_TYPE)        cur->ref_count[1] = 0;    for(list=0; list<2; list++){        cur->ref_count[list] = h->ref_count[list];        for(j=0; j<h->ref_count[list]; j++)            cur->ref_poc[list][j] = h->ref_list[list][j].poc;    }    if(cur->pict_type != B_TYPE || h->direct_spatial_mv_pred)        return;    for(list=0; list<2; list++){        for(i=0; i<ref1->ref_count[list]; i++){            const int poc = ref1->ref_poc[list][i];            h->map_col_to_list0[list][i] = 0; /* bogus; fills in for missing frames */            for(j=0; j<h->ref_count[list]; j++)                if(h->ref_list[list][j].poc == poc){                    h->map_col_to_list0[list][i] = j;                    break;                }        }    }    if(FRAME_MBAFF){        for(list=0; list<2; list++){            for(i=0; i<ref1->ref_count[list]; i++){                j = h->map_col_to_list0[list][i];                h->map_col_to_list0_field[list][2*i] = 2*j;                h->map_col_to_list0_field[list][2*i+1] = 2*j+1;            }        }    }}static inline void pred_direct_motion(H264Context * const h, int *mb_type){    MpegEncContext * const s = &h->s;    const int mb_xy =   s->mb_x +   s->mb_y*s->mb_stride;    const int b8_xy = 2*s->mb_x + 2*s->mb_y*h->b8_stride;    const int b4_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride;    const int mb_type_col = h->ref_list[1][0].mb_type[mb_xy];    const int16_t (*l1mv0)[2] = (const int16_t (*)[2]) &h->ref_list[1][0].motion_val[0][b4_xy];    const int16_t (*l1mv1)[2] = (const int16_t (*)[2]) &h->ref_list[1][0].motion_val[1][b4_xy];    const int8_t *l1ref0 = &h->ref_list[1][0].ref_index[0][b8_xy];    const int8_t *l1ref1 = &h->ref_list[1][0].ref_index[1][b8_xy];    const int is_b8x8 = IS_8X8(*mb_type);    unsigned int sub_mb_type;    int i8, i4;#define MB_TYPE_16x16_OR_INTRA (MB_TYPE_16x16|MB_TYPE_INTRA4x4|MB_TYPE_INTRA16x16|MB_TYPE_INTRA_PCM)    if(IS_8X8(mb_type_col) && !h->sps.direct_8x8_inference_flag){        /* FIXME save sub mb types from previous frames (or derive from MVs)         * so we know exactly what block size to use */        sub_mb_type = MB_TYPE_8x8|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_4x4 */        *mb_type =    MB_TYPE_8x8|MB_TYPE_L0L1;    }else if(!is_b8x8 && (mb_type_col & MB_TYPE_16x16_OR_INTRA)){        sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */        *mb_type =    MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_16x16 */    }else{        sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */        *mb_type =    MB_TYPE_8x8|MB_TYPE_L0L1;    }    if(!is_b8x8)        *mb_type |= MB_TYPE_DIRECT2;    if(MB_FIELD)        *mb_type |= MB_TYPE_INTERLACED;    tprintf("mb_type = %08x, sub_mb_type = %08x, is_b8x8 = %d, mb_type_col = %08x\n", *mb_type, sub_mb_type, is_b8x8, mb_type_col);    if(h->direct_spatial_mv_pred){        int ref[2];        int mv[2][2];        int list;        /* FIXME interlacing + spatial direct uses wrong colocated block positions */        /* ref = min(neighbors) */        for(list=0; list<2; list++){            int refa = h->ref_cache[list][scan8[0] - 1];            int refb = h->ref_cache[list][scan8[0] - 8];            int refc = h->ref_cache[list][scan8[0] - 8 + 4];            if(refc == -2)                refc = h->ref_cache[list][scan8[0] - 8 - 1];            ref[list] = refa;            if(ref[list] < 0 || (refb < ref[list] && refb >= 0))                ref[list] = refb;            if(ref[list] < 0 || (refc < ref[list] && refc >= 0))                ref[list] = refc;            if(ref[list] < 0)                ref[list] = -1;        }        if(ref[0] < 0 && ref[1] < 0){            ref[0] = ref[1] = 0;            mv[0][0] = mv[0][1] =            mv[1][0] = mv[1][1] = 0;        }else{            for(list=0; list<2; list++){                if(ref[list] >= 0)                    pred_motion(h, 0, 4, list, ref[list], &mv[list][0], &mv[list][1]);                else                    mv[list][0] = mv[list][1] = 0;            }        }        if(ref[1] < 0){            *mb_type &= ~MB_TYPE_P0L1;            sub_mb_type &= ~MB_TYPE_P0L1;        }else if(ref[0] < 0){            *mb_type &= ~MB_TYPE_P0L0;            sub_mb_type &= ~MB_TYPE_P0L0;        }        if(IS_16X16(*mb_type)){            fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, (uint8_t)ref[0], 1);            fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, (uint8_t)ref[1], 1);            if(!IS_INTRA(mb_type_col)               && (   (l1ref0[0] == 0 && FFABS(l1mv0[0][0]) <= 1 && FFABS(l1mv0[0][1]) <= 1)                   || (l1ref0[0]  < 0 && l1ref1[0] == 0 && FFABS(l1mv1[0][0]) <= 1 && FFABS(l1mv1[0][1]) <= 1                       && (h->x264_build>33 || !h->x264_build)))){                if(ref[0] > 0)                    fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv[0][0],mv[0][1]), 4);                else                    fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, 0, 4);                if(ref[1] > 0)                    fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv[1][0],mv[1][1]), 4);                else                    fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, 0, 4);            }else{                fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv[0][0],mv[0][1]), 4);                fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv[1][0],mv[1][1]), 4);            }        }else{            for(i8=0; i8<4; i8++){                const int x8 = i8&1;                const int y8 = i8>>1;                if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))                    continue;                h->sub_mb_type[i8] = sub_mb_type;                fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mv[0][0],mv[0][1]), 4);                fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mv[1][0],mv[1][1]), 4);                fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[0], 1);                fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[1], 1);                /* col_zero_flag */                if(!IS_INTRA(mb_type_col) && (   l1ref0[x8 + y8*h->b8_stride] == 0                                              || (l1ref0[x8 + y8*h->b8_stride] < 0 && l1ref1[x8 + y8*h->b8_stride] == 0                                                  && (h->x264_build>33 || !h->x264_build)))){                    const int16_t (*l1mv)[2]= l1ref0[x8 + y8*h->b8_stride] == 0 ? l1mv0 : l1mv1;                    if(IS_SUB_8X8(sub_mb_type)){                        const int16_t *mv_col = l1mv[x8*3 + y8*3*h->b_stride];                        if(FFABS(mv_col[0]) <= 1 && FFABS(mv_col[1]) <= 1){                            if(ref[0] == 0)                                fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);                            if(ref[1] == 0)                                fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);                        }                    }else                    for(i4=0; i4<4; i4++){                        const int16_t *mv_col = l1mv[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride];                        if(FFABS(mv_col[0]) <= 1 && FFABS(mv_col[1]) <= 1){                            if(ref[0] == 0)                                *(uint32_t*)h->mv_cache[0][scan8[i8*4+i4]] = 0;                            if(ref[1] == 0)                                *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] = 0;                        }                    }                }            }        }    }else{ /* direct temporal mv pred */        const int *map_col_to_list0[2] = {h->map_col_to_list0[0], h->map_col_to_list0[1]};        const int *dist_scale_factor = h->dist_scale_factor;        if(FRAME_MBAFF){            if(IS_INTERLACED(*mb_type)){                map_col_to_list0[0] = h->map_col_to_list0_field[0];                map_col_to_list0[1] = h->map_col_to_list0_field[1];                dist_scale_factor = h->dist_scale_factor_field;            }            if(IS_INTERLACED(*mb_type) != IS_INTERLACED(mb_type_col)){                /* FIXME assumes direct_8x8_inference == 1 */                const int pair_xy = s->mb_x + (s->mb_y&~1)*s->mb_stride;                int mb_types_col[2];                int y_shift;                *mb_type = MB_TYPE_8x8|MB_TYPE_L0L1                         | (is_b8x8 ? 0 : MB_TYPE_DIRECT2)                         | (*mb_type & MB_TYPE_INTERLACED);                sub_mb_type = MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2|MB_TYPE_16x16;                if(IS_INTERLACED(*mb_type)){                    /* frame to field scaling */                    mb_types_col[0] = h->ref_list[1][0].mb_type[pair_xy];                    mb_types_col[1] = h->ref_list[1][0].mb_type[pair_xy+s->mb_stride];                    if(s->mb_y&1){                        l1ref0 -= 2*h->b8_stride;                        l1ref1 -= 2*h->b8_stride;                        l1mv0 -= 4*h->b_stride;                        l1mv1 -= 4*h->b_stride;                    }                    y_shift = 0;                    if(   (mb_types_col[0] & MB_TYPE_16x16_OR_INTRA)                       && (mb_types_col[1] & MB_TYPE_16x16_OR_INTRA)                       && !is_b8x8)                        *mb_type |= MB_TYPE_16x8;                    else                        *mb_type |= MB_TYPE_8x8;                }else{                    /* field to frame scaling */                    /* col_mb_y = (mb_y&~1) + (topAbsDiffPOC < bottomAbsDiffPOC ? 0 : 1)                     * but in MBAFF, top and bottom POC are equal */                    int dy = (s->mb_y&1) ? 1 : 2;                    mb_types_col[0] =                    mb_types_col[1] = h->ref_list[1][0].mb_type[pair_xy+s->mb_stride];                    l1ref0 += dy*h->b8_stride;                    l1ref1 += dy*h->b8_stride;                    l1mv0 += 2*dy*h->b_stride;                    l1mv1 += 2*dy*h->b_stride;                    y_shift = 2;                    if((mb_types_col[0] & (MB_TYPE_16x16_OR_INTRA|MB_TYPE_16x8))                       && !is_b8x8)                        *mb_type |= MB_TYPE_16x16;                    else                        *mb_type |= MB_TYPE_8x8;                }                for(i8=0; i8<4; i8++){                    const int x8 = i8&1;                    const int y8 = i8>>1;                    int ref0, scale;                    const int16_t (*l1mv)[2]= l1mv0;                    if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))                        continue;                    h->sub_mb_type[i8] = sub_mb_type;                    fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);                    if(IS_INTRA(mb_types_col[y8])){                        fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1);                        fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);                        fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);                        continue;                    }                    ref0 = l1ref0[x8 + (y8*2>>y_shift)*h->b8_stride];                    if(ref0 >= 0)                        ref0 = map_col_to_list0[0][ref0*2>>y_shift];                    else{                        ref0 = map_col_to_list0[1][l1ref1[x8 + (y8*2>>y_shift)*h->b8_stride]*2>>y_shift];                        l1mv= l1mv1;                    }                    scale = dist_scale_factor[ref0];                    fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);                    {                        const int16_t *mv_col = l1mv[x8*3 + (y8*6>>y_shift)*h->b_stride];                        int my_col = (mv_col[1]<<y_shift)/2;                        int mx = (scale * mv_col[0] + 128) >> 8;                        in

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -