[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 949, Wed Mar 26 14:56:49 2003 UTC revision 1202, Sun Nov 9 20:49:21 2003 UTC
# Line 49  Line 49 
49    
50  #include <windows.h>  #include <windows.h>
51  #include <vfw.h>  #include <vfw.h>
52    #include "vfwext.h"
53    
54    #include <xvid.h>
55    #include "debug.h"
56  #include "codec.h"  #include "codec.h"
57  #include "2pass.h"  #include "status.h"
58    
59  int pmvfast_presets[7] = {  
60    static const int pmvfast_presets[7] = {
61          0, 0, 0, 0,          0, 0, 0, 0,
62          0 | XVID_ME_HALFPELREFINE16 | 0,          0 | XVID_ME_HALFPELREFINE16 | 0,
63          0 | XVID_ME_HALFPELREFINE16 | 0 |          0 | XVID_ME_HALFPELREFINE16 | 0 |
# Line 61  Line 65 
65          XVID_ME_HALFPELREFINE8 | 0 | XVID_ME_USESQUARES16          XVID_ME_HALFPELREFINE8 | 0 | XVID_ME_USESQUARES16
66  };  };
67    
68    
69    
70  /*      return xvid compatbile colorspace,  /*      return xvid compatbile colorspace,
71          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
72  */  */
# Line 75  Line 81 
81          case BI_RGB :          case BI_RGB :
82                  if (hdr->biBitCount == 16)                  if (hdr->biBitCount == 16)
83                  {                  {
84                          DEBUG("RGB16 (RGB555)");                          DPRINTF("RGB16 (RGB555)");
85                          return rgb_flip | XVID_CSP_RGB555;                          return rgb_flip | XVID_CSP_RGB555;
86                  }                  }
87                  if (hdr->biBitCount == 24)                  if (hdr->biBitCount == 24)
88                  {                  {
89                          DEBUG("RGB24");                          DPRINTF("RGB24");
90                          return rgb_flip | XVID_CSP_BGR;                          return rgb_flip | XVID_CSP_BGR;
91                  }                  }
92                  if (hdr->biBitCount == 32)                  if (hdr->biBitCount == 32)
93                  {                  {
94                          DEBUG("RGB32");                          DPRINTF("RGB32");
95                          return rgb_flip | XVID_CSP_BGRA;                          return rgb_flip | XVID_CSP_BGRA;
96                  }                  }
97    
98                  DEBUG1("unsupported BI_RGB biBitCount", hdr->biBitCount);                  DPRINTF("unsupported BI_RGB biBitCount=%i", hdr->biBitCount);
99                  return XVID_CSP_NULL;                  return XVID_CSP_NULL;
100    
101          case BI_BITFIELDS :          case BI_BITFIELDS :
# Line 102  Line 108 
108                                  hdr4->bV4GreenMask == 0x3e0 &&                                  hdr4->bV4GreenMask == 0x3e0 &&
109                                  hdr4->bV4BlueMask == 0x1f)                                  hdr4->bV4BlueMask == 0x1f)
110                          {                          {
111                                  DEBUG("RGB555");                                  DPRINTF("RGB555");
112                                  return rgb_flip | XVID_CSP_RGB555;                                  return rgb_flip | XVID_CSP_RGB555;
113                          }                          }
114    
# Line 111  Line 117 
117                                  hdr4->bV4GreenMask == 0x7e0 &&                                  hdr4->bV4GreenMask == 0x7e0 &&
118                                  hdr4->bV4BlueMask == 0x1f)                                  hdr4->bV4BlueMask == 0x1f)
119                          {                          {
120                                  DEBUG("RGB565");                                  DPRINTF("RGB565");
121                                  return rgb_flip | XVID_CSP_RGB565;                                  return rgb_flip | XVID_CSP_RGB565;
122                          }                          }
123    
124                          DEBUG("unsupported BI_BITFIELDS mode");                          DPRINTF("unsupported BI_BITFIELDS mode");
125                          return XVID_CSP_NULL;                          return XVID_CSP_NULL;
126                  }                  }
127    
128                  DEBUG("unsupported BI_BITFIELDS/BITMAPHEADER combination");                  DPRINTF("unsupported BI_BITFIELDS/BITMAPHEADER combination");
129                  return XVID_CSP_NULL;                  return XVID_CSP_NULL;
130    
131          case FOURCC_I420 :          case FOURCC_I420 :
132          case FOURCC_IYUV :          case FOURCC_IYUV :
133                  DEBUG("IYUY");                  DPRINTF("IYUY");
134                  return XVID_CSP_I420;                  return XVID_CSP_I420;
135    
136          case FOURCC_YV12 :          case FOURCC_YV12 :
137                  DEBUG("YV12");                  DPRINTF("YV12");
138                  return XVID_CSP_YV12;                  return XVID_CSP_YV12;
139    
140          case FOURCC_YUYV :          case FOURCC_YUYV :
141          case FOURCC_YUY2 :          case FOURCC_YUY2 :
142                  DEBUG("YUY2");                  DPRINTF("YUY2");
143                  return XVID_CSP_YUY2;                  return XVID_CSP_YUY2;
144    
145          case FOURCC_YVYU :          case FOURCC_YVYU :
146                  DEBUG("YVYU");                  DPRINTF("YVYU");
147                  return XVID_CSP_YVYU;                  return XVID_CSP_YVYU;
148    
149          case FOURCC_UYVY :          case FOURCC_UYVY :
150                  DEBUG("UYVY");                  DPRINTF("UYVY");
151                  return XVID_CSP_UYVY;                  return XVID_CSP_UYVY;
152    
153          default :          default :
154                  DEBUGFOURCC("unsupported colorspace", hdr->biCompression);                  DPRINTF("unsupported colorspace %c%c%c%c",
155                hdr->biCompression&0xff,
156                (hdr->biCompression>>8)&0xff,
157                (hdr->biCompression>>16)&0xff,
158                (hdr->biCompression>>24)&0xff);
159                  return XVID_CSP_NULL;                  return XVID_CSP_NULL;
160          }          }
161  }  }
# Line 161  Line 171 
171          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
172          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
173    
174        /* VFWEXT detection */
175        if (inhdr->biCompression == VFWEXT_FOURCC) {
176            return (ICM_USER+0x0fff);
177        }
178    
179          if (get_colorspace(inhdr) == XVID_CSP_NULL)          if (get_colorspace(inhdr) == XVID_CSP_NULL)
180          {          {
181                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 193  Line 208 
208    
209          if (lpbiOutput == NULL)          if (lpbiOutput == NULL)
210          {          {
211                  return sizeof(BITMAPV4HEADER);                  return sizeof(BITMAPINFOHEADER);
212          }          }
213    
214          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
# Line 229  Line 244 
244    
245  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)
246  {  {
247          // DEBUG2("frate fscale", codec->frate, codec->fscale);  #if 0
248        DPRINTF("%i %i", icf->lStartFrame, icf->lFrameCount);
249    #endif
250          codec->fincr = icf->dwScale;          codec->fincr = icf->dwScale;
251          codec->fbase = icf->dwRate;          codec->fbase = icf->dwRate;
252          return ICERR_OK;          return ICERR_OK;
253  }  }
254    
255    
256    const char type2char(int type)
257    {
258        if (type==XVID_TYPE_IVOP)
259            return 'I';
260        if (type==XVID_TYPE_PVOP)
261            return 'P';
262        if (type==XVID_TYPE_BVOP)
263            return 'B';
264        return 'S';
265    }
266    
267    int vfw_debug(void *handle,
268                             int opt,
269                             void *param1,
270                             void *param2)
271    {
272            switch (opt) {
273            case XVID_PLG_INFO:
274            case XVID_PLG_CREATE:
275            case XVID_PLG_DESTROY:
276            case XVID_PLG_BEFORE:
277                    return 0;
278    
279            case XVID_PLG_AFTER:
280                    {
281                            xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
282    
283                            DPRINTF("[%5i]   type=%c   Q:%2i   length:%6i",
284                                       data->frame_num,
285                       type2char(data->type),
286                       data->quant,
287                       data->length);
288                            return 0;
289                    }
290            }
291    
292            return XVID_ERR_FAIL;
293    }
294    
295    
296    
297  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
298  {  {
299          xvid_gbl_init_t init;          xvid_gbl_init_t init;
300          xvid_enc_create_t create;          xvid_enc_create_t create;
301          xvid_enc_rc_t rc;      xvid_enc_plugin_t plugins[3];
302      xvid_enc_plugin_t plugins[1];          xvid_plugin_single_t single;
303            xvid_plugin_2pass1_t pass1;
304            xvid_plugin_2pass2_t pass2;
305        int i;
306    
307          memset(&rc, 0, sizeof(rc));      /* destroy previously created codec */
308          rc.version = XVID_VERSION;          if(codec->ehandle) {
309                    xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
310                    codec->ehandle = NULL;
311            }
312    
313        memset(&init, 0, sizeof(init));
314            init.version = XVID_VERSION;
315            init.cpu_flags = codec->config.cpu;
316        init.debug = codec->config.debug;
317            xvid_global(0, XVID_GBL_INIT, &init, NULL);
318    
319            memset(&create, 0, sizeof(create));
320            create.version = XVID_VERSION;
321    
322        /* zones */
323        create.zones = malloc(sizeof(xvid_enc_zone_t) * codec->config.num_zones);
324        create.num_zones = codec->config.num_zones;
325        for (i=0; i < create.num_zones; i++) {
326            create.zones[i].frame = codec->config.zones[i].frame;
327            if (codec->config.zones[i].mode == RC_ZONE_QUANT) {
328                create.zones[i].mode = XVID_ZONE_QUANT;
329                create.zones[i].increment = codec->config.zones[i].quant;
330            }else{
331                create.zones[i].mode = XVID_ZONE_WEIGHT;
332                create.zones[i].increment = codec->config.zones[i].weight;
333            }
334            create.zones[i].base = 100;
335        }
336    
337        /* plugins */
338            create.plugins = plugins;
339          switch (codec->config.mode)          switch (codec->config.mode)
340          {          {
341          case DLG_MODE_CBR :          case RC_MODE_1PASS :
342                  //rc.type = XVID_RC_CBR;          memset(&single, 0, sizeof(single));
343                  rc.min_iquant = codec->config.min_iquant;              single.version = XVID_VERSION;
344                  rc.max_iquant = codec->config.max_iquant;          single.bitrate = codec->config.bitrate * CONFIG_KBPS;
345                  rc.min_pquant = codec->config.min_pquant;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
346                  rc.max_pquant = codec->config.max_pquant;                  single.averaging_period = codec->config.rc_averaging_period;
347                  rc.min_bquant = 0;      /* XXX: todo */                  single.buffer = codec->config.rc_buffer;
348                  rc.max_bquant = 0;      /* XXX: todo */          plugins[create.num_plugins].func = xvid_plugin_single;
349                  rc.data.cbr.bitrate = codec->config.rc_bitrate;          plugins[create.num_plugins].param = &single;
350          rc.data.cbr.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          create.num_plugins++;
                 rc.data.cbr.averaging_period = codec->config.rc_averaging_period;  
                 rc.data.cbr.buffer = codec->config.rc_buffer;  
351                  break;                  break;
352    
353          case DLG_MODE_VBR_QUAL :          case RC_MODE_2PASS1 :
354                  codec->config.fquant = 0;          memset(&pass1, 0, sizeof(pass1));
355                  //param.rc_bitrate = 0;              pass1.version = XVID_VERSION;
356                  break;          pass1.filename = codec->config.stats;
357    
358          case DLG_MODE_VBR_QUANT :          plugins[create.num_plugins].func = xvid_plugin_2pass1;
359                  codec->config.fquant = (float) codec->config.quant;          plugins[create.num_plugins].param = &pass1;
360                  //param.rc_bitrate = 0;          create.num_plugins++;
361                  break;                  break;
362    
363          case DLG_MODE_2PASS_1 :          case RC_MODE_2PASS2 :
364          case DLG_MODE_2PASS_2_INT :          memset(&pass2, 0, sizeof(pass2));
365          case DLG_MODE_2PASS_2_EXT :              pass2.version = XVID_VERSION;
366                  //param.rc_bitrate = 0;          if (codec->config.use_2pass_bitrate) {
367                  codec->twopass.max_framesize = (int)((double)codec->config.twopass_max_bitrate / 8.0 / ((double)codec->fbase / (double)codec->fincr));              pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
368            }else{
369                pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
370            }
371                    pass2.filename = codec->config.stats;
372    
373            pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
374            pass2.curve_compression_high = codec->config.curve_compression_high;
375            pass2.curve_compression_low = codec->config.curve_compression_low;
376                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
377            pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
378            pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
379                pass2.kfreduction = codec->config.kfreduction;
380            pass2.min_key_interval = codec->config.min_key_interval;
381            pass2.container_frame_overhead = 24;    /* AVI */
382    
383            plugins[create.num_plugins].func = xvid_plugin_2pass2;
384            plugins[create.num_plugins].param = &pass2;
385            create.num_plugins++;
386                  break;                  break;
387    
388          case DLG_MODE_NULL :          case RC_MODE_NULL :
389                  return ICERR_OK;                  return ICERR_OK;
390    
391          default :          default :
392                  break;                  break;
393          }          }
394    
395      /* destroy previously created codec */          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
396          if(codec->ehandle)          plugins[create.num_plugins].func = xvid_plugin_lumimasking;
397          {          plugins[create.num_plugins].param = NULL;
398                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);          create.num_plugins++;
                 codec->ehandle = NULL;  
399          }          }
400    
401      memset(&init, 0, sizeof(init));      plugins[create.num_plugins].func = vfw_debug;
402          init.version = XVID_VERSION;      plugins[create.num_plugins].param = NULL;
403          init.cpu_flags = codec->config.cpu;      create.num_plugins++;
         xvid_global(0, XVID_GBL_INIT, &init, NULL);  
404    
405          memset(&create, 0, sizeof(create));      create.profile = profiles[codec->config.profile].id;
         create.version = XVID_VERSION;  
406    
407          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
408          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
409          create.fincr = codec->fincr;          create.fincr = codec->fincr;
410          create.fbase = codec->fbase;          create.fbase = codec->fbase;
411    
412      create.plugins = plugins;      create.max_key_interval = codec->config.max_key_interval;
413      create.num_plugins = 0;  
414          if (codec->config.lum_masking) {      create.min_quant[0] = codec->config.min_iquant;
415          plugins[create.num_plugins].func = xvid_plugin_lumimasking;      create.max_quant[0] = codec->config.max_iquant;
416          plugins[create.num_plugins].param = NULL;      create.min_quant[1] = codec->config.min_pquant;
417          create.num_plugins++;      create.max_quant[1] = codec->config.max_pquant;
418      }      create.min_quant[2] = codec->config.min_bquant;
419        create.max_quant[2] = codec->config.max_bquant;
420    
421        if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
422            create.max_bframes = codec->config.max_bframes;
423                create.bquant_ratio = codec->config.bquant_ratio;
424                create.bquant_offset = codec->config.bquant_offset;
425    
426      if (codec->config.packed)      if (codec->config.packed)
427          create.global |= XVID_GLOBAL_PACKED;          create.global |= XVID_GLOBAL_PACKED;
428          if (codec->config.dx50bvop)  
429                if (codec->config.closed_gov)
430                  create.global |= XVID_GLOBAL_CLOSED_GOP;                  create.global |= XVID_GLOBAL_CLOSED_GOP;
431    
432      create.max_key_interval = codec->config.max_key_interval;      }
         /* XXX: param.min_quantizer = codec->config.min_pquant;  
         param.max_quantizer = codec->config.max_pquant; */  
433    
         create.max_bframes = codec->config.max_bframes;  
434          create.frame_drop_ratio = codec->config.frame_drop_ratio;          create.frame_drop_ratio = codec->config.frame_drop_ratio;
435    
         create.bquant_ratio = codec->config.bquant_ratio;  
         create.bquant_offset = codec->config.bquant_offset;  
   
436          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
437    
438          switch(xvid_encore(0, XVID_ENC_CREATE, &create, (codec->config.mode==DLG_MODE_CBR)?&rc:NULL ))          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))
439          {          {
440          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
441                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 350  Line 454 
454          codec->framenum = 0;          codec->framenum = 0;
455          codec->keyspacing = 0;          codec->keyspacing = 0;
456    
457          codec->twopass.hints = codec->twopass.stats1 = codec->twopass.stats2 = INVALID_HANDLE_VALUE;      if (codec->config.display_status) {
458          codec->twopass.hintstream = NULL;          status_destroy_always(&codec->status);
459            status_create(&codec->status, codec->fincr, codec->fbase);
460        }
461    
462          return ICERR_OK;          return ICERR_OK;
463  }  }
# Line 359  Line 465 
465    
466  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
467  {  {
468          if (codec->ehandle != NULL)      if (codec->ehandle != NULL) {
         {  
469                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
470                    codec->ehandle = NULL;
                 if (codec->twopass.hints != INVALID_HANDLE_VALUE)  
                 {  
                         CloseHandle(codec->twopass.hints);  
                 }  
                 if (codec->twopass.stats1 != INVALID_HANDLE_VALUE)  
                 {  
                         CloseHandle(codec->twopass.stats1);  
471                  }                  }
472                  if (codec->twopass.stats2 != INVALID_HANDLE_VALUE)  
473                  {      if (codec->config.display_status)
474                          CloseHandle(codec->twopass.stats2);          status_destroy(&codec->status);
475    
476            return ICERR_OK;
477                  }                  }
478                  if (codec->twopass.hintstream != NULL)  
479    
480    static void apply_zone_modifiers(xvid_enc_frame_t * frame, CONFIG * config, int framenum)
481                  {                  {
482                          free(codec->twopass.hintstream);      int i;
                 }  
483    
484                  codec->ehandle = NULL;      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
485        i--;
486    
487        frame->type = config->zones[i].type;
488    
489                  codec_2pass_finish(codec);      if (config->zones[i].greyscale) {
490            frame->vop_flags |= XVID_VOP_GREYSCALE;
491          }          }
492    
493          return ICERR_OK;      if (config->zones[i].chroma_opt) {
494            frame->vop_flags |= XVID_VOP_CHROMAOPT;
495        }
496    
497        if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
498            frame->bframe_threshold = config->zones[i].bvop_threshold;
499        }
500  }  }
501    
502    
503  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
504  {  {
505          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 396  Line 508 
508          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
509          int length;          int length;
510    
         // mpeg2avi yuv bug workaround (2 instances of CODEC)  
         if (codec->twopass.stats1 == INVALID_HANDLE_VALUE)  
         {  
                 if (codec_2pass_init(codec) == ICERR_ERROR)  
                 {  
                         return ICERR_ERROR;  
                 }  
         }  
   
511          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
512          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
513    
# Line 412  Line 515 
515    
516          /* vol stuff */          /* vol stuff */
517    
518          if (codec->config.quant_type != QUANT_MODE_H263)      if ((profiles[codec->config.profile].flags & PROFILE_MPEGQUANT) &&
519            codec->config.quant_type != QUANT_MODE_H263)
520          {          {
521                  frame.vol_flags |= XVID_VOL_MPEGQUANT;                  frame.vol_flags |= XVID_VOL_MPEGQUANT;
522    
523                  // 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)  
                 {  
524                          frame.quant_intra_matrix = codec->config.qmatrix_intra;                          frame.quant_intra_matrix = codec->config.qmatrix_intra;
525                          frame.quant_inter_matrix = codec->config.qmatrix_inter;                          frame.quant_inter_matrix = codec->config.qmatrix_inter;
526                  }                  }else{
                 else  
                 {  
527                          frame.quant_intra_matrix = NULL;                          frame.quant_intra_matrix = NULL;
528                          frame.quant_inter_matrix = NULL;                          frame.quant_inter_matrix = NULL;
529                  }                  }
530          }          }
531    
532          if (codec->config.reduced_resolution) {      if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&
533                codec->config.reduced_resolution) {
534                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;
535                  frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */                  frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */
536          }          }
537    
538          if (codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
539                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
540                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
541          }          }
542    
543          if (codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
544                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
545                    frame.motion |= XVID_ME_GME_REFINE;
546            }
547    
548          if (codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
549                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
550    
551      /* vop stuff */      /* vop stuff */
# Line 451  Line 553 
553          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
554          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
555    
556          if (codec->config.debug)          if (codec->config.vop_debug)
557                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
558    
559        if (codec->config.trellis_quant) {
560            frame.vop_flags |= XVID_VOP_TRELLISQUANT;
561        }
562    
563          if (codec->config.motion_search > 4)          if (codec->config.motion_search > 4)
564                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
565    
566          if (codec->config.chromame)          if (codec->config.chromame)
567                  frame.vop_flags |= XVID_ME_CHROMA16 + XVID_ME_CHROMA8;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
   
         if (codec->config.chroma_opt)  
                 frame.vop_flags |= XVID_VOP_CHROMAOPT;  
   
         check_greyscale_mode(&codec->config, &frame, codec->framenum);  
   
 /* XXX: hinted me  
   
 // fix 1pass modes/hinted MV by koepi  
         if (codec->config.hinted_me && (codec->config.mode == DLG_MODE_CBR || codec->config.mode == DLG_MODE_VBR_QUAL || codec->config.mode == DLG_MODE_VBR_QUANT))  
         {  
                 codec->config.hinted_me = 0;  
         }  
 // end of ugly hack  
   
         if (codec->config.hinted_me && codec->config.mode == DLG_MODE_2PASS_1)  
         {  
                 frame.hint.hintstream = codec->twopass.hintstream;  
                 frame.hint.rawhints = 0;  
                 frame.general |= XVID_HINTEDME_GET;  
         }  
         else if (codec->config.hinted_me && (codec->config.mode == DLG_MODE_2PASS_2_EXT || codec->config.mode == DLG_MODE_2PASS_2_INT))  
         {  
                 DWORD read;  
                 DWORD blocksize;  
   
                 frame.hint.hintstream = codec->twopass.hintstream;  
                 frame.hint.rawhints = 0;  
                 frame.general |= XVID_HINTEDME_SET;  
568    
569                  if (codec->twopass.hints == INVALID_HANDLE_VALUE)          if (codec->config.cartoon_mode) {
570                  {                  frame.vop_flags |= XVID_VOP_CARTOON;
571                          codec->twopass.hints = CreateFile(codec->config.hintfile, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0);  #if 0 /* Seems to cause crashes with P4 cpus */
572                          if (codec->twopass.hints == INVALID_HANDLE_VALUE)                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
573                          {  #endif
                                 DEBUGERR("couldn't open hints file");  
                                 return ICERR_ERROR;  
574                          }                          }
                 }  
                 if (!ReadFile(codec->twopass.hints, &blocksize, sizeof(DWORD), &read, 0) || read != sizeof(DWORD) ||  
                         !ReadFile(codec->twopass.hints, frame.hint.hintstream, blocksize, &read, 0) || read != blocksize)  
                 {  
                         DEBUGERR("couldn't read from hints file");  
                         return ICERR_ERROR;  
                 }  
         } */  
575    
576          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
577    
578          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
579          {          {
580          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
581                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
582                  break;                  break;
583    
584          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
585                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
586                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
587                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
588                  break;                  break;
589    
590          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
591                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
592                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
593                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
594                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
595                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
596                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
597                  break;                  break;
598    
599          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
600                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
601                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
602                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
603                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
604                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
605                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
606                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
607                  break;                  break;
608    
609          default :          default :
# Line 555  Line 622 
622          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
623          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
624    
625          switch (codec->config.mode)      frame.quant = 0;
         {  
         case DLG_MODE_CBR :  
                 frame.quant = 0;  /* use xvidcore cbr rate control */  
                 break;  
626    
627          case DLG_MODE_VBR_QUAL :      if (codec->config.mode == RC_MODE_NULL) {
         case DLG_MODE_VBR_QUANT :  
         case DLG_MODE_2PASS_1 :  
                 if (codec_get_quant(codec, &frame) == ICERR_ERROR)  
                 {  
                         return ICERR_ERROR;  
                 }  
                 break;  
   
         case DLG_MODE_2PASS_2_EXT :  
         case DLG_MODE_2PASS_2_INT :  
                 if (codec_2pass_get_quant(codec, &frame) == ICERR_ERROR)  
                 {  
                         return ICERR_ERROR;  
                 }  
                 if (codec->config.dummy2pass)  
                 {  
                         outhdr->biSizeImage = codec->twopass.bytes2;  
                         *icc->lpdwFlags = (codec->twopass.nns1.quant & NNSTATS_KEYFRAME) ? AVIIF_KEYFRAME : 0;  
                         return ICERR_OK;  
                 }  
                 break;  
   
         case DLG_MODE_NULL :  
628                  outhdr->biSizeImage = 0;                  outhdr->biSizeImage = 0;
629                  *icc->lpdwFlags = AVIIF_KEYFRAME;                  *icc->lpdwFlags = AVIIF_KEYFRAME;
630                  return ICERR_OK;                  return ICERR_OK;
   
         default :  
                 DEBUGERR("Invalid encoding mode");  
                 return ICERR_ERROR;  
631          }          }
632    
   
633          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
634          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
635          {          {
# Line 602  Line 637 
637          }          }
638          else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)          else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)
639          {          {
640                  DEBUG("current frame forced to p-frame");                  DPRINTF("current frame forced to p-frame");
641                  frame.type = XVID_TYPE_PVOP;                  frame.type = XVID_TYPE_PVOP;
642          }          }
643    
644        /* frame-based stuff */
645        apply_zone_modifiers(&frame, &codec->config, codec->framenum);
646    
647        /* call encore */
648    
649          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
650          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
651    
# Line 625  Line 665 
665                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
666          }          }
667    
668          {  /* XXX: debug text */      if (codec->config.display_status && stats.type>0) {
669                  char tmp[100];          status_update(&codec->status, stats.type, stats.length, stats.quant);
                 wsprintf(tmp, " {type=%i len=%i} length=%i", stats.type, stats.length, length);  
                 OutputDebugString(tmp);  
670          }          }
671    
672            DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
673    
674      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
675          {          {
676                  *icc->lpdwFlags = 0;                  *icc->lpdwFlags = 0;
# Line 650  Line 690 
690    
691          outhdr->biSizeImage = length;          outhdr->biSizeImage = length;
692    
693          if (codec->config.mode == DLG_MODE_2PASS_1 && codec->config.discard1pass)          if (codec->config.mode == RC_MODE_2PASS1 && codec->config.discard1pass)
694              {              {
695                      outhdr->biSizeImage = 0;                      outhdr->biSizeImage = 0;
696              }              }
   
         /* XXX: hinted me  
             if (frame.general & XVID_HINTEDME_GET)  
         {  
                 DWORD wrote;  
                 DWORD blocksize = frame.hint.hintlength;  
   
                 if (codec->twopass.hints == INVALID_HANDLE_VALUE)  
                 {  
                         codec->twopass.hints = CreateFile(codec->config.hintfile, GENERIC_WRITE, 0, 0, CREATE_ALWAYS, 0, 0);  
                             if (codec->twopass.hints    == INVALID_HANDLE_VALUE)  
                         {  
                                 DEBUGERR("couldn't create hints file");  
                                 return ICERR_ERROR;  
                         }  
                 }  
                     if (!WriteFile(codec->twopass.hints, &frame.hint.hintlength, sizeof(int), &wrote, 0) || wrote != sizeof(int) ||  
                             !WriteFile(codec->twopass.hints, frame.hint.hintstream, blocksize, &wrote, 0) || wrote != blocksize)  
                 {  
                         DEBUGERR("couldn't write to hints file");  
                         return ICERR_ERROR;  
                 }  
             }  
         */  
   
         if (stats.type > 0)  
             {  
                   codec_2pass_update(codec, &stats);  
             }  
697      }      }
698    
699          ++codec->framenum;          codec->framenum++;
700          ++codec->keyspacing;          codec->keyspacing++;
701    
702          return ICERR_OK;          return ICERR_OK;
703  }  }
# Line 741  Line 752 
752    
753          if (get_colorspace(inhdr) != XVID_CSP_NULL) {          if (get_colorspace(inhdr) != XVID_CSP_NULL) {
754                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
755                  // XXX: should we set outhdr->biSize ??                  /* XXX: should we set outhdr->biSize ?? */
756                  return ICERR_OK;                  return ICERR_OK;
757          }          }
758          /* --- yv12 --- */          /* --- yv12 --- */
# Line 826  Line 837 
837          {          {
838                  xvid_gbl_convert_t convert;                  xvid_gbl_convert_t convert;
839    
840                  DEBUGFOURCC("input", icd->lpbiInput->biCompression);                  DPRINTF("input=%c%c%c%c output=%c%c%c%c",
841                  DEBUGFOURCC("output", icd->lpbiOutput->biCompression);              icd->lpbiInput->biCompression&0xff,
842                (icd->lpbiInput->biCompression>>8)&0xff,
843                (icd->lpbiInput->biCompression>>16)&0xff,
844                (icd->lpbiInput->biCompression>>24)&0xff,
845                icd->lpbiOutput->biCompression&0xff,
846                (icd->lpbiOutput->biCompression>>8)&0xff,
847                (icd->lpbiOutput->biCompression>>16)&0xff,
848                (icd->lpbiOutput->biCompression>>24)&0xff);
849    
850                  memset(&convert, 0, sizeof(convert));                  memset(&convert, 0, sizeof(convert));
851                  convert.version = XVID_VERSION;                  convert.version = XVID_VERSION;
# Line 897  Line 915 
915          return ICERR_OK;          return ICERR_OK;
916  }  }
917    
 int codec_get_quant(CODEC* codec, xvid_enc_frame_t* frame)  
 {  
         switch (codec->config.mode)  
         {  
         case DLG_MODE_VBR_QUAL :  
                 if (codec_is_in_credits(&codec->config, codec->framenum))  
                 {  
 // added by koepi for credits greyscale  
   
                         check_greyscale_mode(&codec->config, frame, codec->framenum);  
   
 // end of koepi's addition  
   
                         switch (codec->config.credits_mode)  
                         {  
                         case CREDITS_MODE_RATE :  
                                 frame->quant = codec_get_vbr_quant(&codec->config, codec->config.quality * codec->config.credits_rate / 100);  
                                 break;  
   
                         case CREDITS_MODE_QUANT :  
                                 frame->quant = codec->config.credits_quant_p;  
                                 break;  
   
                         default :  
                                 DEBUGERR("Can't use credits size mode in quality mode");  
                                 return ICERR_ERROR;  
                         }  
                 }  
                 else  
                 {  
 // added by koepi for credits greyscale  
   
                         check_greyscale_mode(&codec->config, frame, codec->framenum);  
   
 // end of koepi's addition  
   
                         frame->quant = codec_get_vbr_quant(&codec->config, codec->config.quality);  
                 }  
                 return ICERR_OK;  
   
         case DLG_MODE_VBR_QUANT :  
                 if (codec_is_in_credits(&codec->config, codec->framenum))  
                 {  
 // added by koepi for credits greyscale  
   
                         check_greyscale_mode(&codec->config, frame, codec->framenum);  
   
 // end of koepi's addition  
   
                         switch (codec->config.credits_mode)  
                         {  
                         case CREDITS_MODE_RATE :  
                                 frame->quant =  
                                         codec->config.max_pquant -  
                                         ((codec->config.max_pquant - codec->config.quant) * codec->config.credits_rate / 100);  
                                 break;  
   
                         case CREDITS_MODE_QUANT :  
                                 frame->quant = codec->config.credits_quant_p;  
                                 break;  
   
                         default :  
                                 DEBUGERR("Can't use credits size mode in quantizer mode");  
                                 return ICERR_ERROR;  
                         }  
                 }  
                 else  
                 {  
 // added by koepi for credits greyscale  
   
                         check_greyscale_mode(&codec->config, frame, codec->framenum);  
   
 // end of koepi's addition  
   
                         frame->quant = codec->config.quant;  
                 }  
                 return ICERR_OK;  
   
         case DLG_MODE_2PASS_1 :  
 // added by koepi for credits greyscale  
   
                 check_greyscale_mode(&codec->config, frame, codec->framenum);  
   
 // end of koepi's addition  
   
                 if (codec->config.credits_mode == CREDITS_MODE_QUANT)  
                 {  
                         if (codec_is_in_credits(&codec->config, codec->framenum))  
                         {  
                                 frame->quant = codec->config.credits_quant_p;  
                         }  
                         else  
                         {  
                                 frame->quant = 2;  
                         }  
                 }  
                 else  
                 {  
                         frame->quant = 2;  
                 }  
                 return ICERR_OK;  
   
         default:  
                 DEBUGERR("get quant: invalid mode");  
                 return ICERR_ERROR;  
         }  
 }  
   
   
 int codec_is_in_credits(CONFIG* config, int framenum)  
 {  
         if (config->credits_start)  
         {  
                 if (framenum >= config->credits_start_begin &&  
                         framenum <= config->credits_start_end)  
                 {  
                         return CREDITS_START;  
                 }  
         }  
   
         if (config->credits_end)  
         {  
                 if (framenum >= config->credits_end_begin &&  
                         framenum <= config->credits_end_end)  
                 {  
                         return CREDITS_END;  
                 }  
         }  
   
         return 0;  
 }  
   
   
 int codec_get_vbr_quant(CONFIG* config, int quality)  
 {  
         static float fquant_running = 0;  
         static int my_quality = -1;  
         int     quant;  
   
         // if quality changes, recalculate fquant (credits)  
         if (quality != my_quality)  
         {  
                 config->fquant = 0;  
         }  
   
         my_quality = quality;  
   
         // desired quantiser = (maxQ-minQ)/100 * (100-qual) + minQ  
         if (!config->fquant)  
         {  
                 config->fquant =  
                         ((float) (config->max_pquant - config->min_pquant) / 100) *  
                         (100 - quality) +  
                         (float) config->min_pquant;  
   
                 fquant_running = config->fquant;  
         }  
   
         if (fquant_running < config->min_pquant)  
         {  
                 fquant_running = (float) config->min_pquant;  
         }  
         else if(fquant_running > config->max_pquant)  
         {  
                 fquant_running = (float) config->max_pquant;  
         }  
   
         quant = (int) fquant_running;  
   
         // add error between fquant and quant to fquant_running  
         fquant_running += config->fquant - quant;  
   
         return quant;  
 }  
   
 // added by koepi for credits greyscale  
   
 int check_greyscale_mode(CONFIG* config, xvid_enc_frame_t* frame, int framenum)  
   
 {  
   
         if ((codec_is_in_credits(config, framenum)) && (config->mode!=DLG_MODE_CBR))  
   
         {  
   
                 if (config->credits_greyscale)  
   
                 {  
   
                         if ((frame->vop_flags && XVID_VOP_GREYSCALE))  // use only if not already in greyscale  
   
                                 frame->vop_flags |= XVID_VOP_GREYSCALE;  
   
                 } else {  
   
                         if (!(frame->vop_flags && XVID_VOP_GREYSCALE))  // if movie is in greyscale, switch back  
   
                                 frame->vop_flags |= XVID_VOP_GREYSCALE;  
   
                 }  
   
         } else {  
   
                 if (config->greyscale)  
   
                 {  
   
                         if ((frame->vop_flags && XVID_VOP_GREYSCALE))  // use only if not already in greyscale  
   
                                 frame->vop_flags |= XVID_VOP_GREYSCALE;  
   
                 } else {  
   
                         if (!(frame->vop_flags && XVID_VOP_GREYSCALE))  // if credits is in greyscale, switch back  
   
                                 frame->vop_flags |= XVID_VOP_GREYSCALE;  
   
                 }  
   
         }  
   
         return 0;  
   
 }  
   
 // end of koepi's addition  
   

Legend:
Removed from v.949  
changed lines
  Added in v.1202

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