[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 1398, Fri Apr 2 21:29:21 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;
349    }
350    
351    static int exit_dll(CODEC* codec)
352    {
353            if(codec->m_hdll)
354            {
355                    FreeLibrary(codec->m_hdll);
356                    codec->m_hdll = NULL;
357                    codec->xvid_global_func = NULL;
358                    codec->xvid_encore_func = NULL;
359                    codec->xvid_decore_func = NULL;
360                    codec->xvid_plugin_single_func = NULL;
361                    codec->xvid_plugin_2pass1_func = NULL;
362                    codec->xvid_plugin_2pass2_func = NULL;
363                    codec->xvid_plugin_lumimasking_func = NULL;
364                    codec->xvid_plugin_psnr_func = NULL;
365            }
366          return 0;          return 0;
367  }  }
368    
# Line 437  Line 445 
445          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 */
446          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
447    
448          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
449          /* destroy previously created codec */          /* destroy previously created codec */
450          if(codec->ehandle) {          if(codec->ehandle) {
451                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
452                  codec->ehandle = NULL;                  codec->ehandle = NULL;
453          }          }
454    
# Line 448  Line 456 
456          init.version = XVID_VERSION;          init.version = XVID_VERSION;
457          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
458          init.debug = codec->config.debug;          init.debug = codec->config.debug;
459          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
460    
461          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
462          create.version = XVID_VERSION;          create.version = XVID_VERSION;
# Line 464  Line 472 
472                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
473                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
474                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
475                  plugins[create.num_plugins].func = xvid_plugin_single_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
476                  plugins[create.num_plugins].param = &single;                  plugins[create.num_plugins].param = &single;
477                  create.num_plugins++;                  create.num_plugins++;
478                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
# Line 477  Line 485 
485                  pass1.filename = codec->config.stats;                  pass1.filename = codec->config.stats;
486                  if (codec->config.full1pass)                  if (codec->config.full1pass)
487                          prepare_full1pass_zones(&tmpCfg);                          prepare_full1pass_zones(&tmpCfg);
488                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
489                  plugins[create.num_plugins].param = &pass1;                  plugins[create.num_plugins].param = &pass1;
490                  create.num_plugins++;                  create.num_plugins++;
491                  break;                  break;
# Line 512  Line 520 
520                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
521                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
522    
523                  plugins[create.num_plugins].func = xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
524                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
525                  create.num_plugins++;                  create.num_plugins++;
526                  break;                  break;
# Line 541  Line 549 
549    
550          /* lumimasking plugin */          /* lumimasking plugin */
551          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
552                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
553                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = NULL;
554                  create.num_plugins++;                  create.num_plugins++;
555          }          }
# Line 583  Line 591 
591    
592          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
593    
594          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
595          {          {
596          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
597                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 613  Line 621 
621    
622  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
623  {  {
624          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
625                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
626                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
627                          codec->ehandle = NULL;                          codec->ehandle = NULL;
628                  }                  }
629                  FreeLibrary(m_hdll);                  exit_dll(codec);
                 m_hdll = NULL;  
630          }          }
631    
632          if (codec->config.display_status)          if (codec->config.display_status)
# Line 816  Line 823 
823          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
824          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
825    
826          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
827          switch (length)          switch (length)
828          {          {
829          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 959  Line 966 
966          xvid_dec_create_t create;          xvid_dec_create_t create;
967          HKEY hKey;          HKEY hKey;
968    
969          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
970    
971          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
972          init.version = XVID_VERSION;          init.version = XVID_VERSION;
973          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
974          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
975    
976          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
977          create.version = XVID_VERSION;          create.version = XVID_VERSION;
978          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
979          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
980    
981          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
982          {          {
983          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
984                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 1004  Line 1011 
1011    
1012  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1013  {  {
1014          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
1015                  if (codec->dhandle != NULL) {                  if (codec->dhandle != NULL) {
1016                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1017                          codec->dhandle = NULL;                          codec->dhandle = NULL;
1018                  }                  }
1019                  FreeLibrary(m_hdll);                  exit_dll(codec);
                 m_hdll = NULL;  
1020          }          }
1021    
1022          return ICERR_OK;          return ICERR_OK;
# Line 1058  Line 1064 
1064                  convert.interlacing = 0;                  convert.interlacing = 0;
1065                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1066                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1067                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1068                  {                  {
1069                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1070                  }                  }
# Line 1095  Line 1101 
1101    
1102          frame.brightness = pp_brightness;          frame.brightness = pp_brightness;
1103    
1104          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1105          {          {
1106          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1107                  return ICERR_ERROR;                  return ICERR_ERROR;

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

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