[svn] / trunk / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /trunk/xvidcore/vfw/src/codec.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1382, Mon Mar 22 22:36:25 2004 UTC revision 1685, Fri Feb 24 22:59:07 2006 UTC
# Line 57  Line 57 
57  #include "codec.h"  #include "codec.h"
58  #include "status.h"  #include "status.h"
59    
 HINSTANCE m_hdll;  
 int (*xvid_global_func)(void *handle, int opt, void *param1, void *param2);  
 int (*xvid_encore_func)(void *handle, int opt, void *param1, void *param2);  
 int (*xvid_decore_func)(void *handle, int opt, void *param1, void *param2);  
   
 xvid_plugin_func *xvid_plugin_single_func,  
                                 *xvid_plugin_2pass1_func,  
                                 *xvid_plugin_2pass2_func,  
                                 *xvid_plugin_lumimasking_func,  
                                 *xvid_plugin_psnr_func;  
   
60    
61    
62  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
# Line 314  Line 303 
303    
304  #define XVID_DLL_NAME "xvidcore.dll"  #define XVID_DLL_NAME "xvidcore.dll"
305    
306  static int init_dll()  static int init_dll(CODEC* codec)
307  {  {
308          if (m_hdll != NULL) return 0;          if (codec->m_hdll != NULL)
309                    return 0;
310    
311          DPRINTF("init_dll");          DPRINTF("init_dll");
312          m_hdll = LoadLibrary(XVID_DLL_NAME);          codec->m_hdll = LoadLibrary(XVID_DLL_NAME);
313          if (m_hdll == NULL) {          if (codec->m_hdll == NULL) {
314                  DPRINTF("dll load failed");                  DPRINTF("dll load failed");
315                  MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);                  MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
316                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
317          }          }
318    
319          xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global");          codec->xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_global");
320          if (xvid_global_func == NULL) {          if (codec->xvid_global_func == NULL) {
321                  MessageBox(0, "xvid_global() not found", "Error", 0);                  MessageBox(0, "xvid_global() not found", "Error", 0);
322                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
323          }          }
324    
325          xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_encore");          codec->xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_encore");
326          if (xvid_encore_func == NULL) {          if (codec->xvid_encore_func == NULL) {
327                  MessageBox(0, "xvid_encore() not found", "Error", 0);                  MessageBox(0, "xvid_encore() not found", "Error", 0);
328                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
329          }          }
330    
331          xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_decore");          codec->xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_decore");
332          if (xvid_decore_func == NULL) {          if (codec->xvid_decore_func == NULL) {
333                  MessageBox(0, "xvid_decore() not found", "Error", 0);                  MessageBox(0, "xvid_decore() not found", "Error", 0);
334                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
335          }          }
336    
337          xvid_plugin_single_func =          codec->xvid_plugin_single_func =
338                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_single"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_single"));
339          xvid_plugin_2pass1_func =          codec->xvid_plugin_2pass1_func =
340                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass1"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass1"));
341          xvid_plugin_2pass2_func =          codec->xvid_plugin_2pass2_func =
342                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass2"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass2"));
343          xvid_plugin_lumimasking_func =          codec->xvid_plugin_lumimasking_func =
344                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_lumimasking"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_lumimasking"));
345          xvid_plugin_psnr_func =          codec->xvid_plugin_psnr_func =
346                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_psnr"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_psnr"));
347    
348          return 0;          return 0;
349  }  }
# Line 433  Line 423 
423          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
424          int i;          int i;
425          HANDLE hFile;          HANDLE hFile;
426      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
427        &codec->config.quality_user : &quality_table[codec->config.quality];
428    
429          CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */          CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
430          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
431    
432          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
433          /* destroy previously created codec */          /* destroy previously created codec */
434          if(codec->ehandle) {          if(codec->ehandle) {
435                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
436                  codec->ehandle = NULL;                  codec->ehandle = NULL;
437          }          }
438    
# Line 448  Line 440 
440          init.version = XVID_VERSION;          init.version = XVID_VERSION;
441          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
442          init.debug = codec->config.debug;          init.debug = codec->config.debug;
443          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
444    
445          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
446          create.version = XVID_VERSION;          create.version = XVID_VERSION;
# Line 464  Line 456 
456                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
457                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
458                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
459                  plugins[create.num_plugins].func = xvid_plugin_single_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
460                  plugins[create.num_plugins].param = &single;                  plugins[create.num_plugins].param = &single;
461                  create.num_plugins++;                  create.num_plugins++;
462                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
# Line 477  Line 469 
469                  pass1.filename = codec->config.stats;                  pass1.filename = codec->config.stats;
470                  if (codec->config.full1pass)                  if (codec->config.full1pass)
471                          prepare_full1pass_zones(&tmpCfg);                          prepare_full1pass_zones(&tmpCfg);
472                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
473                  plugins[create.num_plugins].param = &pass1;                  plugins[create.num_plugins].param = &pass1;
474                  create.num_plugins++;                  create.num_plugins++;
475                  break;                  break;
# Line 512  Line 504 
504                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
505                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
506    
507                  plugins[create.num_plugins].func = xvid_plugin_2pass2_func;                  /* VBV */
508                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
509                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
510                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
511    
512        // XXX: xvidcore current provides a "peak bits over 3secs" constraint.
513        //      according to the latest dxn literature, a 1sec constraint is now used
514        pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3;
515    
516                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
517                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
518                  create.num_plugins++;                  create.num_plugins++;
519                  break;                  break;
# Line 541  Line 542 
542    
543          /* lumimasking plugin */          /* lumimasking plugin */
544          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
545                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
546                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = NULL;
547                  create.num_plugins++;                  create.num_plugins++;
548          }          }
# Line 557  Line 558 
558          create.fincr = codec->fincr;          create.fincr = codec->fincr;
559          create.fbase = codec->fbase;          create.fbase = codec->fbase;
560    
561          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
562    
563          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
564          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
565          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
566          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
567          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
568          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
569    
570          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
571    
572        /* dxn: prevent bframes usage if interlacing is selected */
573        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
574                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
575                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
576                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 574  Line 578 
578                  if (codec->config.packed)                  if (codec->config.packed)
579                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
580    
                 if (codec->config.closed_gov)  
581                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
582    
583          /* dxn: restrict max bframes and enable packed bframes */
584          if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
585    
586            if (create.max_bframes > profiles[codec->config.profile].xvid_max_bframes)
587              create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
588    
589            create.global |= XVID_GLOBAL_PACKED;
590          }
591        }
592          }          }
593    
594          create.frame_drop_ratio = codec->config.frame_drop_ratio;    /* dxn: always write divx5 userdata */
595      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
596        create.global |= XVID_GLOBAL_DIVX5_USERDATA;
597    
598            create.frame_drop_ratio = quality_preset->frame_drop_ratio;
599    
600          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
601    
602          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
603          {          {
604          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
605                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 598  Line 614 
614                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
615          }          }
616    
617            free(create.zones);
618          codec->ehandle = create.handle;          codec->ehandle = create.handle;
619          codec->framenum = 0;          codec->framenum = 0;
620          codec->keyspacing = 0;          codec->keyspacing = 0;
# Line 613  Line 630 
630    
631  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
632  {  {
633          if (m_hdll != NULL) {    if (codec==NULL)
634        return ICERR_OK;
635    
636            if (codec->m_hdll != NULL) {
637                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
638                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
639                          codec->ehandle = NULL;                          codec->ehandle = NULL;
640                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
641          }          }
642    
643          if (codec->config.display_status)          if (codec->config.display_status)
# Line 648  Line 666 
666                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
667          }          }
668    
669            if (config->zones[i].cartoon_mode) {
670                    frame->vop_flags |= XVID_VOP_CARTOON;
671                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
672            }
673    
674          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
675                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
676          }          }
677  }  }
678    
679    
680    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
681    
682  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
683  {  {
684          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 661  Line 686 
686          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
687          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
688          int length;          int length;
689      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
690        &codec->config.quality_user : &quality_table[codec->config.quality];
691    
692          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
693          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 683  Line 710 
710                  }                  }
711          }          }
712    
         if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&  
                 codec->config.reduced_resolution) {  
                 frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;  
                 frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */  
         }  
   
713          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
714                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
715                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 702  Line 723 
723          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
724                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
725    
726          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
727      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
728        frame.par = XVID_PAR_11_VGA;
729      } else if (codec->config.ar_mode == 0) { /* PAR */
730                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
731                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
732                  } else {                  } else {
# Line 722  Line 746 
746          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
747          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
748    
749            if (codec->config.interlacing && codec->config.tff)
750                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
751    
752    
753          if (codec->config.vop_debug)          if (codec->config.vop_debug)
754                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
755    
756          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
757                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
758          }          }
759    
760          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
761              if (quality_preset->motion_search > 4)
762                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
763      }
764    
765          if (codec->config.chromame)          if (quality_preset->chromame)
766                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
767    
768          if (codec->config.cartoon_mode) {          if (quality_preset->turbo)
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
         if (codec->config.turbo)  
769                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
770                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
771                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
772    
773          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
774    
775            if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
776    
777    
778          switch (codec->config.vhq_mode)          switch (quality_preset->vhq_mode)
779          {          {
780          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
781                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 783  Line 811 
811          }          }
812    
813          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
814          frame.input.stride[0] = (((icc->lpbiInput->biWidth * icc->lpbiInput->biBitCount) + 31) & ~31) >> 3;          frame.input.stride[0] = CALC_BI_STRIDE(icc->lpbiInput->biWidth, icc->lpbiInput->biBitCount);
815    
816          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
817                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 805  Line 833 
833          }          }
834    
835          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
836          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
837                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
838    
839          /* frame-based stuff */          /* frame-based stuff */
# Line 816  Line 844 
844          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
845          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
846    
847          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
848          switch (length)          switch (length)
849          {          {
850          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 936  Line 964 
964          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
965          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
966          outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */          outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */
967          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
968    
969          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
970          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
971          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 959  Line 988 
988          xvid_dec_create_t create;          xvid_dec_create_t create;
989          HKEY hKey;          HKEY hKey;
990    
991          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
992    
993          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
994          init.version = XVID_VERSION;          init.version = XVID_VERSION;
995          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
996          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);    init.debug = codec->config.debug;
997            codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
998    
999          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
1000          create.version = XVID_VERSION;          create.version = XVID_VERSION;
1001          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
1002          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
1003    
1004          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
1005          {          {
1006          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1007                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 990  Line 1020 
1020    
1021          RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);          RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
1022    
1023            REG_GET_N("Brightness", pp_brightness, 0);
1024          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0)
1025          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0)
1026          REG_GET_N("Dering",  pp_dr, 0)          REG_GET_N("Dering_Y",  pp_dry, 0)
1027            REG_GET_N("Dering_UV", pp_druv, 0)
1028          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0)
1029    
1030          RegCloseKey(hKey);          RegCloseKey(hKey);
# Line 1003  Line 1035 
1035    
1036  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1037  {  {
1038          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
1039                  if (codec->dhandle != NULL) {                  if (codec->dhandle != NULL) {
1040                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1041                          codec->dhandle = NULL;                          codec->dhandle = NULL;
1042                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
1043          }          }
1044    
1045          return ICERR_OK;          return ICERR_OK;
# Line 1042  Line 1072 
1072    
1073                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1074                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1075                  convert.input.stride[0] = (((icd->lpbiInput->biWidth *icd->lpbiInput->biBitCount) + 31) & ~31) >> 3;                  convert.input.stride[0] = CALC_BI_STRIDE(icd->lpbiInput->biWidth, icd->lpbiInput->biBitCount);
1076                  if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)                  if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)
1077                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1078    
1079                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1080                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1081                  convert.output.stride[0] = (((icd->lpbiOutput->biWidth *icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;                  convert.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1082                  if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)                  if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)
1083                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1084    
# Line 1057  Line 1087 
1087                  convert.interlacing = 0;                  convert.interlacing = 0;
1088                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1089                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1090                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1091                  {                  {
1092                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1093                  }                  }
# Line 1078  Line 1108 
1108                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1109                  }                  }
1110                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1111                  frame.output.stride[0] = (((icd->lpbiOutput->biWidth * icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;                  frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1112                  if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)                  if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)
1113                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1114          }          }
1115          else          else
1116          {          {
# Line 1089  Line 1119 
1119    
1120          if (pp_dy)frame.general |= XVID_DEBLOCKY;          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1121          if (pp_duv) frame.general |= XVID_DEBLOCKUV;          if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1122  /*      if (pp_dr) frame.general |= XVID_DERING; */          if (pp_dry) frame.general |= XVID_DERINGY;
1123            if (pp_druv) frame.general |= XVID_DERINGUV;
1124          if (pp_fe) frame.general |= XVID_FILMEFFECT;          if (pp_fe) frame.general |= XVID_FILMEFFECT;
1125    
1126          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          frame.brightness = pp_brightness;
1127    
1128            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1129          {          {
1130          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1131                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1382  
changed lines
  Added in v.1685

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4