[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.10, Mon Jun 9 01:25:18 2003 UTC revision 1.19.2.2, Mon Jul 10 17:26:13 2006 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    
62  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
# Line 70  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 207  Line 210 
210    
211          if (lpbiOutput == NULL)          if (lpbiOutput == NULL)
212          {          {
213                  return sizeof(BITMAPV4HEADER);                  return sizeof(BITMAPINFOHEADER);
214          }          }
215    
216          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
# Line 252  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 263  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)
273  {  {
274          switch (opt) {          switch (opt) {
         case XVID_PLG_INFO:  
275          case XVID_PLG_CREATE:          case XVID_PLG_CREATE:
276                    *((void**)param2) = NULL;
277            case XVID_PLG_INFO:
278          case XVID_PLG_DESTROY:          case XVID_PLG_DESTROY:
279          case XVID_PLG_BEFORE:          case XVID_PLG_BEFORE:
280                  return 0;                  return 0;
# Line 279  Line 283 
283                  {                  {
284                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
285    
286                          DPRINTF("[%5i]   type=%c   Q:%2i   length:%6i",                          /* We don't use DPRINTF here because it's active only for _DEBUG
287                             * builds and that activates lot of other debug printfs. We only
288                             * want these all the time */
289                            char buf[1024];
290                            sprintf(buf, "[%6i]   type=%c   Q:%2i   length:%6i",
291                                     data->frame_num,                                     data->frame_num,
292                     type2char(data->type),                     type2char(data->type),
293                     data->quant,                     data->quant,
294                     data->length);                     data->length);
295                            OutputDebugString(buf);
296    
297                          return 0;                          return 0;
298                  }                  }
299          }          }
# Line 291  Line 301 
301          return XVID_ERR_FAIL;          return XVID_ERR_FAIL;
302  }  }
303    
304    #define XVID_DLL_NAME "xvidcore.dll"
305    
306    static int init_dll(CODEC* codec)
307    {
308            if (codec->m_hdll != NULL)
309                    return 0;
310    
311            DPRINTF("init_dll");
312            codec->m_hdll = LoadLibrary(XVID_DLL_NAME);
313            if (codec->m_hdll == NULL) {
314                    DPRINTF("dll load failed");
315                    MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
316                    return XVID_ERR_FAIL;
317            }
318    
319            codec->xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_global");
320            if (codec->xvid_global_func == NULL) {
321                    MessageBox(0, "xvid_global() not found", "Error", 0);
322                    return XVID_ERR_FAIL;
323            }
324    
325            codec->xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_encore");
326            if (codec->xvid_encore_func == NULL) {
327                    MessageBox(0, "xvid_encore() not found", "Error", 0);
328                    return XVID_ERR_FAIL;
329            }
330    
331            codec->xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_decore");
332            if (codec->xvid_decore_func == NULL) {
333                    MessageBox(0, "xvid_decore() not found", "Error", 0);
334                    return XVID_ERR_FAIL;
335            }
336    
337            codec->xvid_plugin_single_func =
338                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_single"));
339            codec->xvid_plugin_2pass1_func =
340                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass1"));
341            codec->xvid_plugin_2pass2_func =
342                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass2"));
343            codec->xvid_plugin_lumimasking_func =
344                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_lumimasking"));
345            codec->xvid_plugin_psnr_func =
346                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_psnr"));
347    
348            return 0;
349    }
350    
351    /* constant-quant zones for fixed quant encoding */
352    static void
353    prepare_cquant_zones(CONFIG * config) {
354    
355            int i = 0;
356            if (config->num_zones == 0 || config->zones[0].frame != 0) {
357                    /* first zone does not start at frame 0 or doesn't exist */
358    
359                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
360    
361                    config->zones[config->num_zones].frame = 0;
362                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
363                    config->zones[config->num_zones].weight = 100;
364                    config->zones[config->num_zones].quant = config->desired_quant;
365                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
366                    config->zones[config->num_zones].greyscale = 0;
367                    config->zones[config->num_zones].chroma_opt = 0;
368                    config->zones[config->num_zones].bvop_threshold = 0;
369                    config->num_zones++;
370    
371                    sort_zones(config->zones, config->num_zones, &i);
372            }
373    
374            /* step 2: let's change all weight zones into quant zones */
375    
376            for(i = 0; i < config->num_zones; i++)
377                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
378                            config->zones[i].mode = RC_ZONE_QUANT;
379                            config->zones[i].quant = (100*config->desired_quant) / config->zones[i].weight;
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)
# Line 302  Line 422 
422          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
423          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
424      int i;      int i;
425            HANDLE hFile;
426      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
427        &codec->config.quality_user : &quality_table[codec->config.quality];
428    
429            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
430            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
431    
432            if (init_dll(codec) != 0) return ICERR_ERROR;
433      /* destroy previously created codec */      /* destroy previously created codec */
434          if(codec->ehandle) {          if(codec->ehandle) {
435                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
436                  codec->ehandle = NULL;                  codec->ehandle = NULL;
437          }          }
438    
# Line 313  Line 440 
440          init.version = XVID_VERSION;          init.version = XVID_VERSION;
441          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
442      init.debug = codec->config.debug;      init.debug = codec->config.debug;
443          xvid_global(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
444    
445          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
446          create.version = XVID_VERSION;          create.version = XVID_VERSION;
447    
     /* zones */  
     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;  
     }  
   
448      /* plugins */      /* plugins */
449          create.plugins = plugins;          create.plugins = plugins;
450          switch (codec->config.mode)          switch (codec->config.mode)
# Line 344  Line 456 
456          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
457                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
458                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
459          plugins[create.num_plugins].func = xvid_plugin_single;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
460          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
461          create.num_plugins++;          create.num_plugins++;
462                    if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
463                            prepare_cquant_zones(&tmpCfg);
464          break;          break;
465    
466          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
467          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
468              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
469          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
470                    if (codec->config.full1pass)
471          plugins[create.num_plugins].func = xvid_plugin_2pass1;                          prepare_full1pass_zones(&tmpCfg);
472                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
473          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
474          create.num_plugins++;          create.num_plugins++;
475                  break;                  break;
# Line 362  Line 477 
477          case RC_MODE_2PASS2 :          case RC_MODE_2PASS2 :
478          memset(&pass2, 0, sizeof(pass2));          memset(&pass2, 0, sizeof(pass2));
479              pass2.version = XVID_VERSION;              pass2.version = XVID_VERSION;
480                    if (codec->config.use_2pass_bitrate) {
481          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
482                    } else {
483                            pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
484                    }
485                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
486    
487                    hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
488                    if (hFile == INVALID_HANDLE_VALUE)
489                    {
490                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
491                            return XVID_ERR_FAIL;
492                    } else
493                    {
494                            CloseHandle(hFile);
495                    }
496    
497          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;  
498          pass2.curve_compression_high = codec->config.curve_compression_high;          pass2.curve_compression_high = codec->config.curve_compression_high;
499          pass2.curve_compression_low = codec->config.curve_compression_low;          pass2.curve_compression_low = codec->config.curve_compression_low;
500                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
501          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
502          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;  
503              pass2.kfreduction = codec->config.kfreduction;              pass2.kfreduction = codec->config.kfreduction;
504          pass2.min_key_interval = codec->config.min_key_interval;                  pass2.kfthreshold = codec->config.kfthreshold;
505          pass2.container_frame_overhead = 24;    /* AVI */          pass2.container_frame_overhead = 24;    /* AVI */
506    
507          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  /* VBV */
508                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
509                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
510                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
511    
512        // XXX: xvidcore current provides a "peak bits over 3secs" constraint.
513        //      according to the latest dxn literature, a 1sec constraint is now used
514        pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate * 3;
515    
516                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
517          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
518          create.num_plugins++;          create.num_plugins++;
519                  break;                  break;
# Line 389  Line 525 
525                  break;                  break;
526          }          }
527    
528            /* zones  - copy from tmpCfg in case we automatically altered them above */
529            create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
530            create.num_zones = tmpCfg.num_zones;
531            for (i=0; i < create.num_zones; i++) {
532                    create.zones[i].frame = tmpCfg.zones[i].frame;
533                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
534                            create.zones[i].mode = XVID_ZONE_QUANT;
535                            create.zones[i].increment = tmpCfg.zones[i].quant;
536                    }else{
537                            create.zones[i].mode = XVID_ZONE_WEIGHT;
538                            create.zones[i].increment = tmpCfg.zones[i].weight;
539                    }
540                    create.zones[i].base = 100;
541            }
542    
543            /* lumimasking plugin */
544          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
545          plugins[create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
546          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
547          create.num_plugins++;          create.num_plugins++;
548          }          }
# Line 406  Line 558 
558          create.fincr = codec->fincr;          create.fincr = codec->fincr;
559          create.fbase = codec->fbase;          create.fbase = codec->fbase;
560    
561      create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
562    
563      create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
564      create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
565      create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
566      create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
567      create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
568      create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
569    
570      if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {      if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
571    
572        /* dxn: prevent bframes usage if interlacing is selected */
573        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
574          create.max_bframes = codec->config.max_bframes;          create.max_bframes = codec->config.max_bframes;
575              create.bquant_ratio = codec->config.bquant_ratio;              create.bquant_ratio = codec->config.bquant_ratio;
576              create.bquant_offset = codec->config.bquant_offset;              create.bquant_offset = codec->config.bquant_offset;
# Line 423  Line 578 
578          if (codec->config.packed)          if (codec->config.packed)
579              create.global |= XVID_GLOBAL_PACKED;              create.global |= XVID_GLOBAL_PACKED;
580    
             if (codec->config.closed_gov)  
581                      create.global |= XVID_GLOBAL_CLOSED_GOP;                      create.global |= XVID_GLOBAL_CLOSED_GOP;
582    
583          /* restrict max bframes */
584          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
585            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
586    
587          /* dxn: enable packed bframes */
588          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
589    
590            create.global |= XVID_GLOBAL_PACKED;
591          }
592      }      }
593            }
594    
595      /* dxn: always write divx5 userdata */
596      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
597        create.global |= XVID_GLOBAL_DIVX5_USERDATA;
598    
599          create.frame_drop_ratio = codec->config.frame_drop_ratio;          create.frame_drop_ratio = quality_preset->frame_drop_ratio;
600    
601      create.num_threads = codec->config.num_threads;      create.num_threads = codec->config.num_threads;
602    
603          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
604          {          {
605          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
606                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 447  Line 615 
615                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
616          }          }
617    
618            free(create.zones);
619          codec->ehandle = create.handle;          codec->ehandle = create.handle;
620          codec->framenum = 0;          codec->framenum = 0;
621          codec->keyspacing = 0;          codec->keyspacing = 0;
622    
623            if (codec->config.display_status) {
624                    status_destroy_always(&codec->status);
625                    status_create(&codec->status, codec->fincr, codec->fbase);
626            }
627    
628          return ICERR_OK;          return ICERR_OK;
629  }  }
630    
631    
632  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
633  {  {
634          if (codec->ehandle != NULL)      if (codec==NULL)
635          {        return ICERR_OK;
636                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);  
637            if (codec->m_hdll != NULL) {
638                    if (codec->ehandle != NULL) {
639                            codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
640                  codec->ehandle = NULL;                  codec->ehandle = NULL;
641          }          }
642            }
643    
644            if (codec->config.display_status)
645                    status_destroy(&codec->status);
646    
647          return ICERR_OK;          return ICERR_OK;
648  }  }
# Line 472  Line 653 
653      int i;      int i;
654    
655      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++) ;
656      i--;  
657            if (--i < 0) return; /* there are no zones, or we're before the first zone */
658    
659            if (framenum == config->zones[i].frame)
660                    frame->type = config->zones[i].type;
661    
662      if (config->zones[i].greyscale) {      if (config->zones[i].greyscale) {
663          frame->vop_flags |= XVID_VOP_GREYSCALE;          frame->vop_flags |= XVID_VOP_GREYSCALE;
# Line 482  Line 667 
667          frame->vop_flags |= XVID_VOP_CHROMAOPT;          frame->vop_flags |= XVID_VOP_CHROMAOPT;
668      }      }
669    
670            if (config->zones[i].cartoon_mode) {
671                    frame->vop_flags |= XVID_VOP_CARTOON;
672                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
673            }
674    
675      if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {      if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
676          frame->bframe_threshold = config->zones[i].bvop_threshold;          frame->bframe_threshold = config->zones[i].bvop_threshold;
677      }      }
678  }  }
679    
680    
681    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
682    
683  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
684  {  {
685          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 495  Line 687 
687          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
688          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
689          int length;          int length;
690      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
691        &codec->config.quality_user : &quality_table[codec->config.quality];
692    
693          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
694          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 517  Line 711 
711                  }                  }
712          }          }
713    
     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 */  
         }  
   
714          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
715                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
716                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
717          }          }
718    
719          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
720                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
721                    frame.motion |= XVID_ME_GME_REFINE;
722            }
723    
724          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
725                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
726    
727      /* dxn: force 1:1 picture aspect ration */
728      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
729        frame.par = XVID_PAR_11_VGA;
730      } else if (codec->config.ar_mode == 0) { /* PAR */
731                    if (codec->config.display_aspect_ratio != 5) {
732                            frame.par = codec->config.display_aspect_ratio + 1;
733                    } else {
734                            frame.par = XVID_PAR_EXT;
735                            frame.par_width = codec->config.par_x;
736                            frame.par_height= codec->config.par_y;
737                    }
738            } else { /* AR */
739                    /* custom pixel aspect ratio -> calculated from DAR */
740                    frame.par = XVID_PAR_EXT;
741                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
742                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
743            }
744    
745      /* vop stuff */      /* vop stuff */
746    
747          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
748          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
749    
750            if (codec->config.interlacing && codec->config.tff)
751                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
752    
753    
754          if (codec->config.vop_debug)          if (codec->config.vop_debug)
755                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
756    
757      if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
758          frame.vop_flags |= XVID_VOP_TRELLISQUANT;          frame.vop_flags |= XVID_VOP_TRELLISQUANT;
759      }      }
760    
761      if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
762              if (quality_preset->motion_search > 4)
763                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
764      }
765    
766          if (codec->config.chromame)          if (quality_preset->chromame)
767                  frame.vop_flags |= XVID_ME_CHROMA16 + XVID_ME_CHROMA8;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
768    
769          frame.motion |= pmvfast_presets[codec->config.motion_search];          if (quality_preset->turbo)
770                    frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
771                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
772                                                    XVID_ME_BFRAME_EARLYSTOP;
773    
774          switch (codec->config.vhq_mode)          frame.motion |= pmvfast_presets[quality_preset->motion_search];
775    
776            if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
777    
778    
779            switch (quality_preset->vhq_mode)
780          {          {
781          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
782                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
783                  break;                  break;
784    
785          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
786                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
787                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
788                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
789                  break;                  break;
790    
791          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
792                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
793                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
794                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
795                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
796                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
797                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
798                  break;                  break;
799    
800          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
801                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
802                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
803                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
804                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
805                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
806                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
807                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
808                  break;                  break;
809    
810          default :          default :
# Line 590  Line 812 
812          }          }
813    
814          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
815          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);
816    
817          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
818                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
819    
820          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) {
821                  frame.input.stride[0] = (frame.input.stride[0]*2)/3;                  frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
822                    frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
823            }
824    
825          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
826          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
# Line 610  Line 834 
834      }      }
835    
836          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
837          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
         {  
838                  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;  
         }  
839    
840      /* frame-based stuff */      /* frame-based stuff */
841      apply_zone_modifiers(&frame, &codec->config, codec->framenum);      apply_zone_modifiers(&frame, &codec->config, codec->framenum);
# Line 628  Line 845 
845          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
846          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
847    
848      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
849          switch (length)          switch (length)
850          {          {
851          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 644  Line 861 
861                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
862          }          }
863    
864            if (codec->config.display_status && stats.type>0) {
865                    status_update(&codec->status, stats.type, stats.length, stats.quant);
866            }
867    
868          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
869    
870      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
# Line 744  Line 965 
965          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
966          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
967          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 */
968          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
969    
970          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
971          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
972          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 753  Line 975 
975          return ICERR_OK;          return ICERR_OK;
976  }  }
977    
978    #define REG_GET_N(X, Y, Z) \
979    { \
980            DWORD size = sizeof(int); \
981            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
982                    Y=Z; \
983            } \
984    }while(0)
985    
986  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
987  {  {
988          xvid_gbl_init_t init;          xvid_gbl_init_t init;
989          xvid_dec_create_t create;          xvid_dec_create_t create;
990            HKEY hKey;
991    
992            if (init_dll(codec) != 0) return ICERR_ERROR;
993    
994          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
995          init.version = XVID_VERSION;          init.version = XVID_VERSION;
996          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
997          xvid_global(0, XVID_GBL_INIT, &init, NULL);    init.debug = codec->config.debug;
998            codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
999    
1000          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
1001          create.version = XVID_VERSION;          create.version = XVID_VERSION;
1002          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
1003          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
1004    
1005          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
1006          {          {
1007          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1008                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 786  Line 1019 
1019    
1020          codec->dhandle = create.handle;          codec->dhandle = create.handle;
1021    
1022            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
1023    
1024            REG_GET_N("Brightness", pp_brightness, 0);
1025            REG_GET_N("Deblock_Y",  pp_dy, 0)
1026            REG_GET_N("Deblock_UV", pp_duv, 0)
1027            REG_GET_N("Dering_Y",  pp_dry, 0)
1028            REG_GET_N("Dering_UV", pp_druv, 0)
1029            REG_GET_N("FilmEffect", pp_fe, 0)
1030    
1031            RegCloseKey(hKey);
1032    
1033          return ICERR_OK;          return ICERR_OK;
1034  }  }
1035    
1036    
1037  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1038  {  {
1039          if (codec->dhandle != NULL)          if (codec->m_hdll != NULL) {
1040          {                  if (codec->dhandle != NULL) {
1041                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1042                  codec->dhandle = NULL;                  codec->dhandle = NULL;
1043          }          }
1044            }
1045    
1046          return ICERR_OK;          return ICERR_OK;
1047  }  }
1048    
# Line 827  Line 1073 
1073    
1074                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1075                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1076                  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);
1077                  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)
1078                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1079    
1080                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1081                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1082                  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);
1083                  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)
1084                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1085    
# Line 842  Line 1088 
1088                  convert.interlacing = 0;                  convert.interlacing = 0;
1089                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1090                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1091                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1092                  {                  {
1093                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1094                  }                  }
# Line 863  Line 1109 
1109                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1110                  }                  }
1111                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1112                  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);
1113                  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)
1114                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1115          }          }
1116          else          else
1117          {          {
1118                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1119          }          }
1120    
1121          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1122            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1123            if (pp_dry) frame.general |= XVID_DERINGY;
1124            if (pp_druv) frame.general |= XVID_DERINGUV;
1125            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1126    
1127            frame.brightness = pp_brightness;
1128    
1129            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1130          {          {
1131          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1132                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1.1.2.10  
changed lines
  Added in v.1.19.2.2

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