📄 codec.c
字号:
static voidprepare_full1pass_zones(CONFIG * config) { int i = 0; if (config->num_zones == 0 || config->zones[0].frame != 0) { /* first zone does not start at frame 0 or doesn't exist */ if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */ config->zones[config->num_zones].frame = 0; config->zones[config->num_zones].mode = RC_ZONE_QUANT; config->zones[config->num_zones].weight = 100; config->zones[config->num_zones].quant = 200; config->zones[config->num_zones].type = XVID_TYPE_AUTO; config->zones[config->num_zones].greyscale = 0; config->zones[config->num_zones].chroma_opt = 0; config->zones[config->num_zones].bvop_threshold = 0; config->num_zones++; sort_zones(config->zones, config->num_zones, &i); } /* step 2: let's change all weight zones into quant zones */ for(i = 0; i < config->num_zones; i++) if (config->zones[i].mode == RC_ZONE_WEIGHT) { config->zones[i].mode = RC_ZONE_QUANT; config->zones[i].quant = 200; }}LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput){ xvid_gbl_init_t init; xvid_enc_create_t create; xvid_enc_plugin_t plugins[3]; xvid_plugin_single_t single; xvid_plugin_2pass1_t pass1; xvid_plugin_2pass2_t pass2; int i; HANDLE hFile; const quality_t* quality_preset = (codec->config.quality==quality_table_num) ? &codec->config.quality_user : &quality_table[codec->config.quality]; CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */ memcpy(&tmpCfg, &codec->config, sizeof(CONFIG)); if (init_dll(codec) != 0) return ICERR_ERROR; /* destroy previously created codec */ if(codec->ehandle) { codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL); codec->ehandle = NULL; } memset(&init, 0, sizeof(init)); init.version = XVID_VERSION; init.cpu_flags = codec->config.cpu; init.debug = codec->config.debug; codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL); memset(&create, 0, sizeof(create)); create.version = XVID_VERSION; /* plugins */ create.plugins = plugins; switch (codec->config.mode) { case RC_MODE_1PASS : memset(&single, 0, sizeof(single)); single.version = XVID_VERSION; single.bitrate = codec->config.bitrate * CONFIG_KBPS; single.reaction_delay_factor = codec->config.rc_reaction_delay_factor; single.averaging_period = codec->config.rc_averaging_period; single.buffer = codec->config.rc_buffer; plugins[create.num_plugins].func = codec->xvid_plugin_single_func; plugins[create.num_plugins].param = &single; create.num_plugins++; if (!codec->config.use_2pass_bitrate) /* constant-quant mode */ prepare_cquant_zones(&tmpCfg); break; case RC_MODE_2PASS1 : memset(&pass1, 0, sizeof(pass1)); pass1.version = XVID_VERSION; pass1.filename = codec->config.stats; if (codec->config.full1pass) prepare_full1pass_zones(&tmpCfg); plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func; plugins[create.num_plugins].param = &pass1; create.num_plugins++; break; case RC_MODE_2PASS2 : memset(&pass2, 0, sizeof(pass2)); pass2.version = XVID_VERSION; if (codec->config.use_2pass_bitrate) { pass2.bitrate = codec->config.bitrate * CONFIG_KBPS; } else { pass2.bitrate = -codec->config.desired_size; /* kilobytes */ } pass2.filename = codec->config.stats; hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL); if (hFile == INVALID_HANDLE_VALUE) { MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK); return XVID_ERR_FAIL; } else { CloseHandle(hFile); } pass2.keyframe_boost = codec->config.keyframe_boost; /* keyframe boost percentage: [0..100...]; */ pass2.curve_compression_high = codec->config.curve_compression_high; pass2.curve_compression_low = codec->config.curve_compression_low; pass2.overflow_control_strength = codec->config.overflow_control_strength; pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement; pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation; pass2.kfreduction = codec->config.kfreduction; pass2.kfthreshold = codec->config.kfthreshold; pass2.container_frame_overhead = 24; /* AVI */ /* VBV */ pass2.vbv_size = profiles[codec->config.profile].max_vbv_size; pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */ pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate; // XXX: xvidcore current provides a "peak bits over 3secs" constraint. // according to the latest dxn literature, a 1sec constraint is now used pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3; plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func; plugins[create.num_plugins].param = &pass2; create.num_plugins++; break; case RC_MODE_NULL : return ICERR_OK; default : break; } /* zones - copy from tmpCfg in case we automatically altered them above */ create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones); create.num_zones = tmpCfg.num_zones; for (i=0; i < create.num_zones; i++) { create.zones[i].frame = tmpCfg.zones[i].frame; if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) { create.zones[i].mode = XVID_ZONE_QUANT; create.zones[i].increment = tmpCfg.zones[i].quant; }else{ create.zones[i].mode = XVID_ZONE_WEIGHT; create.zones[i].increment = tmpCfg.zones[i].weight; } create.zones[i].base = 100; } /* lumimasking plugin */ if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) { plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func; plugins[create.num_plugins].param = NULL; create.num_plugins++; } plugins[create.num_plugins].func = vfw_debug; plugins[create.num_plugins].param = NULL; create.num_plugins++; create.profile = profiles[codec->config.profile].id; create.width = lpbiInput->bmiHeader.biWidth; create.height = lpbiInput->bmiHeader.biHeight; create.fincr = codec->fincr; create.fbase = codec->fbase; create.max_key_interval = quality_preset->max_key_interval; create.min_quant[0] = quality_preset->min_iquant; create.max_quant[0] = quality_preset->max_iquant; create.min_quant[1] = quality_preset->min_pquant; create.max_quant[1] = quality_preset->max_pquant; create.min_quant[2] = quality_preset->min_bquant; create.max_quant[2] = quality_preset->max_bquant; if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) { /* dxn: prevent bframes usage if interlacing is selected */ if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) { create.max_bframes = codec->config.max_bframes; create.bquant_ratio = codec->config.bquant_ratio; create.bquant_offset = codec->config.bquant_offset; if (codec->config.packed) create.global |= XVID_GLOBAL_PACKED; create.global |= XVID_GLOBAL_CLOSED_GOP; /* restrict max bframes */ if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0)) create.max_bframes = profiles[codec->config.profile].xvid_max_bframes; /* dxn: enable packed bframes */ if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) { create.global |= XVID_GLOBAL_PACKED; } } } /* dxn: always write divx5 userdata */ if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) create.global |= XVID_GLOBAL_DIVX5_USERDATA; create.frame_drop_ratio = quality_preset->frame_drop_ratio; create.num_threads = codec->config.num_threads; switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL)) { case XVID_ERR_FAIL : return ICERR_ERROR; case XVID_ERR_MEMORY : return ICERR_MEMORY; case XVID_ERR_FORMAT : return ICERR_BADFORMAT; case XVID_ERR_VERSION : return ICERR_UNSUPPORTED; } free(create.zones); codec->ehandle = create.handle; codec->framenum = 0; codec->keyspacing = 0; if (codec->config.display_status) { status_destroy_always(&codec->status); status_create(&codec->status, codec->fincr, codec->fbase); } return ICERR_OK;}LRESULT compress_end(CODEC * codec){ if (codec==NULL) return ICERR_OK; if (codec->m_hdll != NULL) { if (codec->ehandle != NULL) { codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL); codec->ehandle = NULL; } } if (codec->config.display_status) status_destroy(&codec->status); return ICERR_OK;}static void apply_zone_modifiers(xvid_enc_frame_t * frame, CONFIG * config, int framenum){ int i; for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ; if (--i < 0) return; /* there are no zones, or we're before the first zone */ if (framenum == config->zones[i].frame) frame->type = config->zones[i].type; if (config->zones[i].greyscale) { frame->vop_flags |= XVID_VOP_GREYSCALE; } if (config->zones[i].chroma_opt) { frame->vop_flags |= XVID_VOP_CHROMAOPT; } if (config->zones[i].cartoon_mode) { frame->vop_flags |= XVID_VOP_CARTOON; frame->motion |= XVID_ME_DETECT_STATIC_MOTION; } if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) { frame->bframe_threshold = config->zones[i].bvop_threshold; }}#define CALC_BI_STRIDE(width,bitcount) ((((width * bitcount) + 31) & ~31) >> 3)LRESULT compress(CODEC * codec, ICCOMPRESS * icc){ BITMAPINFOHEADER * inhdr = icc->lpbiInput; BITMAPINFOHEADER * outhdr = icc->lpbiOutput; xvid_enc_frame_t frame; xvid_enc_stats_t stats; int length; const quality_t* quality_preset = (codec->config.quality==quality_table_num) ? &codec->config.quality_user : &quality_table[codec->config.quality]; memset(&frame, 0, sizeof(frame)); frame.version = XVID_VERSION; frame.type = XVID_TYPE_AUTO; /* vol stuff */ if ((profiles[codec->config.profile].flags & PROFILE_MPEGQUANT) && codec->config.quant_type != QUANT_MODE_H263) { frame.vol_flags |= XVID_VOL_MPEGQUANT; if (codec->config.quant_type == QUANT_MODE_CUSTOM) { frame.quant_intra_matrix = codec->config.qmatrix_intra; frame.quant_inter_matrix = codec->config.qmatrix_inter; }else{ frame.quant_intra_matrix = NULL; frame.quant_inter_matrix = NULL; } } if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) { frame.vol_flags |= XVID_VOL_QUARTERPEL; frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8; } if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) { frame.vol_flags |= XVID_VOL_GMC; frame.motion |= XVID_ME_GME_REFINE; } if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing) frame.vol_flags |= XVID_VOL_INTERLACING; /* dxn: force 1:1 picture aspect ration */ if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) { frame.par = XVID_PAR_11_VGA; } else if (codec->config.ar_mode == 0) { /* PAR */ if (codec->config.display_aspect_ratio != 5) { frame.par = codec->config.display_aspect_ratio + 1; } else { frame.par = XVID_PAR_EXT; frame.par_width = codec->config.par_x; frame.par_height= codec->config.par_y; } } else { /* AR */ /* custom pixel aspect ratio -> calculated from DAR */ frame.par = XVID_PAR_EXT; frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y; frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x; } /* vop stuff */ frame.vop_flags |= XVID_VOP_HALFPEL; frame.vop_flags |= XVID_VOP_HQACPRED; if (codec->config.interlacing && codec->config.tff) frame.vop_flags |= XVID_VOP_TOPFIELDFIRST; if (codec->config.vop_debug) frame.vop_flags |= XVID_VOP_DEBUG; if (quality_preset->trellis_quant) { frame.vop_flags |= XVID_VOP_TRELLISQUANT; } if ((profiles[codec->config.profile].flags & PROFILE_4MV)) { if (quality_preset->motion_search > 4) frame.vop_flags |= XVID_VOP_INTER4V; } if (quality_preset->chromame)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -