[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.7, Sat May 17 13:37:49 2003 UTC revision 1.13, Mon Nov 22 10:40:03 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    
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 243  Line 246 
246    
247  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)
248  {  {
249      //DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);  #if 0
250            DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);
251    #endif
252          codec->fincr = icf->dwScale;          codec->fincr = icf->dwScale;
253          codec->fbase = icf->dwRate;          codec->fbase = icf->dwRate;
254          return ICERR_OK;          return ICERR_OK;
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 261  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 277  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 289  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 300  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    
427            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
428            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
429    
430            if (init_dll(codec) != 0) return ICERR_ERROR;
431      /* destroy previously created codec */      /* destroy previously created codec */
432          if(codec->ehandle) {          if(codec->ehandle) {
433                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
434                  codec->ehandle = NULL;                  codec->ehandle = NULL;
435          }          }
436    
# Line 311  Line 438 
438          init.version = XVID_VERSION;          init.version = XVID_VERSION;
439          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
440      init.debug = codec->config.debug;      init.debug = codec->config.debug;
441          xvid_global(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
442    
443          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
444          create.version = XVID_VERSION;          create.version = XVID_VERSION;
445    
446      // 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  
447          create.plugins = plugins;          create.plugins = plugins;
448          switch (codec->config.mode)          switch (codec->config.mode)
449          {          {
# Line 342  Line 454 
454          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
455                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
456                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
457          plugins[create.num_plugins].func = xvid_plugin_single;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
458          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
459          create.num_plugins++;          create.num_plugins++;
460                    if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
461                            prepare_cquant_zones(&tmpCfg);
462          break;          break;
463    
464          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
465          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
466              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
467          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
468                    if (codec->config.full1pass)
469          plugins[create.num_plugins].func = xvid_plugin_2pass1;                          prepare_full1pass_zones(&tmpCfg);
470                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
471          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
472          create.num_plugins++;          create.num_plugins++;
473                  break;                  break;
# Line 360  Line 475 
475          case RC_MODE_2PASS2 :          case RC_MODE_2PASS2 :
476          memset(&pass2, 0, sizeof(pass2));          memset(&pass2, 0, sizeof(pass2));
477              pass2.version = XVID_VERSION;              pass2.version = XVID_VERSION;
478                    if (codec->config.use_2pass_bitrate) {
479          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
480                    } else {
481                            pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
482                    }
483                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
484    
485          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
486                    if (hFile == INVALID_HANDLE_VALUE)
487                    {
488                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
489                            return XVID_ERR_FAIL;
490                    } else
491                    {
492                            CloseHandle(hFile);
493                    }
494    
495                    pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
496                    pass2.curve_compression_high = codec->config.curve_compression_high;
497                    pass2.curve_compression_low = codec->config.curve_compression_low;
498                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
499                    pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
500                    pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
501                    pass2.kfreduction = codec->config.kfreduction;
502                    pass2.kfthreshold = codec->config.kfthreshold;
503                    pass2.container_frame_overhead = 24;    /* AVI */
504    
505                    /* VBV */
506                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
507                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4;
508                    pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;
509                    pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */
510    
511                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
512          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
513          create.num_plugins++;          create.num_plugins++;
514                  break;                  break;
# Line 375  Line 520 
520                  break;                  break;
521          }          }
522    
523            /* zones  - copy from tmpCfg in case we automatically altered them above */
524            create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
525            create.num_zones = tmpCfg.num_zones;
526            for (i=0; i < create.num_zones; i++) {
527                    create.zones[i].frame = tmpCfg.zones[i].frame;
528                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
529                            create.zones[i].mode = XVID_ZONE_QUANT;
530                            create.zones[i].increment = tmpCfg.zones[i].quant;
531                    }else{
532                            create.zones[i].mode = XVID_ZONE_WEIGHT;
533                            create.zones[i].increment = tmpCfg.zones[i].weight;
534                    }
535                    create.zones[i].base = 100;
536            }
537    
538            /* lumimasking plugin */
539          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
540          plugins[create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
541          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
542          create.num_plugins++;          create.num_plugins++;
543          }          }
# Line 418  Line 579 
579    
580      create.num_threads = codec->config.num_threads;      create.num_threads = codec->config.num_threads;
581    
582          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
583          {          {
584          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
585                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 433  Line 594 
594                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
595          }          }
596    
597            free(create.zones);
598          codec->ehandle = create.handle;          codec->ehandle = create.handle;
599          codec->framenum = 0;          codec->framenum = 0;
600          codec->keyspacing = 0;          codec->keyspacing = 0;
601    
602            if (codec->config.display_status) {
603                    status_destroy_always(&codec->status);
604                    status_create(&codec->status, codec->fincr, codec->fbase);
605            }
606    
607          return ICERR_OK;          return ICERR_OK;
608  }  }
609    
610    
611  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
612  {  {
613          if (codec->ehandle != NULL)          if (codec->m_hdll != NULL) {
614          {                  if (codec->ehandle != NULL) {
615                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
616                  codec->ehandle = NULL;                  codec->ehandle = NULL;
617          }          }
618            }
619    
620            if (codec->config.display_status)
621                    status_destroy(&codec->status);
622    
623          return ICERR_OK;          return ICERR_OK;
624  }  }
# Line 458  Line 629 
629      int i;      int i;
630    
631      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++) ;
632      i--;  
633            if (--i < 0) return; /* there are no zones, or we're before the first zone */
634    
635            if (framenum == config->zones[i].frame)
636                    frame->type = config->zones[i].type;
637    
638      if (config->zones[i].greyscale) {      if (config->zones[i].greyscale) {
639          frame->vop_flags |= XVID_VOP_GREYSCALE;          frame->vop_flags |= XVID_VOP_GREYSCALE;
# Line 474  Line 649 
649  }  }
650    
651    
652    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
653    
654  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
655  {  {
656          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 514  Line 691 
691                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
692          }          }
693    
694          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
695                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
696                    frame.motion |= XVID_ME_GME_REFINE;
697            }
698    
699          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
700                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
701    
702            if (codec->config.ar_mode == 0) { /* PAR */
703                    if (codec->config.display_aspect_ratio != 5) {
704                            frame.par = codec->config.display_aspect_ratio + 1;
705                    } else {
706                            frame.par = XVID_PAR_EXT;
707                            frame.par_width = codec->config.par_x;
708                            frame.par_height= codec->config.par_y;
709                    }
710            } else { /* AR */
711                    /* custom pixel aspect ratio -> calculated from DAR */
712                    frame.par = XVID_PAR_EXT;
713                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
714                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
715            }
716    
717      /* vop stuff */      /* vop stuff */
718    
719          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
720          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
721    
722            if (codec->config.interlacing && codec->config.tff)
723                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
724    
725    
726          if (codec->config.vop_debug)          if (codec->config.vop_debug)
727                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
728    
# Line 536  Line 734 
734                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
735    
736          if (codec->config.chromame)          if (codec->config.chromame)
737                  frame.vop_flags |= XVID_ME_CHROMA16 + XVID_ME_CHROMA8;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
738    
739            if (codec->config.cartoon_mode) {
740                    frame.vop_flags |= XVID_VOP_CARTOON;
741                    frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
742            }
743    
744            if (codec->config.turbo)
745                    frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
746                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
747                                                    XVID_ME_BFRAME_EARLYSTOP;
748    
749          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
750    
751            if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
752    
753    
754          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
755          {          {
756          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
757                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
758                  break;                  break;
759    
760          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
761                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
762                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
763                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
764                  break;                  break;
765    
766          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
767                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
768                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
769                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
770                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
771                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
772                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
773                  break;                  break;
774    
775          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
776                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
777                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
778                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
779                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
780                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
781                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
782                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
783                  break;                  break;
784    
785          default :          default :
# Line 576  Line 787 
787          }          }
788    
789          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
790          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);
791    
792          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
793                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
794    
795          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) {
796                  frame.input.stride[0] = (frame.input.stride[0]*2)/3;                  frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
797                    frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
798            }
799    
800          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
801          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
# Line 597  Line 810 
810    
811          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
812          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
813                  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;  
         }  
814    
815      /* frame-based stuff */      /* frame-based stuff */
816      apply_zone_modifiers(&frame, &codec->config, codec->framenum);      apply_zone_modifiers(&frame, &codec->config, codec->framenum);
# Line 614  Line 820 
820          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
821          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
822    
823      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
824          switch (length)          switch (length)
825          {          {
826          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 630  Line 836 
836                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
837          }          }
838    
839            if (codec->config.display_status && stats.type>0) {
840                    status_update(&codec->status, stats.type, stats.length, stats.quant);
841            }
842    
843          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
844    
845      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
# Line 713  Line 923 
923    
924          if (get_colorspace(inhdr) != XVID_CSP_NULL) {          if (get_colorspace(inhdr) != XVID_CSP_NULL) {
925                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
926                  // XXX: should we set outhdr->biSize ??                  /* XXX: should we set outhdr->biSize ?? */
927                  return ICERR_OK;                  return ICERR_OK;
928          }          }
929          /* --- yv12 --- */          /* --- yv12 --- */
# Line 730  Line 940 
940          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
941          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
942          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 */
943          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
944    
945          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
946          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
947          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 739  Line 950 
950          return ICERR_OK;          return ICERR_OK;
951  }  }
952    
953    #define REG_GET_N(X, Y, Z) \
954    { \
955            DWORD size = sizeof(int); \
956            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
957                    Y=Z; \
958            } \
959    }while(0)
960    
961  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
962  {  {
963          xvid_gbl_init_t init;          xvid_gbl_init_t init;
964          xvid_dec_create_t create;          xvid_dec_create_t create;
965            HKEY hKey;
966    
967            if (init_dll(codec) != 0) return ICERR_ERROR;
968    
969          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
970          init.version = XVID_VERSION;          init.version = XVID_VERSION;
971          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
972          xvid_global(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
973    
974          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
975          create.version = XVID_VERSION;          create.version = XVID_VERSION;
976          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
977          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
978    
979          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
980          {          {
981          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
982                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 772  Line 993 
993    
994          codec->dhandle = create.handle;          codec->dhandle = create.handle;
995    
996            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
997    
998            REG_GET_N("Brightness", pp_brightness, 0);
999            REG_GET_N("Deblock_Y",  pp_dy, 0)
1000            REG_GET_N("Deblock_UV", pp_duv, 0)
1001            REG_GET_N("Dering_Y",  pp_dry, 0)
1002            REG_GET_N("Dering_UV", pp_druv, 0)
1003            REG_GET_N("FilmEffect", pp_fe, 0)
1004    
1005            RegCloseKey(hKey);
1006    
1007          return ICERR_OK;          return ICERR_OK;
1008  }  }
1009    
1010    
1011  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1012  {  {
1013          if (codec->dhandle != NULL)          if (codec->m_hdll != NULL) {
1014          {                  if (codec->dhandle != NULL) {
1015                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1016                  codec->dhandle = NULL;                  codec->dhandle = NULL;
1017          }          }
1018            }
1019    
1020          return ICERR_OK;          return ICERR_OK;
1021  }  }
1022    
# Line 813  Line 1047 
1047    
1048                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1049                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1050                  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);
1051                  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)
1052                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1053    
1054                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1055                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1056                  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);
1057                  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)
1058                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1059    
# Line 828  Line 1062 
1062                  convert.interlacing = 0;                  convert.interlacing = 0;
1063                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1064                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1065                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1066                  {                  {
1067                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1068                  }                  }
# Line 849  Line 1083 
1083                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1084                  }                  }
1085                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1086                  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);
1087                  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)
1088                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1089          }          }
1090          else          else
1091          {          {
1092                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1093          }          }
1094    
1095          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1096            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1097            if (pp_dry) frame.general |= XVID_DERINGY;
1098            if (pp_druv) frame.general |= XVID_DERINGUV;
1099            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1100    
1101            frame.brightness = pp_brightness;
1102    
1103            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1104          {          {
1105          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1106                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1.1.2.7  
changed lines
  Added in v.1.13

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