[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 1397, Thu Apr 1 11:11:28 2004 UTC revision 1437, Sun Apr 18 07:55:11 2004 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 437  Line 427 
427          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 */
428          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
429    
430          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
431          /* destroy previously created codec */          /* destroy previously created codec */
432          if(codec->ehandle) {          if(codec->ehandle) {
433                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
434                  codec->ehandle = NULL;                  codec->ehandle = NULL;
435          }          }
436    
# Line 448  Line 438 
438          init.version = XVID_VERSION;          init.version = XVID_VERSION;
439          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
440          init.debug = codec->config.debug;          init.debug = codec->config.debug;
441          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
442    
443          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
444          create.version = XVID_VERSION;          create.version = XVID_VERSION;
# Line 464  Line 454 
454                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
455                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
456                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
457                  plugins[create.num_plugins].func = xvid_plugin_single_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
458                  plugins[create.num_plugins].param = &single;                  plugins[create.num_plugins].param = &single;
459                  create.num_plugins++;                  create.num_plugins++;
460                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
# Line 477  Line 467 
467                  pass1.filename = codec->config.stats;                  pass1.filename = codec->config.stats;
468                  if (codec->config.full1pass)                  if (codec->config.full1pass)
469                          prepare_full1pass_zones(&tmpCfg);                          prepare_full1pass_zones(&tmpCfg);
470                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
471                  plugins[create.num_plugins].param = &pass1;                  plugins[create.num_plugins].param = &pass1;
472                  create.num_plugins++;                  create.num_plugins++;
473                  break;                  break;
# Line 512  Line 502 
502                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
503                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
504    
505                  plugins[create.num_plugins].func = xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
506                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
507                  create.num_plugins++;                  create.num_plugins++;
508                  break;                  break;
# Line 541  Line 531 
531    
532          /* lumimasking plugin */          /* lumimasking plugin */
533          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
534                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
535                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = NULL;
536                  create.num_plugins++;                  create.num_plugins++;
537          }          }
# Line 583  Line 573 
573    
574          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
575    
576          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
577          {          {
578          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
579                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 613  Line 603 
603    
604  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
605  {  {
606          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
607                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
608                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
609                          codec->ehandle = NULL;                          codec->ehandle = NULL;
610                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
611          }          }
612    
613          if (codec->config.display_status)          if (codec->config.display_status)
# Line 816  Line 804 
804          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
805          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
806    
807          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
808          switch (length)          switch (length)
809          {          {
810          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 959  Line 947 
947          xvid_dec_create_t create;          xvid_dec_create_t create;
948          HKEY hKey;          HKEY hKey;
949    
950          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
951    
952          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
953          init.version = XVID_VERSION;          init.version = XVID_VERSION;
954          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
955          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
956    
957          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
958          create.version = XVID_VERSION;          create.version = XVID_VERSION;
959          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
960          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
961    
962          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
963          {          {
964          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
965                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 993  Line 981 
981          REG_GET_N("Brightness", pp_brightness, 0);          REG_GET_N("Brightness", pp_brightness, 0);
982          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0)
983          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0)
984          REG_GET_N("Dering",  pp_dr, 0)          REG_GET_N("Dering_Y",  pp_dry, 0)
985            REG_GET_N("Dering_UV", pp_druv, 0)
986          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0)
987    
988          RegCloseKey(hKey);          RegCloseKey(hKey);
# Line 1004  Line 993 
993    
994  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
995  {  {
996          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
997                  if (codec->dhandle != NULL) {                  if (codec->dhandle != NULL) {
998                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
999                          codec->dhandle = NULL;                          codec->dhandle = NULL;
1000                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
1001          }          }
1002    
1003          return ICERR_OK;          return ICERR_OK;
# Line 1058  Line 1045 
1045                  convert.interlacing = 0;                  convert.interlacing = 0;
1046                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1047                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1048                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1049                  {                  {
1050                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1051                  }                  }
# Line 1090  Line 1077 
1077    
1078          if (pp_dy)frame.general |= XVID_DEBLOCKY;          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1079          if (pp_duv) frame.general |= XVID_DEBLOCKUV;          if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1080  /*      if (pp_dr) frame.general |= XVID_DERING; */          if (pp_dry) frame.general |= XVID_DERINGY;
1081            if (pp_druv) frame.general |= XVID_DERINGUV;
1082          if (pp_fe) frame.general |= XVID_FILMEFFECT;          if (pp_fe) frame.general |= XVID_FILMEFFECT;
1083    
1084          frame.brightness = pp_brightness;          frame.brightness = pp_brightness;
1085    
1086          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1087          {          {
1088          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1089                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1397  
changed lines
  Added in v.1437

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