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

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

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

revision 983, Sat Apr 12 06:58:50 2003 UTC revision 1323, Thu Jan 22 16:13:59 2004 UTC
# Line 49  Line 49 
49    
50  #include <windows.h>  #include <windows.h>
51  #include <vfw.h>  #include <vfw.h>
52    #include <stdio.h>
53    #include "vfwext.h"
54    
55  #include <xvid.h>  #include <xvid.h>
56  #include "debug.h"  #include "debug.h"
57  #include "codec.h"  #include "codec.h"
58    #include "status.h"
59    
60    
61  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
# Line 169  Line 172 
172          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
173          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
174    
175            /* VFWEXT detection */
176            if (inhdr->biCompression == VFWEXT_FOURCC) {
177                    return (ICM_USER+0x0fff);
178            }
179    
180          if (get_colorspace(inhdr) == XVID_CSP_NULL)          if (get_colorspace(inhdr) == XVID_CSP_NULL)
181          {          {
182                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 201  Line 209 
209    
210          if (lpbiOutput == NULL)          if (lpbiOutput == NULL)
211          {          {
212                  return sizeof(BITMAPV4HEADER);                  return sizeof(BITMAPINFOHEADER);
213          }          }
214    
215          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
# Line 237  Line 245 
245    
246  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)
247  {  {
248    #if 0
249            DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);
250    #endif
251          codec->fincr = icf->dwScale;          codec->fincr = icf->dwScale;
252          codec->fbase = icf->dwRate;          codec->fbase = icf->dwRate;
253          return ICERR_OK;          return ICERR_OK;
# Line 257  Line 268 
268  int vfw_debug(void *handle,  int vfw_debug(void *handle,
269                           int opt,                           int opt,
270                           void *param1,                           void *param1,
271                           void *param2)                           void **param2)
272  {  {
273          switch (opt) {          switch (opt) {
         case XVID_PLG_INFO:  
274          case XVID_PLG_CREATE:          case XVID_PLG_CREATE:
275                    *param2 = NULL;
276            case XVID_PLG_INFO:
277          case XVID_PLG_DESTROY:          case XVID_PLG_DESTROY:
278          case XVID_PLG_BEFORE:          case XVID_PLG_BEFORE:
279                  return 0;                  return 0;
# Line 270  Line 282 
282                  {                  {
283                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
284    
285                          DPRINTF("[%5i]   type=%c   Q:%2i   length:%6i",                          /* We don't use DPRINTF here because it's active only for _DEBUG
286                             * builds and that activates lot of other debug printfs. We only
287                             * want these all the time */
288                            char buf[1024];
289                            sprintf(buf, "[%6i]   type=%c   Q:%2i   length:%6i",
290                                     data->frame_num,                                     data->frame_num,
291                     type2char(data->type),                     type2char(data->type),
292                     data->quant,                     data->quant,
293                     data->length);                     data->length);
294                            OutputDebugString(buf);
295    
296                          return 0;                          return 0;
297                  }                  }
298          }          }
# Line 282  Line 300 
300          return XVID_ERR_FAIL;          return XVID_ERR_FAIL;
301  }  }
302    
303    #define XVID_DLL_NAME "xvidcore.dll"
304    
305    static int init_dll()
306    {
307            if (m_hdll != NULL) return 0;
308    
309            DPRINTF("init_dll");
310            m_hdll = LoadLibrary(XVID_DLL_NAME);
311            if (m_hdll == NULL) {
312                    DPRINTF("dll load failed");
313                    MessageBox(0, XVID_DLL_NAME " not found","Error", 0);
314                    return XVID_ERR_FAIL;
315            }
316    
317            xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global");
318            if (xvid_global_func == NULL) {
319                    MessageBox(0, "xvid_global() not found", "Error", 0);
320                    return XVID_ERR_FAIL;
321            }
322    
323            xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_encore");
324            if (xvid_encore_func == NULL) {
325                    MessageBox(0, "xvid_encore() not found", "Error", 0);
326                    return XVID_ERR_FAIL;
327            }
328    
329            xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_decore");
330            if (xvid_decore_func == NULL) {
331                    MessageBox(0, "xvid_decore() not found", "Error", 0);
332                    return XVID_ERR_FAIL;
333            }
334    
335            xvid_plugin_single_func =
336                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_single"));
337            xvid_plugin_2pass1_func =
338                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass1"));
339            xvid_plugin_2pass2_func =
340                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass2"));
341            xvid_plugin_lumimasking_func =
342                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_lumimasking"));
343            xvid_plugin_psnr_func =
344                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_psnr"));
345    
346            return 0;
347    }
348    
349    
350  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
# Line 289  Line 352 
352          xvid_gbl_init_t init;          xvid_gbl_init_t init;
353          xvid_enc_create_t create;          xvid_enc_create_t create;
354      xvid_enc_plugin_t plugins[3];      xvid_enc_plugin_t plugins[3];
355            xvid_plugin_single_t single;
         xvid_plugin_fixed_t     fixed;  
         xvid_plugin_cbr_t cbr;  
356          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
357          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
358            int i;
359    
360            if (init_dll() != 0) return ICERR_ERROR;
361      /* destroy previously created codec */      /* destroy previously created codec */
362          if(codec->ehandle) {          if(codec->ehandle) {
363                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
364                  codec->ehandle = NULL;                  codec->ehandle = NULL;
365          }          }
366    
367      memset(&init, 0, sizeof(init));      memset(&init, 0, sizeof(init));
368          init.version = XVID_VERSION;          init.version = XVID_VERSION;
369          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
370          xvid_global(0, XVID_GBL_INIT, &init, NULL);          init.debug = codec->config.debug;
371            xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
372    
373          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
374          create.version = XVID_VERSION;          create.version = XVID_VERSION;
         create.plugins = plugins;  
375    
376            /* zones */
377            create.zones = malloc(sizeof(xvid_enc_zone_t) * codec->config.num_zones);
378            create.num_zones = codec->config.num_zones;
379            for (i=0; i < create.num_zones; i++) {
380                    create.zones[i].frame = codec->config.zones[i].frame;
381                    if (codec->config.zones[i].mode == RC_ZONE_QUANT) {
382                            create.zones[i].mode = XVID_ZONE_QUANT;
383                            create.zones[i].increment = codec->config.zones[i].quant;
384                    }else{
385                            create.zones[i].mode = XVID_ZONE_WEIGHT;
386                            create.zones[i].increment = codec->config.zones[i].weight;
387                    }
388                    create.zones[i].base = 100;
389            }
390    
391            /* plugins */
392            create.plugins = plugins;
393          switch (codec->config.mode)          switch (codec->config.mode)
394          {          {
395          case RC_MODE_CBR :          case RC_MODE_1PASS :
396          memset(&cbr, 0, sizeof(cbr));                  memset(&single, 0, sizeof(single));
397              cbr.version = XVID_VERSION;                  single.version = XVID_VERSION;
398          cbr.bitrate = codec->config.rc_bitrate;                  single.bitrate = codec->config.bitrate * CONFIG_KBPS;
399          cbr.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
400                  cbr.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
401                  cbr.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
402          plugins[create.num_plugins].func = xvid_plugin_cbr;                  plugins[create.num_plugins].func = xvid_plugin_single_func;
403          plugins[create.num_plugins].param = &cbr;                  plugins[create.num_plugins].param = &single;
         create.num_plugins++;  
   
         case RC_MODE_FIXED :  
         memset(&fixed, 0, sizeof(fixed));  
             fixed.version = XVID_VERSION;  
         fixed.quant_increment = codec->config.quant;  
         fixed.quant_base = 1;  
         plugins[create.num_plugins].func = xvid_plugin_fixed;  
         plugins[create.num_plugins].param = &fixed;  
404          create.num_plugins++;          create.num_plugins++;
405                  break;                  break;
406    
407          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
408          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
409              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
410                    pass1.filename = codec->config.stats;
411    
412          plugins[create.num_plugins].func = xvid_plugin_2pass1;                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
413          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
414          create.num_plugins++;          create.num_plugins++;
415                  break;                  break;
416    
417            case RC_MODE_2PASS2 :
         case RC_MODE_2PASS2_INT :  
         case RC_MODE_2PASS2_EXT :  
418          memset(&pass2, 0, sizeof(pass2));          memset(&pass2, 0, sizeof(pass2));
419              pass2.version = XVID_VERSION;              pass2.version = XVID_VERSION;
420          pass2.min_quant[0] = codec->config.min_iquant;                  if (codec->config.use_2pass_bitrate) {
421          pass2.max_quant[0] = codec->config.max_iquant;                          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
422          pass2.min_quant[1] = codec->config.min_pquant;                  }else{
423          pass2.max_quant[1] = codec->config.max_pquant;                          pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
         //pass2.min_quant[2] = codec->config.min_bquant;  
         //pass2.max_quant[2] = codec->config.max_bquant;  
                 pass2.filename = codec->config.stats;  
                 if (codec->config.mode == RC_MODE_2PASS2_INT) {  
                         pass2.bitrate = 10000;  /* xxx */  
424                  }                  }
425          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  pass2.filename = codec->config.stats;
426    
427                    pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
428                    pass2.curve_compression_high = codec->config.curve_compression_high;
429                    pass2.curve_compression_low = codec->config.curve_compression_low;
430                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
431                    pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
432                    pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
433                    pass2.kfreduction = codec->config.kfreduction;
434                    pass2.kfthreshold = codec->config.kfthreshold;
435                    pass2.container_frame_overhead = 24;    /* AVI */
436    
437                    plugins[create.num_plugins].func = xvid_plugin_2pass2_func;
438          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
439          create.num_plugins++;          create.num_plugins++;
440                  break;                  break;
# Line 369  Line 446 
446                  break;                  break;
447          }          }
448    
449          if (codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
450          plugins[create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
451          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
452          create.num_plugins++;          create.num_plugins++;
453          }          }
# Line 379  Line 456 
456      plugins[create.num_plugins].param = NULL;      plugins[create.num_plugins].param = NULL;
457      create.num_plugins++;      create.num_plugins++;
458    
459            create.profile = profiles[codec->config.profile].id;
460    
461          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
462          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
463          create.fincr = codec->fincr;          create.fincr = codec->fincr;
464          create.fbase = codec->fbase;          create.fbase = codec->fbase;
465    
466            create.max_key_interval = codec->config.max_key_interval;
467    
468            create.min_quant[0] = codec->config.min_iquant;
469            create.max_quant[0] = codec->config.max_iquant;
470            create.min_quant[1] = codec->config.min_pquant;
471            create.max_quant[1] = codec->config.max_pquant;
472            create.min_quant[2] = codec->config.min_bquant;
473            create.max_quant[2] = codec->config.max_bquant;
474    
475            if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
476                    create.max_bframes = codec->config.max_bframes;
477                    create.bquant_ratio = codec->config.bquant_ratio;
478                    create.bquant_offset = codec->config.bquant_offset;
479    
480      if (codec->config.packed)      if (codec->config.packed)
481          create.global |= XVID_GLOBAL_PACKED;          create.global |= XVID_GLOBAL_PACKED;
482    
483          if (codec->config.closed_gov)          if (codec->config.closed_gov)
484                  create.global |= XVID_GLOBAL_CLOSED_GOP;                  create.global |= XVID_GLOBAL_CLOSED_GOP;
485    
486      create.max_key_interval = codec->config.max_key_interval;          }
         /* XXX: param.min_quantizer = codec->config.min_pquant;  
         param.max_quantizer = codec->config.max_pquant; */  
487    
     if (codec->config.use_bvop)  
         create.max_bframes = codec->config.max_bframes;  
488          create.frame_drop_ratio = codec->config.frame_drop_ratio;          create.frame_drop_ratio = codec->config.frame_drop_ratio;
489    
         create.bquant_ratio = codec->config.bquant_ratio;  
         create.bquant_offset = codec->config.bquant_offset;  
   
490          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
491    
492          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
493          {          {
494          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
495                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 421  Line 508 
508          codec->framenum = 0;          codec->framenum = 0;
509          codec->keyspacing = 0;          codec->keyspacing = 0;
510    
511            if (codec->config.display_status) {
512                    status_destroy_always(&codec->status);
513                    status_create(&codec->status, codec->fincr, codec->fbase);
514            }
515    
516          return ICERR_OK;          return ICERR_OK;
517  }  }
518    
519    
520  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
521  {  {
522          if (codec->ehandle != NULL)          if (m_hdll != NULL) {
523          {                  if (codec->ehandle != NULL) {
524                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
525                  codec->ehandle = NULL;                  codec->ehandle = NULL;
526          }          }
527                    FreeLibrary(m_hdll);
528                    m_hdll = NULL;
529            }
530    
531            if (codec->config.display_status)
532                    status_destroy(&codec->status);
533    
534          return ICERR_OK;          return ICERR_OK;
535  }  }
536    
537    
538    static void apply_zone_modifiers(xvid_enc_frame_t * frame, CONFIG * config, int framenum)
539    {
540            int i;
541    
542            for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
543    
544            if (--i < 0) return; /* there are no zones, or we're before the first zone */
545    
546            if (framenum == config->zones[i].frame)
547                    frame->type = config->zones[i].type;
548    
549            if (config->zones[i].greyscale) {
550                    frame->vop_flags |= XVID_VOP_GREYSCALE;
551            }
552    
553            if (config->zones[i].chroma_opt) {
554                    frame->vop_flags |= XVID_VOP_CHROMAOPT;
555            }
556    
557            if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
558                    frame->bframe_threshold = config->zones[i].bvop_threshold;
559            }
560    }
561    
562    
563  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
564  {  {
565          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 444  Line 568 
568          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
569          int length;          int length;
570    
         // mpeg2avi yuv bug workaround (2 instances of CODEC)  
   
571          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
572          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
573    
# Line 453  Line 575 
575    
576          /* vol stuff */          /* vol stuff */
577    
578          if (codec->config.quant_type != QUANT_MODE_H263)          if ((profiles[codec->config.profile].flags & PROFILE_MPEGQUANT) &&
579                    codec->config.quant_type != QUANT_MODE_H263)
580          {          {
581                  frame.vol_flags |= XVID_VOL_MPEGQUANT;                  frame.vol_flags |= XVID_VOL_MPEGQUANT;
582    
583                  // we actually need "default/custom" selectbox for both inter/intra                  if (codec->config.quant_type == QUANT_MODE_CUSTOM) {
                 // this will do for now  
                 if (codec->config.quant_type == QUANT_MODE_CUSTOM)  
                 {  
584                          frame.quant_intra_matrix = codec->config.qmatrix_intra;                          frame.quant_intra_matrix = codec->config.qmatrix_intra;
585                          frame.quant_inter_matrix = codec->config.qmatrix_inter;                          frame.quant_inter_matrix = codec->config.qmatrix_inter;
586                  }                  }else{
                 else  
                 {  
587                          frame.quant_intra_matrix = NULL;                          frame.quant_intra_matrix = NULL;
588                          frame.quant_inter_matrix = NULL;                          frame.quant_inter_matrix = NULL;
589                  }                  }
590          }          }
591    
592          if (codec->config.reduced_resolution) {          if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&
593                    codec->config.reduced_resolution) {
594                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;
595                  frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */                  frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */
596          }          }
597    
598          if (codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
599                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
600                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
601          }          }
602    
603          if (codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
604                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
605                    frame.motion |= XVID_ME_GME_REFINE;
606            }
607    
608          if (codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
609                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
610    
611            if (codec->config.ar_mode == 0) { /* PAR */
612                    if (codec->config.display_aspect_ratio != 5) {
613                            frame.par = codec->config.display_aspect_ratio + 1;
614                    } else {
615                            frame.par = XVID_PAR_EXT;
616                            frame.par_width = codec->config.par_x;
617                            frame.par_height= codec->config.par_y;
618                    }
619            } else { /* AR */
620                    /* custom pixel aspect ratio -> calculated from DAR */
621                    frame.par = XVID_PAR_EXT;
622                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
623                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
624            }
625    
626      /* vop stuff */      /* vop stuff */
627    
628          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
629          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
630    
631          if (codec->config.debug)          if (codec->config.vop_debug)
632                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
633    
634            if (codec->config.trellis_quant) {
635                    frame.vop_flags |= XVID_VOP_TRELLISQUANT;
636            }
637    
638          if (codec->config.motion_search > 4)          if (codec->config.motion_search > 4)
639                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
640    
641          if (codec->config.chromame)          if (codec->config.chromame)
642                  frame.vop_flags |= XVID_ME_CHROMA16 + XVID_ME_CHROMA8;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
643    
644            if (codec->config.cartoon_mode) {
645                    frame.vop_flags |= XVID_VOP_CARTOON;
646                    frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
647            }
648    
649          if (codec->config.chroma_opt)          if (codec->config.turbo)
650                  frame.vop_flags |= XVID_VOP_CHROMAOPT;                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
651                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
652                                                    XVID_ME_BFRAME_EARLYSTOP;
653    
654          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
655    
656          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
657          {          {
658          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
659                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
660                  break;                  break;
661    
662          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
663                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
664                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
665                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
666                  break;                  break;
667    
668          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
669                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
670                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
671                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
672                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
673                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
674                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
675                  break;                  break;
676    
677          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
678                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
679                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
680                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
681                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
682                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
683                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
684                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
685                  break;                  break;
686    
687          default :          default :
688                  break;                  break;
689          }          }
690    
     frame.bframe_threshold = codec->config.bvop_threshold;  
   
691          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
692          frame.input.stride[0] = (((icc->lpbiInput->biWidth * icc->lpbiInput->biBitCount) + 31) & ~31) >> 3;          frame.input.stride[0] = (((icc->lpbiInput->biWidth * icc->lpbiInput->biBitCount) + 31) & ~31) >> 3;
693    
# Line 555  Line 700 
700          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
701          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
702    
703          switch (codec->config.mode)          frame.quant = 0;
         {  
         case RC_MODE_CBR :  
                 frame.quant = 0;  /* use xvidcore cbr rate control */  
                 break;  
   
         //case RC_MODE_VBR_QUAL :  
         case RC_MODE_FIXED :  
         case RC_MODE_2PASS1 :  
                 /*if (codec_get_quant(codec, &frame) == ICERR_ERROR)  
                 {  
                         return ICERR_ERROR;  
                 }*/  
                 break;  
704    
705          case RC_MODE_2PASS2_EXT :          if (codec->config.mode == RC_MODE_NULL) {
         case RC_MODE_2PASS2_INT :  
                 /*if (codec_2pass_get_quant(codec, &frame) == ICERR_ERROR)  
                 {  
                         return ICERR_ERROR;  
                 }*/  
                 break;  
   
         case RC_MODE_NULL :  
706                  outhdr->biSizeImage = 0;                  outhdr->biSizeImage = 0;
707                  *icc->lpdwFlags = AVIIF_KEYFRAME;                  *icc->lpdwFlags = AVIIF_KEYFRAME;
708                  return ICERR_OK;                  return ICERR_OK;
   
         default :  
                 DPRINTF("Invalid encoding mode");  
                 return ICERR_ERROR;  
709          }          }
710    
   
711          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
712          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
713                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
714          }  
715          else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)          /* frame-based stuff */
716          {          apply_zone_modifiers(&frame, &codec->config, codec->framenum);
717                  DPRINTF("current frame forced to p-frame");  
718                  frame.type = XVID_TYPE_PVOP;          /* call encore */
         }  
719    
720          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
721          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
722    
723      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
724          switch (length)          switch (length)
725          {          {
726          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 619  Line 736 
736                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
737          }          }
738    
739            if (codec->config.display_status && stats.type>0) {
740                    status_update(&codec->status, stats.type, stats.length, stats.quant);
741            }
742    
743          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
744    
745      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
# Line 646  Line 767 
767              }              }
768      }      }
769    
770          ++codec->framenum;          codec->framenum++;
771          ++codec->keyspacing;          codec->keyspacing++;
772    
773          return ICERR_OK;          return ICERR_OK;
774  }  }
# Line 702  Line 823 
823    
824          if (get_colorspace(inhdr) != XVID_CSP_NULL) {          if (get_colorspace(inhdr) != XVID_CSP_NULL) {
825                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
826                  // XXX: should we set outhdr->biSize ??                  /* XXX: should we set outhdr->biSize ?? */
827                  return ICERR_OK;                  return ICERR_OK;
828          }          }
829          /* --- yv12 --- */          /* --- yv12 --- */
# Line 728  Line 849 
849          return ICERR_OK;          return ICERR_OK;
850  }  }
851    
852    #define REG_GET_N(X, Y, Z) { int size=sizeof(int);if(RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) {Y=Z;} }
853    
854  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
855  {  {
856          xvid_gbl_init_t init;          xvid_gbl_init_t init;
857          xvid_dec_create_t create;          xvid_dec_create_t create;
858            HKEY hKey;
859    
860            if (init_dll() != 0) return ICERR_ERROR;
861    
862          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
863          init.version = XVID_VERSION;          init.version = XVID_VERSION;
864          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
865          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
866    
867          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
868          create.version = XVID_VERSION;          create.version = XVID_VERSION;
869          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
870          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
871    
872          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
873          {          {
874          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
875                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 761  Line 886 
886    
887          codec->dhandle = create.handle;          codec->dhandle = create.handle;
888    
889            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
890    
891            REG_GET_N("Deblock_Y",  pp_dy, 0)
892            REG_GET_N("Deblock_UV", pp_duv, 0)
893            REG_GET_N("Dering",  pp_dr, 0)
894            REG_GET_N("FilmEffect", pp_fe, 0)
895    
896            RegCloseKey(hKey);
897    
898          return ICERR_OK;          return ICERR_OK;
899  }  }
900    
901    
902  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
903  {  {
904          if (codec->dhandle != NULL)          if (m_hdll != NULL) {
905          {                  if (codec->dhandle != NULL) {
906                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
907                  codec->dhandle = NULL;                  codec->dhandle = NULL;
908          }          }
909                    FreeLibrary(m_hdll);
910                    m_hdll = NULL;
911            }
912    
913          return ICERR_OK;          return ICERR_OK;
914  }  }
915    
# Line 817  Line 955 
955                  convert.interlacing = 0;                  convert.interlacing = 0;
956                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
957                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
958                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
959                  {                  {
960                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
961                  }                  }
# Line 847  Line 985 
985                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
986          }          }
987    
988          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
989            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
990    /*      if (pp_dr) frame.general |= XVID_DERING; */
991            if (pp_fe) frame.general |= XVID_FILMEFFECT;
992    
993            switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
994          {          {
995          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
996                  return ICERR_ERROR;                  return ICERR_ERROR;

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

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