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

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

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

revision 1.1.2.32, Sat Jan 24 13:36:00 2004 UTC revision 1.26, Tue Nov 16 14:42:07 2010 UTC
# Line 58  Line 58 
58  #include "status.h"  #include "status.h"
59    
60    
61    
62  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
63          0, 0, 0, 0,          0, 0, 0, 0,
64          0 | XVID_ME_HALFPELREFINE16 | 0,          0 | XVID_ME_HALFPELREFINE16 | 0,
# Line 72  Line 73 
73          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
74  */  */
75    
76  int get_colorspace(BITMAPINFOHEADER * hdr)  static int get_colorspace(BITMAPINFOHEADER * hdr)
77  {  {
78          /* rgb only: negative height specifies top down image */          /* rgb only: negative height specifies top down image */
79          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);
# Line 254  Line 255 
255  }  }
256    
257    
258  const char type2char(int type)  static char type2char(int type)
259  {  {
260          if (type==XVID_TYPE_IVOP)          if (type==XVID_TYPE_IVOP)
261                  return 'I';                  return 'I';
# Line 265  Line 266 
266          return 'S';          return 'S';
267  }  }
268    
269  int vfw_debug(void *handle,  static int vfw_debug(void *handle,
270                           int opt,                           int opt,
271                           void *param1,                           void *param1,
272                           void *param2)                           void *param2)
# Line 302  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  }  }
350    
351  void  /* constant-quant zones for fixed quant encoding */
 sort_zones(zone_t * zones, int zone_num, int * sel);  
   
352  static void  static void
353  prepare_cquant_zones(CONFIG * config) {  prepare_cquant_zones(CONFIG * config) {
354    
# Line 380  Line 380 
380                  }                  }
381  }  }
382    
383    /* full first pass zones */
384    static void
385    prepare_full1pass_zones(CONFIG * config) {
386    
387            int i = 0;
388            if (config->num_zones == 0 || config->zones[0].frame != 0) {
389                    /* first zone does not start at frame 0 or doesn't exist */
390    
391                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
392    
393                    config->zones[config->num_zones].frame = 0;
394                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
395                    config->zones[config->num_zones].weight = 100;
396                    config->zones[config->num_zones].quant = 200;
397                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
398                    config->zones[config->num_zones].greyscale = 0;
399                    config->zones[config->num_zones].chroma_opt = 0;
400                    config->zones[config->num_zones].bvop_threshold = 0;
401                    config->num_zones++;
402    
403                    sort_zones(config->zones, config->num_zones, &i);
404            }
405    
406            /* step 2: let's change all weight zones into quant zones */
407    
408            for(i = 0; i < config->num_zones; i++)
409                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
410                            config->zones[i].mode = RC_ZONE_QUANT;
411                            config->zones[i].quant = 200;
412                    }
413    }
414    
415    
416  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
417  {  {
# Line 389  Line 421 
421          xvid_plugin_single_t single;          xvid_plugin_single_t single;
422          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
423          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
424            xvid_plugin_lumimasking_t masking;
425        xvid_gbl_info_t info;
426          int i;          int i;
427          HANDLE hFile;          HANDLE hFile;
428      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
429        &codec->config.quality_user : &quality_table[codec->config.quality];
430    
431          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 */
432          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
433    
434          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
435          /* destroy previously created codec */          /* destroy previously created codec */
436          if(codec->ehandle) {          if(codec->ehandle) {
437                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
438                  codec->ehandle = NULL;                  codec->ehandle = NULL;
439          }          }
440    
# Line 406  Line 442 
442          init.version = XVID_VERSION;          init.version = XVID_VERSION;
443          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
444          init.debug = codec->config.debug;          init.debug = codec->config.debug;
445          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
446    
447            memset(&info, 0, sizeof(info));
448            info.version = XVID_VERSION;
449            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
450    
451          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
452          create.version = XVID_VERSION;          create.version = XVID_VERSION;
# Line 422  Line 462 
462                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
463                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
464                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
465                  plugins[create.num_plugins].func = xvid_plugin_single_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
466                  plugins[create.num_plugins].param = &single;                  plugins[create.num_plugins].param = &single;
467                  create.num_plugins++;                  create.num_plugins++;
468                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
# Line 433  Line 473 
473                  memset(&pass1, 0, sizeof(pass1));                  memset(&pass1, 0, sizeof(pass1));
474                  pass1.version = XVID_VERSION;                  pass1.version = XVID_VERSION;
475                  pass1.filename = codec->config.stats;                  pass1.filename = codec->config.stats;
476                    if (codec->config.full1pass)
477                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;                          prepare_full1pass_zones(&tmpCfg);
478                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
479                  plugins[create.num_plugins].param = &pass1;                  plugins[create.num_plugins].param = &pass1;
480                  create.num_plugins++;                  create.num_plugins++;
481                  break;                  break;
# Line 469  Line 510 
510                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
511                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
512    
513                  plugins[create.num_plugins].func = xvid_plugin_2pass2_func;                  /* VBV */
514                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
515                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
516                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
517                    pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate;
518    
519                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
520                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
521                  create.num_plugins++;                  create.num_plugins++;
522                  break;                  break;
# Line 497  Line 544 
544          }          }
545    
546          /* lumimasking plugin */          /* lumimasking plugin */
547          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && (codec->config.lum_masking>0)) {
548                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;                  memset(&masking, 0, sizeof(masking));
549                  plugins[create.num_plugins].param = NULL;                  masking.method = (codec->config.lum_masking==2);
550                    plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
551                    plugins[create.num_plugins].param = &masking;
552                  create.num_plugins++;                  create.num_plugins++;
553          }          }
554    
# Line 514  Line 563 
563          create.fincr = codec->fincr;          create.fincr = codec->fincr;
564          create.fbase = codec->fbase;          create.fbase = codec->fbase;
565    
566          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
567    
568          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
569          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
570          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
571          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
572          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
573          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
574    
575          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
576    
577        /* dxn: prevent bframes usage if interlacing is selected */
578        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
579                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
580                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
581                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 531  Line 583 
583                  if (codec->config.packed)                  if (codec->config.packed)
584                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
585    
                 if (codec->config.closed_gov)  
586                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
587    
588          }        /* restrict max bframes */
589          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
590            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
591    
592          create.frame_drop_ratio = codec->config.frame_drop_ratio;        /* DXN: enable packed bframes */
593          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
594            create.global |= XVID_GLOBAL_PACKED;
595          }
596        }
597            }
598    
599        /* dxn: always write divx5 userdata */
600        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
601          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
602    
603            create.frame_drop_ratio = quality_preset->frame_drop_ratio;
604    
605        /* Encoder threads */
606        if (codec->config.num_threads == 0)
607            create.num_threads = info.num_threads; /* Autodetect */
608        else if (codec->config.num_threads == 1)
609            create.num_threads = -1; /* Single-threaded, disable SMP */
610        else
611          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
612    
613          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))  
614            switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
615          {          {
616          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
617                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 555  Line 626 
626                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
627          }          }
628    
629            free(create.zones);
630          codec->ehandle = create.handle;          codec->ehandle = create.handle;
631          codec->framenum = 0;          codec->framenum = 0;
632          codec->keyspacing = 0;          codec->keyspacing = 0;
# Line 570  Line 642 
642    
643  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
644  {  {
645          if (m_hdll != NULL) {    if (codec==NULL)
646        return ICERR_OK;
647    
648            if (codec->m_hdll != NULL) {
649                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
650                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
651                          codec->ehandle = NULL;                          codec->ehandle = NULL;
652                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
653          }          }
654    
655          if (codec->config.display_status)          if (codec->config.display_status)
# Line 605  Line 678 
678                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
679          }          }
680    
681            if (config->zones[i].cartoon_mode) {
682                    frame->vop_flags |= XVID_VOP_CARTOON;
683                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
684            }
685    
686          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
687                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
688          }          }
689  }  }
690    
691    
692    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
693    
694  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
695  {  {
696          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 618  Line 698 
698          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
699          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
700          int length;          int length;
701      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
702        &codec->config.quality_user : &quality_table[codec->config.quality];
703    
704          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
705          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 640  Line 722 
722                  }                  }
723          }          }
724    
         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 */  
         }  
   
725          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
726                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
727                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 659  Line 735 
735          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
736                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
737    
738          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
739      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
740        frame.par = XVID_PAR_11_VGA;
741      } else if (codec->config.ar_mode == 0) { /* PAR */
742                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
743                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
744                  } else {                  } else {
# Line 679  Line 758 
758          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
759          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
760    
761            if (codec->config.interlacing && codec->config.tff)
762                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
763    
764    
765          if (codec->config.vop_debug)          if (codec->config.vop_debug)
766                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
767    
768          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
769                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
770          }          }
771    
772          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
773              if (quality_preset->motion_search > 4)
774                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
775      }
776    
777          if (codec->config.chromame)          if (quality_preset->chromame)
778                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
779    
780          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)  
781                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
782                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
783                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
784    
785          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
786    
787          switch (codec->config.vhq_mode)          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
788    
789    
790            switch (quality_preset->vhq_mode)
791          {          {
792          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
793                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 740  Line 823 
823          }          }
824    
825          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
826          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);
827    
828          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
829                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
830    
831          if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12)          if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12) {
832                  frame.input.stride[0] = (frame.input.stride[0]*2)/3;                  frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
833                    frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
834            }
835    
836          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
837          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
# Line 760  Line 845 
845          }          }
846    
847          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
848          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
849                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
850    
851          /* frame-based stuff */          /* frame-based stuff */
# Line 771  Line 856 
856          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
857          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
858    
859          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
860          switch (length)          switch (length)
861          {          {
862          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 891  Line 976 
976          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
977          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
978          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 */
979          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
980    
981          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
982          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
983          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 910  Line 996 
996    
997  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
998  {  {
999            BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
1000          xvid_gbl_init_t init;          xvid_gbl_init_t init;
1001          xvid_dec_create_t create;          xvid_dec_create_t create;
1002          HKEY hKey;          HKEY hKey;
1003    
1004          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
1005    
1006          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
1007          init.version = XVID_VERSION;          init.version = XVID_VERSION;
1008          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
1009          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          init.debug = codec->config.debug;
1010            codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
1011    
1012          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
1013          create.version = XVID_VERSION;          create.version = XVID_VERSION;
1014          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
1015          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
1016            create.fourcc = inhdr->biCompression;
1017    
1018          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
1019          {          {
1020          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1021                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 945  Line 1034 
1034    
1035          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);
1036    
1037          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Brightness", pp_brightness, 0);
1038          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0);
1039          REG_GET_N("Dering",  pp_dr, 0)          REG_GET_N("Deblock_UV", pp_duv, 0);
1040          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("Dering_Y",  pp_dry, 0);
1041            REG_GET_N("Dering_UV", pp_druv, 0);
1042            REG_GET_N("FilmEffect", pp_fe, 0);
1043    
1044          RegCloseKey(hKey);          RegCloseKey(hKey);
1045    
# Line 958  Line 1049 
1049    
1050  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1051  {  {
1052          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
1053                  if (codec->dhandle != NULL) {                  if (codec->dhandle != NULL) {
1054                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1055                          codec->dhandle = NULL;                          codec->dhandle = NULL;
1056                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
1057          }          }
1058    
1059          return ICERR_OK;          return ICERR_OK;
# Line 997  Line 1086 
1086    
1087                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1088                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1089                  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);
1090                  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)
1091                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1092    
1093                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1094                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1095                  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);
1096                  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)
1097                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1098    
# Line 1012  Line 1101 
1101                  convert.interlacing = 0;                  convert.interlacing = 0;
1102                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1103                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1104                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1105                  {                  {
1106                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1107                  }                  }
# Line 1033  Line 1122 
1122                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1123                  }                  }
1124                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1125                  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);
1126                  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)
1127                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1128          }          }
1129          else          else
1130          {          {
# Line 1044  Line 1133 
1133    
1134          if (pp_dy)frame.general |= XVID_DEBLOCKY;          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1135          if (pp_duv) frame.general |= XVID_DEBLOCKUV;          if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1136  /*      if (pp_dr) frame.general |= XVID_DERING; */          if (pp_dry) frame.general |= XVID_DERINGY;
1137            if (pp_druv) frame.general |= XVID_DERINGUV;
1138          if (pp_fe) frame.general |= XVID_FILMEFFECT;          if (pp_fe) frame.general |= XVID_FILMEFFECT;
1139    
1140          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          frame.brightness = pp_brightness;
1141    
1142            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1143          {          {
1144          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1145                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1.1.2.32  
changed lines
  Added in v.1.26

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