You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
mpegvideo: reindent.
This commit is contained in:
@ -521,87 +521,85 @@ av_cold int MPV_common_init(MpegEncContext *s)
|
|||||||
s->flags2= s->avctx->flags2;
|
s->flags2= s->avctx->flags2;
|
||||||
|
|
||||||
if (s->width && s->height) {
|
if (s->width && s->height) {
|
||||||
|
s->mb_width = (s->width + 15) / 16;
|
||||||
|
s->mb_stride = s->mb_width + 1;
|
||||||
|
s->b8_stride = s->mb_width*2 + 1;
|
||||||
|
s->b4_stride = s->mb_width*4 + 1;
|
||||||
|
mb_array_size= s->mb_height * s->mb_stride;
|
||||||
|
mv_table_size= (s->mb_height+2) * s->mb_stride + 1;
|
||||||
|
|
||||||
s->mb_width = (s->width + 15) / 16;
|
/* set chroma shifts */
|
||||||
s->mb_stride = s->mb_width + 1;
|
avcodec_get_chroma_sub_sample(s->avctx->pix_fmt,&(s->chroma_x_shift),
|
||||||
s->b8_stride = s->mb_width*2 + 1;
|
&(s->chroma_y_shift) );
|
||||||
s->b4_stride = s->mb_width*4 + 1;
|
|
||||||
mb_array_size= s->mb_height * s->mb_stride;
|
|
||||||
mv_table_size= (s->mb_height+2) * s->mb_stride + 1;
|
|
||||||
|
|
||||||
/* set chroma shifts */
|
/* set default edge pos, will be overriden in decode_header if needed */
|
||||||
avcodec_get_chroma_sub_sample(s->avctx->pix_fmt,&(s->chroma_x_shift),
|
s->h_edge_pos= s->mb_width*16;
|
||||||
&(s->chroma_y_shift) );
|
s->v_edge_pos= s->mb_height*16;
|
||||||
|
|
||||||
/* set default edge pos, will be overriden in decode_header if needed */
|
s->mb_num = s->mb_width * s->mb_height;
|
||||||
s->h_edge_pos= s->mb_width*16;
|
|
||||||
s->v_edge_pos= s->mb_height*16;
|
|
||||||
|
|
||||||
s->mb_num = s->mb_width * s->mb_height;
|
s->block_wrap[0]=
|
||||||
|
s->block_wrap[1]=
|
||||||
|
s->block_wrap[2]=
|
||||||
|
s->block_wrap[3]= s->b8_stride;
|
||||||
|
s->block_wrap[4]=
|
||||||
|
s->block_wrap[5]= s->mb_stride;
|
||||||
|
|
||||||
s->block_wrap[0]=
|
y_size = s->b8_stride * (2 * s->mb_height + 1);
|
||||||
s->block_wrap[1]=
|
c_size = s->mb_stride * (s->mb_height + 1);
|
||||||
s->block_wrap[2]=
|
yc_size = y_size + 2 * c_size;
|
||||||
s->block_wrap[3]= s->b8_stride;
|
|
||||||
s->block_wrap[4]=
|
|
||||||
s->block_wrap[5]= s->mb_stride;
|
|
||||||
|
|
||||||
y_size = s->b8_stride * (2 * s->mb_height + 1);
|
/* convert fourcc to upper case */
|
||||||
c_size = s->mb_stride * (s->mb_height + 1);
|
s->codec_tag = ff_toupper4(s->avctx->codec_tag);
|
||||||
yc_size = y_size + 2 * c_size;
|
|
||||||
|
|
||||||
/* convert fourcc to upper case */
|
s->stream_codec_tag = ff_toupper4(s->avctx->stream_codec_tag);
|
||||||
s->codec_tag = ff_toupper4(s->avctx->codec_tag);
|
|
||||||
|
|
||||||
s->stream_codec_tag = ff_toupper4(s->avctx->stream_codec_tag);
|
s->avctx->coded_frame= (AVFrame*)&s->current_picture;
|
||||||
|
|
||||||
s->avctx->coded_frame= (AVFrame*)&s->current_picture;
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_index2xy, (s->mb_num+1)*sizeof(int), fail) //error ressilience code looks cleaner with this
|
||||||
|
for(y=0; y<s->mb_height; y++){
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_index2xy, (s->mb_num+1)*sizeof(int), fail) //error ressilience code looks cleaner with this
|
for(x=0; x<s->mb_width; x++){
|
||||||
for(y=0; y<s->mb_height; y++){
|
s->mb_index2xy[ x + y*s->mb_width ] = x + y*s->mb_stride;
|
||||||
for(x=0; x<s->mb_width; x++){
|
}
|
||||||
s->mb_index2xy[ x + y*s->mb_width ] = x + y*s->mb_stride;
|
|
||||||
}
|
}
|
||||||
}
|
s->mb_index2xy[ s->mb_height*s->mb_width ] = (s->mb_height-1)*s->mb_stride + s->mb_width; //FIXME really needed?
|
||||||
s->mb_index2xy[ s->mb_height*s->mb_width ] = (s->mb_height-1)*s->mb_stride + s->mb_width; //FIXME really needed?
|
|
||||||
|
|
||||||
if (s->encoding) {
|
if (s->encoding) {
|
||||||
/* Allocate MV tables */
|
/* Allocate MV tables */
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->p_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->p_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_forw_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_forw_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_back_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_back_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_forw_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_forw_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_back_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_bidir_back_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_direct_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->b_direct_mv_table_base , mv_table_size * 2 * sizeof(int16_t), fail)
|
||||||
s->p_mv_table = s->p_mv_table_base + s->mb_stride + 1;
|
s->p_mv_table = s->p_mv_table_base + s->mb_stride + 1;
|
||||||
s->b_forw_mv_table = s->b_forw_mv_table_base + s->mb_stride + 1;
|
s->b_forw_mv_table = s->b_forw_mv_table_base + s->mb_stride + 1;
|
||||||
s->b_back_mv_table = s->b_back_mv_table_base + s->mb_stride + 1;
|
s->b_back_mv_table = s->b_back_mv_table_base + s->mb_stride + 1;
|
||||||
s->b_bidir_forw_mv_table= s->b_bidir_forw_mv_table_base + s->mb_stride + 1;
|
s->b_bidir_forw_mv_table= s->b_bidir_forw_mv_table_base + s->mb_stride + 1;
|
||||||
s->b_bidir_back_mv_table= s->b_bidir_back_mv_table_base + s->mb_stride + 1;
|
s->b_bidir_back_mv_table= s->b_bidir_back_mv_table_base + s->mb_stride + 1;
|
||||||
s->b_direct_mv_table = s->b_direct_mv_table_base + s->mb_stride + 1;
|
s->b_direct_mv_table = s->b_direct_mv_table_base + s->mb_stride + 1;
|
||||||
|
|
||||||
if(s->msmpeg4_version){
|
if(s->msmpeg4_version){
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->ac_stats, 2*2*(MAX_LEVEL+1)*(MAX_RUN+1)*2*sizeof(int), fail);
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->ac_stats, 2*2*(MAX_LEVEL+1)*(MAX_RUN+1)*2*sizeof(int), fail);
|
||||||
|
}
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->avctx->stats_out, 256, fail);
|
||||||
|
|
||||||
|
/* Allocate MB type table */
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_type , mb_array_size * sizeof(uint16_t), fail) //needed for encoding
|
||||||
|
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->lambda_table, mb_array_size * sizeof(int), fail)
|
||||||
|
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_intra_matrix , 64*32 * sizeof(int), fail)
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_inter_matrix , 64*32 * sizeof(int), fail)
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_intra_matrix16, 64*32*2 * sizeof(uint16_t), fail)
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_inter_matrix16, 64*32*2 * sizeof(uint16_t), fail)
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->input_picture, MAX_PICTURE_COUNT * sizeof(Picture*), fail)
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->reordered_input_picture, MAX_PICTURE_COUNT * sizeof(Picture*), fail)
|
||||||
|
|
||||||
|
if(s->avctx->noise_reduction){
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->dct_offset, 2 * 64 * sizeof(uint16_t), fail)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->avctx->stats_out, 256, fail);
|
|
||||||
|
|
||||||
/* Allocate MB type table */
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->mb_type , mb_array_size * sizeof(uint16_t), fail) //needed for encoding
|
|
||||||
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->lambda_table, mb_array_size * sizeof(int), fail)
|
|
||||||
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_intra_matrix , 64*32 * sizeof(int), fail)
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_inter_matrix , 64*32 * sizeof(int), fail)
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_intra_matrix16, 64*32*2 * sizeof(uint16_t), fail)
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->q_inter_matrix16, 64*32*2 * sizeof(uint16_t), fail)
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->input_picture, MAX_PICTURE_COUNT * sizeof(Picture*), fail)
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->reordered_input_picture, MAX_PICTURE_COUNT * sizeof(Picture*), fail)
|
|
||||||
|
|
||||||
if(s->avctx->noise_reduction){
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->dct_offset, 2 * 64 * sizeof(uint16_t), fail)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->picture, MAX_PICTURE_COUNT * sizeof(Picture), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->picture, MAX_PICTURE_COUNT * sizeof(Picture), fail)
|
||||||
@ -610,11 +608,10 @@ av_cold int MPV_common_init(MpegEncContext *s)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (s->width && s->height) {
|
if (s->width && s->height) {
|
||||||
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->error_status_table, mb_array_size*sizeof(uint8_t), fail)
|
||||||
|
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->error_status_table, mb_array_size*sizeof(uint8_t), fail)
|
if(s->codec_id==CODEC_ID_MPEG4 || (s->flags & CODEC_FLAG_INTERLACED_ME)){
|
||||||
|
/* interlaced direct mode decoding tables */
|
||||||
if(s->codec_id==CODEC_ID_MPEG4 || (s->flags & CODEC_FLAG_INTERLACED_ME)){
|
|
||||||
/* interlaced direct mode decoding tables */
|
|
||||||
for(i=0; i<2; i++){
|
for(i=0; i<2; i++){
|
||||||
int j, k;
|
int j, k;
|
||||||
for(j=0; j<2; j++){
|
for(j=0; j<2; j++){
|
||||||
@ -628,64 +625,62 @@ av_cold int MPV_common_init(MpegEncContext *s)
|
|||||||
}
|
}
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->p_field_select_table[i], mb_array_size * 2 * sizeof(uint8_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->p_field_select_table[i], mb_array_size * 2 * sizeof(uint8_t), fail)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (s->out_format == FMT_H263) {
|
if (s->out_format == FMT_H263) {
|
||||||
/* cbp values */
|
/* cbp values */
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->coded_block_base, y_size, fail);
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->coded_block_base, y_size, fail);
|
||||||
s->coded_block= s->coded_block_base + s->b8_stride + 1;
|
s->coded_block= s->coded_block_base + s->b8_stride + 1;
|
||||||
|
|
||||||
/* cbp, ac_pred, pred_dir */
|
/* cbp, ac_pred, pred_dir */
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->cbp_table , mb_array_size * sizeof(uint8_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->cbp_table , mb_array_size * sizeof(uint8_t), fail)
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->pred_dir_table, mb_array_size * sizeof(uint8_t), fail)
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->pred_dir_table, mb_array_size * sizeof(uint8_t), fail)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s->h263_pred || s->h263_plus || !s->encoding) {
|
if (s->h263_pred || s->h263_plus || !s->encoding) {
|
||||||
/* dc values */
|
/* dc values */
|
||||||
//MN: we need these for error resilience of intra-frames
|
//MN: we need these for error resilience of intra-frames
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->dc_val_base, yc_size * sizeof(int16_t), fail);
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->dc_val_base, yc_size * sizeof(int16_t), fail);
|
||||||
s->dc_val[0] = s->dc_val_base + s->b8_stride + 1;
|
s->dc_val[0] = s->dc_val_base + s->b8_stride + 1;
|
||||||
s->dc_val[1] = s->dc_val_base + y_size + s->mb_stride + 1;
|
s->dc_val[1] = s->dc_val_base + y_size + s->mb_stride + 1;
|
||||||
s->dc_val[2] = s->dc_val[1] + c_size;
|
s->dc_val[2] = s->dc_val[1] + c_size;
|
||||||
for(i=0;i<yc_size;i++)
|
for(i=0;i<yc_size;i++)
|
||||||
s->dc_val_base[i] = 1024;
|
s->dc_val_base[i] = 1024;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* which mb is a intra block */
|
/* which mb is a intra block */
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->mbintra_table, mb_array_size, fail);
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->mbintra_table, mb_array_size, fail);
|
||||||
memset(s->mbintra_table, 1, mb_array_size);
|
memset(s->mbintra_table, 1, mb_array_size);
|
||||||
|
|
||||||
/* init macroblock skip table */
|
/* init macroblock skip table */
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->mbskip_table, mb_array_size+2, fail);
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->mbskip_table, mb_array_size+2, fail);
|
||||||
//Note the +1 is for a quicker mpeg4 slice_end detection
|
//Note the +1 is for a quicker mpeg4 slice_end detection
|
||||||
FF_ALLOCZ_OR_GOTO(s->avctx, s->prev_pict_types, PREV_PICT_TYPES_BUFFER_SIZE, fail);
|
FF_ALLOCZ_OR_GOTO(s->avctx, s->prev_pict_types, PREV_PICT_TYPES_BUFFER_SIZE, fail);
|
||||||
|
|
||||||
s->parse_context.state= -1;
|
s->parse_context.state= -1;
|
||||||
if((s->avctx->debug&(FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) || (s->avctx->debug_mv)){
|
if((s->avctx->debug&(FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) || (s->avctx->debug_mv)){
|
||||||
s->visualization_buffer[0] = av_malloc((s->mb_width*16 + 2*EDGE_WIDTH) * s->mb_height*16 + 2*EDGE_WIDTH);
|
s->visualization_buffer[0] = av_malloc((s->mb_width*16 + 2*EDGE_WIDTH) * s->mb_height*16 + 2*EDGE_WIDTH);
|
||||||
s->visualization_buffer[1] = av_malloc((s->mb_width*16 + 2*EDGE_WIDTH) * s->mb_height*16 + 2*EDGE_WIDTH);
|
s->visualization_buffer[1] = av_malloc((s->mb_width*16 + 2*EDGE_WIDTH) * s->mb_height*16 + 2*EDGE_WIDTH);
|
||||||
s->visualization_buffer[2] = av_malloc((s->mb_width*16 + 2*EDGE_WIDTH) * s->mb_height*16 + 2*EDGE_WIDTH);
|
s->visualization_buffer[2] = av_malloc((s->mb_width*16 + 2*EDGE_WIDTH) * s->mb_height*16 + 2*EDGE_WIDTH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
s->context_initialized = 1;
|
s->context_initialized = 1;
|
||||||
|
|
||||||
if (s->width && s->height) {
|
if (s->width && s->height) {
|
||||||
|
s->thread_context[0]= s;
|
||||||
|
threads = s->avctx->thread_count;
|
||||||
|
|
||||||
s->thread_context[0]= s;
|
for(i=1; i<threads; i++){
|
||||||
threads = s->avctx->thread_count;
|
s->thread_context[i]= av_malloc(sizeof(MpegEncContext));
|
||||||
|
memcpy(s->thread_context[i], s, sizeof(MpegEncContext));
|
||||||
for(i=1; i<threads; i++){
|
}
|
||||||
s->thread_context[i]= av_malloc(sizeof(MpegEncContext));
|
|
||||||
memcpy(s->thread_context[i], s, sizeof(MpegEncContext));
|
|
||||||
}
|
|
||||||
|
|
||||||
for(i=0; i<threads; i++){
|
|
||||||
if(init_duplicate_context(s->thread_context[i], s) < 0)
|
|
||||||
goto fail;
|
|
||||||
s->thread_context[i]->start_mb_y= (s->mb_height*(i ) + s->avctx->thread_count/2) / s->avctx->thread_count;
|
|
||||||
s->thread_context[i]->end_mb_y = (s->mb_height*(i+1) + s->avctx->thread_count/2) / s->avctx->thread_count;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
for(i=0; i<threads; i++){
|
||||||
|
if(init_duplicate_context(s->thread_context[i], s) < 0)
|
||||||
|
goto fail;
|
||||||
|
s->thread_context[i]->start_mb_y= (s->mb_height*(i ) + s->avctx->thread_count/2) / s->avctx->thread_count;
|
||||||
|
s->thread_context[i]->end_mb_y = (s->mb_height*(i+1) + s->avctx->thread_count/2) / s->avctx->thread_count;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user