[svn] / branches / dev-api-4 / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/vfw/src/codec.c

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

revision 1193, Tue Oct 28 23:42:09 2003 UTC revision 1323, Thu Jan 22 16:13:59 2004 UTC
# Line 49  Line 49 
49    
50  #include <windows.h>  #include <windows.h>
51  #include <vfw.h>  #include <vfw.h>
52    #include <stdio.h>
53  #include "vfwext.h"  #include "vfwext.h"
54    
55  #include <xvid.h>  #include <xvid.h>
# Line 267  Line 268 
268  int vfw_debug(void *handle,  int vfw_debug(void *handle,
269                           int opt,                           int opt,
270                           void *param1,                           void *param1,
271                           void *param2)                           void **param2)
272  {  {
273          switch (opt) {          switch (opt) {
         case XVID_PLG_INFO:  
274          case XVID_PLG_CREATE:          case XVID_PLG_CREATE:
275                    *param2 = NULL;
276            case XVID_PLG_INFO:
277          case XVID_PLG_DESTROY:          case XVID_PLG_DESTROY:
278          case XVID_PLG_BEFORE:          case XVID_PLG_BEFORE:
279                  return 0;                  return 0;
# Line 280  Line 282 
282                  {                  {
283                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
284    
285                          DPRINTF("[%5i]   type=%c   Q:%2i   length:%6i",                          /* We don't use DPRINTF here because it's active only for _DEBUG
286                             * builds and that activates lot of other debug printfs. We only
287                             * want these all the time */
288                            char buf[1024];
289                            sprintf(buf, "[%6i]   type=%c   Q:%2i   length:%6i",
290                                     data->frame_num,                                     data->frame_num,
291                     type2char(data->type),                     type2char(data->type),
292                     data->quant,                     data->quant,
293                     data->length);                     data->length);
294                            OutputDebugString(buf);
295    
296                          return 0;                          return 0;
297                  }                  }
298          }          }
# Line 292  Line 300 
300          return XVID_ERR_FAIL;          return XVID_ERR_FAIL;
301  }  }
302    
303    #define XVID_DLL_NAME "xvidcore.dll"
304    
305    static int init_dll()
306    {
307            if (m_hdll != NULL) return 0;
308    
309            DPRINTF("init_dll");
310            m_hdll = LoadLibrary(XVID_DLL_NAME);
311            if (m_hdll == NULL) {
312                    DPRINTF("dll load failed");
313                    MessageBox(0, XVID_DLL_NAME " not found","Error", 0);
314                    return XVID_ERR_FAIL;
315            }
316    
317            xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global");
318            if (xvid_global_func == NULL) {
319                    MessageBox(0, "xvid_global() not found", "Error", 0);
320                    return XVID_ERR_FAIL;
321            }
322    
323            xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_encore");
324            if (xvid_encore_func == NULL) {
325                    MessageBox(0, "xvid_encore() not found", "Error", 0);
326                    return XVID_ERR_FAIL;
327            }
328    
329            xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_decore");
330            if (xvid_decore_func == NULL) {
331                    MessageBox(0, "xvid_decore() not found", "Error", 0);
332                    return XVID_ERR_FAIL;
333            }
334    
335            xvid_plugin_single_func =
336                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_single"));
337            xvid_plugin_2pass1_func =
338                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass1"));
339            xvid_plugin_2pass2_func =
340                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass2"));
341            xvid_plugin_lumimasking_func =
342                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_lumimasking"));
343            xvid_plugin_psnr_func =
344                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_psnr"));
345    
346            return 0;
347    }
348    
349    
350  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
# Line 304  Line 357 
357          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
358      int i;      int i;
359    
360            if (init_dll() != 0) return ICERR_ERROR;
361      /* destroy previously created codec */      /* destroy previously created codec */
362          if(codec->ehandle) {          if(codec->ehandle) {
363                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
364                  codec->ehandle = NULL;                  codec->ehandle = NULL;
365          }          }
366    
# Line 314  Line 368 
368          init.version = XVID_VERSION;          init.version = XVID_VERSION;
369          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
370      init.debug = codec->config.debug;      init.debug = codec->config.debug;
371          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
372    
373          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
374          create.version = XVID_VERSION;          create.version = XVID_VERSION;
# Line 345  Line 399 
399          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
400                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
401                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
402          plugins[create.num_plugins].func = xvid_plugin_single;                  plugins[create.num_plugins].func = xvid_plugin_single_func;
403          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
404          create.num_plugins++;          create.num_plugins++;
405          break;          break;
# Line 355  Line 409 
409              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
410          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
411    
412          plugins[create.num_plugins].func = xvid_plugin_2pass1;                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
413          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
414          create.num_plugins++;          create.num_plugins++;
415                  break;                  break;
# Line 371  Line 425 
425                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
426    
427          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
         pass2.payback_method = codec->config.bitrate_payback_method;  
         pass2.bitrate_payback_delay = codec->config.bitrate_payback_delay;  
428          pass2.curve_compression_high = codec->config.curve_compression_high;          pass2.curve_compression_high = codec->config.curve_compression_high;
429          pass2.curve_compression_low = codec->config.curve_compression_low;          pass2.curve_compression_low = codec->config.curve_compression_low;
430                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
431          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
432          pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;          pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
         pass2.kftreshold = codec->config.kftreshold;  
433              pass2.kfreduction = codec->config.kfreduction;              pass2.kfreduction = codec->config.kfreduction;
434          pass2.min_key_interval = codec->config.min_key_interval;                  pass2.kfthreshold = codec->config.kfthreshold;
435          pass2.container_frame_overhead = 24;    /* AVI */          pass2.container_frame_overhead = 24;    /* AVI */
436    
437          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  plugins[create.num_plugins].func = xvid_plugin_2pass2_func;
438          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
439          create.num_plugins++;          create.num_plugins++;
440                  break;                  break;
# Line 395  Line 447 
447          }          }
448    
449          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
450          plugins[create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
451          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
452          create.num_plugins++;          create.num_plugins++;
453          }          }
# Line 437  Line 489 
489    
490      create.num_threads = codec->config.num_threads;      create.num_threads = codec->config.num_threads;
491    
492          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
493          {          {
494          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
495                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 467  Line 519 
519    
520  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
521  {  {
522            if (m_hdll != NULL) {
523      if (codec->ehandle != NULL) {      if (codec->ehandle != NULL) {
524                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
525                  codec->ehandle = NULL;                  codec->ehandle = NULL;
526          }          }
527                    FreeLibrary(m_hdll);
528                    m_hdll = NULL;
529            }
530    
531      if (codec->config.display_status)      if (codec->config.display_status)
532          status_destroy(&codec->status);          status_destroy(&codec->status);
# Line 484  Line 540 
540      int i;      int i;
541    
542      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
     i--;  
543    
544            if (--i < 0) return; /* there are no zones, or we're before the first zone */
545    
546            if (framenum == config->zones[i].frame)
547      frame->type = config->zones[i].type;      frame->type = config->zones[i].type;
548    
549      if (config->zones[i].greyscale) {      if (config->zones[i].greyscale) {
# Line 550  Line 608 
608          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
609                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
610    
611            if (codec->config.ar_mode == 0) { /* PAR */
612                    if (codec->config.display_aspect_ratio != 5) {
613                            frame.par = codec->config.display_aspect_ratio + 1;
614                    } else {
615                            frame.par = XVID_PAR_EXT;
616                            frame.par_width = codec->config.par_x;
617                            frame.par_height= codec->config.par_y;
618                    }
619            } else { /* AR */
620                    /* custom pixel aspect ratio -> calculated from DAR */
621                    frame.par = XVID_PAR_EXT;
622                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
623                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
624            }
625    
626      /* vop stuff */      /* vop stuff */
627    
628          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
# Line 570  Line 643 
643    
644          if (codec->config.cartoon_mode) {          if (codec->config.cartoon_mode) {
645                  frame.vop_flags |= XVID_VOP_CARTOON;                  frame.vop_flags |= XVID_VOP_CARTOON;
 #if 0 /* Seems to cause crashes with P4 cpus */  
646                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
 #endif  
647          }          }
648    
649            if (codec->config.turbo)
650                    frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
651                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
652                                                    XVID_ME_BFRAME_EARLYSTOP;
653    
654          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
655    
656          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
# Line 634  Line 710 
710    
711          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
712          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
713                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
         }  
         else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)  
         {  
                 DPRINTF("current frame forced to p-frame");  
                 frame.type = XVID_TYPE_PVOP;  
         }  
714    
715      /* frame-based stuff */      /* frame-based stuff */
716      apply_zone_modifiers(&frame, &codec->config, codec->framenum);      apply_zone_modifiers(&frame, &codec->config, codec->framenum);
# Line 651  Line 720 
720          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
721          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
722    
723      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
724          switch (length)          switch (length)
725          {          {
726          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 780  Line 849 
849          return ICERR_OK;          return ICERR_OK;
850  }  }
851    
852    #define REG_GET_N(X, Y, Z) { int size=sizeof(int);if(RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) {Y=Z;} }
853    
854  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
855  {  {
856          xvid_gbl_init_t init;          xvid_gbl_init_t init;
857          xvid_dec_create_t create;          xvid_dec_create_t create;
858            HKEY hKey;
859    
860            if (init_dll() != 0) return ICERR_ERROR;
861    
862          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
863          init.version = XVID_VERSION;          init.version = XVID_VERSION;
864          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
865          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
866    
867          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
868          create.version = XVID_VERSION;          create.version = XVID_VERSION;
869          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
870          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
871    
872          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
873          {          {
874          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
875                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 813  Line 886 
886    
887          codec->dhandle = create.handle;          codec->dhandle = create.handle;
888    
889            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
890    
891            REG_GET_N("Deblock_Y",  pp_dy, 0)
892            REG_GET_N("Deblock_UV", pp_duv, 0)
893            REG_GET_N("Dering",  pp_dr, 0)
894            REG_GET_N("FilmEffect", pp_fe, 0)
895    
896            RegCloseKey(hKey);
897    
898          return ICERR_OK;          return ICERR_OK;
899  }  }
900    
901    
902  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
903  {  {
904          if (codec->dhandle != NULL)          if (m_hdll != NULL) {
905          {                  if (codec->dhandle != NULL) {
906                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
907                  codec->dhandle = NULL;                  codec->dhandle = NULL;
908          }          }
909                    FreeLibrary(m_hdll);
910                    m_hdll = NULL;
911            }
912    
913          return ICERR_OK;          return ICERR_OK;
914  }  }
915    
# Line 869  Line 955 
955                  convert.interlacing = 0;                  convert.interlacing = 0;
956                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
957                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
958                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
959                  {                  {
960                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
961                  }                  }
# Line 899  Line 985 
985                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
986          }          }
987    
988          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
989            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
990    /*      if (pp_dr) frame.general |= XVID_DERING; */
991            if (pp_fe) frame.general |= XVID_FILMEFFECT;
992    
993            switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
994          {          {
995          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
996                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1193  
changed lines
  Added in v.1323

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