[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 1041, Thu May 22 22:57:54 2003 UTC revision 1346, Sat Jan 31 14:03:26 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>
56  #include "debug.h"  #include "debug.h"
57  #include "codec.h"  #include "codec.h"
58    #include "status.h"
59    
60    
61  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
# Line 70  Line 72 
72          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
73  */  */
74    
75  int get_colorspace(BITMAPINFOHEADER * hdr)  static int get_colorspace(BITMAPINFOHEADER * hdr)
76  {  {
77          /* rgb only: negative height specifies top down image */          /* rgb only: negative height specifies top down image */
78          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);
# Line 207  Line 209 
209    
210          if (lpbiOutput == NULL)          if (lpbiOutput == NULL)
211          {          {
212                  return sizeof(BITMAPV4HEADER);                  return sizeof(BITMAPINFOHEADER);
213          }          }
214    
215          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
# Line 243  Line 245 
245    
246  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)
247  {  {
248      //DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);  #if 0
249            DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);
250    #endif
251          codec->fincr = icf->dwScale;          codec->fincr = icf->dwScale;
252          codec->fbase = icf->dwRate;          codec->fbase = icf->dwRate;
253          return ICERR_OK;          return ICERR_OK;
254  }  }
255    
256    
257  const char type2char(int type)  static char type2char(int type)
258  {  {
259      if (type==XVID_TYPE_IVOP)      if (type==XVID_TYPE_IVOP)
260          return 'I';          return 'I';
# Line 261  Line 265 
265      return 'S';      return 'S';
266  }  }
267    
268  int vfw_debug(void *handle,  static 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                    *((void**)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 277  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 289  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!", MB_ICONEXCLAMATION|MB_OK);
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    /* constant-quant zones for fixed quant encoding */
350    static void
351    prepare_cquant_zones(CONFIG * config) {
352    
353            int i = 0;
354            if (config->num_zones == 0 || config->zones[0].frame != 0) {
355                    /* first zone does not start at frame 0 or doesn't exist */
356    
357                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
358    
359                    config->zones[config->num_zones].frame = 0;
360                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
361                    config->zones[config->num_zones].weight = 100;
362                    config->zones[config->num_zones].quant = config->desired_quant;
363                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
364                    config->zones[config->num_zones].greyscale = 0;
365                    config->zones[config->num_zones].chroma_opt = 0;
366                    config->zones[config->num_zones].bvop_threshold = 0;
367                    config->num_zones++;
368    
369                    sort_zones(config->zones, config->num_zones, &i);
370            }
371    
372            /* step 2: let's change all weight zones into quant zones */
373    
374            for(i = 0; i < config->num_zones; i++)
375                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
376                            config->zones[i].mode = RC_ZONE_QUANT;
377                            config->zones[i].quant = (100*config->desired_quant) / config->zones[i].weight;
378                    }
379    }
380    
381    /* full first pass zones */
382    static void
383    prepare_full1pass_zones(CONFIG * config) {
384    
385            int i = 0;
386            if (config->num_zones == 0 || config->zones[0].frame != 0) {
387                    /* first zone does not start at frame 0 or doesn't exist */
388    
389                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
390    
391                    config->zones[config->num_zones].frame = 0;
392                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
393                    config->zones[config->num_zones].weight = 100;
394                    config->zones[config->num_zones].quant = 200;
395                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
396                    config->zones[config->num_zones].greyscale = 0;
397                    config->zones[config->num_zones].chroma_opt = 0;
398                    config->zones[config->num_zones].bvop_threshold = 0;
399                    config->num_zones++;
400    
401                    sort_zones(config->zones, config->num_zones, &i);
402            }
403    
404            /* step 2: let's change all weight zones into quant zones */
405    
406            for(i = 0; i < config->num_zones; i++)
407                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
408                            config->zones[i].mode = RC_ZONE_QUANT;
409                            config->zones[i].quant = 200;
410                    }
411    }
412    
413    
414  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
# Line 300  Line 420 
420          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
421          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
422      int i;      int i;
423            HANDLE hFile;
424    
425            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
426            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
427    
428            if (init_dll() != 0) return ICERR_ERROR;
429      /* destroy previously created codec */      /* destroy previously created codec */
430          if(codec->ehandle) {          if(codec->ehandle) {
431                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
432                  codec->ehandle = NULL;                  codec->ehandle = NULL;
433          }          }
434    
# Line 311  Line 436 
436          init.version = XVID_VERSION;          init.version = XVID_VERSION;
437          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
438      init.debug = codec->config.debug;      init.debug = codec->config.debug;
439          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
440    
441          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
442          create.version = XVID_VERSION;          create.version = XVID_VERSION;
443    
444      // zones          /* plugins */
     create.zones = malloc(sizeof(xvid_enc_zone_t) * codec->config.num_zones);  
     create.num_zones = codec->config.num_zones;  
     for (i=0; i < create.num_zones; i++) {  
         create.zones[i].frame = codec->config.zones[i].frame;  
         if (codec->config.zones[i].mode == RC_ZONE_QUANT) {  
             create.zones[i].mode = XVID_ZONE_QUANT;  
             create.zones[i].increment = codec->config.zones[i].quant;  
         }else{  
             create.zones[i].mode = XVID_ZONE_WEIGHT;  
             create.zones[i].increment = codec->config.zones[i].weight;  
         }  
         create.zones[i].base = 100;  
     }  
   
     // plugins  
445          create.plugins = plugins;          create.plugins = plugins;
446          switch (codec->config.mode)          switch (codec->config.mode)
447          {          {
# Line 342  Line 452 
452          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
453                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
454                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
455          plugins[create.num_plugins].func = xvid_plugin_single;                  plugins[create.num_plugins].func = xvid_plugin_single_func;
456          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
457          create.num_plugins++;          create.num_plugins++;
458                    if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
459                            prepare_cquant_zones(&tmpCfg);
460          break;          break;
461    
462          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
463          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
464              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
465          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
466                    if (codec->config.full1pass)
467          plugins[create.num_plugins].func = xvid_plugin_2pass1;                          prepare_full1pass_zones(&tmpCfg);
468                    plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
469          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
470          create.num_plugins++;          create.num_plugins++;
471                  break;                  break;
# Line 360  Line 473 
473          case RC_MODE_2PASS2 :          case RC_MODE_2PASS2 :
474          memset(&pass2, 0, sizeof(pass2));          memset(&pass2, 0, sizeof(pass2));
475              pass2.version = XVID_VERSION;              pass2.version = XVID_VERSION;
476                    if (codec->config.use_2pass_bitrate) {
477          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
478                    } else {
479                            pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
480                    }
481                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
                 pass2.container_frame_overhead = 24;  
482    
483          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
484                    if (hFile == INVALID_HANDLE_VALUE)
485                    {
486                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
487                            return XVID_ERR_FAIL;
488                    } else
489                    {
490                            CloseHandle(hFile);
491                    }
492    
493                    pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
494                    pass2.curve_compression_high = codec->config.curve_compression_high;
495                    pass2.curve_compression_low = codec->config.curve_compression_low;
496                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
497                    pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
498                    pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
499                    pass2.kfreduction = codec->config.kfreduction;
500                    pass2.kfthreshold = codec->config.kfthreshold;
501                    pass2.container_frame_overhead = 24;    /* AVI */
502    
503                    plugins[create.num_plugins].func = xvid_plugin_2pass2_func;
504          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
505          create.num_plugins++;          create.num_plugins++;
506                  break;                  break;
# Line 376  Line 512 
512                  break;                  break;
513          }          }
514    
515            /* zones  - copy from tmpCfg in case we automatically altered them above */
516            create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
517            create.num_zones = tmpCfg.num_zones;
518            for (i=0; i < create.num_zones; i++) {
519                    create.zones[i].frame = tmpCfg.zones[i].frame;
520                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
521                            create.zones[i].mode = XVID_ZONE_QUANT;
522                            create.zones[i].increment = tmpCfg.zones[i].quant;
523                    }else{
524                            create.zones[i].mode = XVID_ZONE_WEIGHT;
525                            create.zones[i].increment = tmpCfg.zones[i].weight;
526                    }
527                    create.zones[i].base = 100;
528            }
529    
530            /* lumimasking plugin */
531          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
532          plugins[create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
533          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
534          create.num_plugins++;          create.num_plugins++;
535          }          }
# Line 419  Line 571 
571    
572      create.num_threads = codec->config.num_threads;      create.num_threads = codec->config.num_threads;
573    
574          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
575          {          {
576          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
577                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 438  Line 590 
590          codec->framenum = 0;          codec->framenum = 0;
591          codec->keyspacing = 0;          codec->keyspacing = 0;
592    
593            if (codec->config.display_status) {
594                    status_destroy_always(&codec->status);
595                    status_create(&codec->status, codec->fincr, codec->fbase);
596            }
597    
598          return ICERR_OK;          return ICERR_OK;
599  }  }
600    
601    
602  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
603  {  {
604          if (codec->ehandle != NULL)          if (m_hdll != NULL) {
605          {                  if (codec->ehandle != NULL) {
606                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
607                  codec->ehandle = NULL;                  codec->ehandle = NULL;
608          }          }
609                    FreeLibrary(m_hdll);
610                    m_hdll = NULL;
611            }
612    
613            if (codec->config.display_status)
614                    status_destroy(&codec->status);
615    
616          return ICERR_OK;          return ICERR_OK;
617  }  }
# Line 459  Line 622 
622      int i;      int i;
623    
624      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++) ;
625      i--;  
626            if (--i < 0) return; /* there are no zones, or we're before the first zone */
627    
628            if (framenum == config->zones[i].frame)
629                    frame->type = config->zones[i].type;
630    
631      if (config->zones[i].greyscale) {      if (config->zones[i].greyscale) {
632          frame->vop_flags |= XVID_VOP_GREYSCALE;          frame->vop_flags |= XVID_VOP_GREYSCALE;
# Line 515  Line 682 
682                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
683          }          }
684    
685          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
686                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
687                    frame.motion |= XVID_ME_GME_REFINE;
688            }
689    
690          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
691                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
692    
693            if (codec->config.ar_mode == 0) { /* PAR */
694                    if (codec->config.display_aspect_ratio != 5) {
695                            frame.par = codec->config.display_aspect_ratio + 1;
696                    } else {
697                            frame.par = XVID_PAR_EXT;
698                            frame.par_width = codec->config.par_x;
699                            frame.par_height= codec->config.par_y;
700                    }
701            } else { /* AR */
702                    /* custom pixel aspect ratio -> calculated from DAR */
703                    frame.par = XVID_PAR_EXT;
704                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
705                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
706            }
707    
708      /* vop stuff */      /* vop stuff */
709    
710          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
# Line 537  Line 721 
721                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
722    
723          if (codec->config.chromame)          if (codec->config.chromame)
724                  frame.vop_flags |= XVID_ME_CHROMA16 + XVID_ME_CHROMA8;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
725    
726            if (codec->config.cartoon_mode) {
727                    frame.vop_flags |= XVID_VOP_CARTOON;
728                    frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
729            }
730    
731            if (codec->config.turbo)
732                    frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
733                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
734                                                    XVID_ME_BFRAME_EARLYSTOP;
735    
736          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
737    
738          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
739          {          {
740          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
741                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
742                  break;                  break;
743    
744          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
745                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
746                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
747                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
748                  break;                  break;
749    
750          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
751                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
752                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
753                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
754                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
755                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
756                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
757                  break;                  break;
758    
759          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
760                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
761                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
762                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
763                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
764                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
765                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
766                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
767                  break;                  break;
768    
769          default :          default :
# Line 598  Line 792 
792    
793          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
794          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
795                  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;  
         }  
796    
797      /* frame-based stuff */      /* frame-based stuff */
798      apply_zone_modifiers(&frame, &codec->config, codec->framenum);      apply_zone_modifiers(&frame, &codec->config, codec->framenum);
# Line 615  Line 802 
802          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
803          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
804    
805      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
806          switch (length)          switch (length)
807          {          {
808          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 631  Line 818 
818                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
819          }          }
820    
821            if (codec->config.display_status && stats.type>0) {
822                    status_update(&codec->status, stats.type, stats.length, stats.quant);
823            }
824    
825          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
826    
827      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
# Line 714  Line 905 
905    
906          if (get_colorspace(inhdr) != XVID_CSP_NULL) {          if (get_colorspace(inhdr) != XVID_CSP_NULL) {
907                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
908                  // XXX: should we set outhdr->biSize ??                  /* XXX: should we set outhdr->biSize ?? */
909                  return ICERR_OK;                  return ICERR_OK;
910          }          }
911          /* --- yv12 --- */          /* --- yv12 --- */
# Line 740  Line 931 
931          return ICERR_OK;          return ICERR_OK;
932  }  }
933    
934    #define REG_GET_N(X, Y, Z) \
935    { \
936            DWORD size = sizeof(int); \
937            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
938                    Y=Z; \
939            } \
940    }while(0)
941    
942  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
943  {  {
944          xvid_gbl_init_t init;          xvid_gbl_init_t init;
945          xvid_dec_create_t create;          xvid_dec_create_t create;
946            HKEY hKey;
947    
948            if (init_dll() != 0) return ICERR_ERROR;
949    
950          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
951          init.version = XVID_VERSION;          init.version = XVID_VERSION;
952          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
953          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
954    
955          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
956          create.version = XVID_VERSION;          create.version = XVID_VERSION;
957          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
958          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
959    
960          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
961          {          {
962          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
963                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 773  Line 974 
974    
975          codec->dhandle = create.handle;          codec->dhandle = create.handle;
976    
977            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
978    
979            REG_GET_N("Deblock_Y",  pp_dy, 0)
980            REG_GET_N("Deblock_UV", pp_duv, 0)
981            REG_GET_N("Dering",  pp_dr, 0)
982            REG_GET_N("FilmEffect", pp_fe, 0)
983    
984            RegCloseKey(hKey);
985    
986          return ICERR_OK;          return ICERR_OK;
987  }  }
988    
989    
990  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
991  {  {
992          if (codec->dhandle != NULL)          if (m_hdll != NULL) {
993          {                  if (codec->dhandle != NULL) {
994                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
995                  codec->dhandle = NULL;                  codec->dhandle = NULL;
996          }          }
997                    FreeLibrary(m_hdll);
998                    m_hdll = NULL;
999            }
1000    
1001          return ICERR_OK;          return ICERR_OK;
1002  }  }
1003    
# Line 829  Line 1043 
1043                  convert.interlacing = 0;                  convert.interlacing = 0;
1044                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1045                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1046                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1047                  {                  {
1048                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1049                  }                  }
# Line 859  Line 1073 
1073                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1074          }          }
1075    
1076          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1077            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1078    /*      if (pp_dr) frame.general |= XVID_DERING; */
1079            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1080    
1081            switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1082          {          {
1083          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1084                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1041  
changed lines
  Added in v.1346

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