[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 1329, Sat Jan 24 13:36:00 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>
56    #include "debug.h"
57  #include "codec.h"  #include "codec.h"
58  #include "2pass.h"  #include "status.h"
59    
60  int pmvfast_presets[7] = {  
61    static const int pmvfast_presets[7] = {
62          0, 0, 0, 0,          0, 0, 0, 0,
63          0 | XVID_ME_HALFPELREFINE16 | 0,          0 | XVID_ME_HALFPELREFINE16 | 0,
64          0 | XVID_ME_HALFPELREFINE16 | 0 |          0 | XVID_ME_HALFPELREFINE16 | 0 |
# Line 61  Line 66 
66          XVID_ME_HALFPELREFINE8 | 0 | XVID_ME_USESQUARES16          XVID_ME_HALFPELREFINE8 | 0 | XVID_ME_USESQUARES16
67  };  };
68    
69    
70    
71  /*      return xvid compatbile colorspace,  /*      return xvid compatbile colorspace,
72          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
73  */  */
# Line 75  Line 82 
82          case BI_RGB :          case BI_RGB :
83                  if (hdr->biBitCount == 16)                  if (hdr->biBitCount == 16)
84                  {                  {
85                          DEBUG("RGB16 (RGB555)");                          DPRINTF("RGB16 (RGB555)");
86                          return rgb_flip | XVID_CSP_RGB555;                          return rgb_flip | XVID_CSP_RGB555;
87                  }                  }
88                  if (hdr->biBitCount == 24)                  if (hdr->biBitCount == 24)
89                  {                  {
90                          DEBUG("RGB24");                          DPRINTF("RGB24");
91                          return rgb_flip | XVID_CSP_BGR;                          return rgb_flip | XVID_CSP_BGR;
92                  }                  }
93                  if (hdr->biBitCount == 32)                  if (hdr->biBitCount == 32)
94                  {                  {
95                          DEBUG("RGB32");                          DPRINTF("RGB32");
96                          return rgb_flip | XVID_CSP_BGRA;                          return rgb_flip | XVID_CSP_BGRA;
97                  }                  }
98    
99                  DEBUG1("unsupported BI_RGB biBitCount", hdr->biBitCount);                  DPRINTF("unsupported BI_RGB biBitCount=%i", hdr->biBitCount);
100                  return XVID_CSP_NULL;                  return XVID_CSP_NULL;
101    
102          case BI_BITFIELDS :          case BI_BITFIELDS :
# Line 102  Line 109 
109                                  hdr4->bV4GreenMask == 0x3e0 &&                                  hdr4->bV4GreenMask == 0x3e0 &&
110                                  hdr4->bV4BlueMask == 0x1f)                                  hdr4->bV4BlueMask == 0x1f)
111                          {                          {
112                                  DEBUG("RGB555");                                  DPRINTF("RGB555");
113                                  return rgb_flip | XVID_CSP_RGB555;                                  return rgb_flip | XVID_CSP_RGB555;
114                          }                          }
115    
# Line 111  Line 118 
118                                  hdr4->bV4GreenMask == 0x7e0 &&                                  hdr4->bV4GreenMask == 0x7e0 &&
119                                  hdr4->bV4BlueMask == 0x1f)                                  hdr4->bV4BlueMask == 0x1f)
120                          {                          {
121                                  DEBUG("RGB565");                                  DPRINTF("RGB565");
122                                  return rgb_flip | XVID_CSP_RGB565;                                  return rgb_flip | XVID_CSP_RGB565;
123                          }                          }
124    
125                          DEBUG("unsupported BI_BITFIELDS mode");                          DPRINTF("unsupported BI_BITFIELDS mode");
126                          return XVID_CSP_NULL;                          return XVID_CSP_NULL;
127                  }                  }
128    
129                  DEBUG("unsupported BI_BITFIELDS/BITMAPHEADER combination");                  DPRINTF("unsupported BI_BITFIELDS/BITMAPHEADER combination");
130                  return XVID_CSP_NULL;                  return XVID_CSP_NULL;
131    
132          case FOURCC_I420 :          case FOURCC_I420 :
133          case FOURCC_IYUV :          case FOURCC_IYUV :
134                  DEBUG("IYUY");                  DPRINTF("IYUY");
135                  return XVID_CSP_I420;                  return XVID_CSP_I420;
136    
137          case FOURCC_YV12 :          case FOURCC_YV12 :
138                  DEBUG("YV12");                  DPRINTF("YV12");
139                  return XVID_CSP_YV12;                  return XVID_CSP_YV12;
140    
141          case FOURCC_YUYV :          case FOURCC_YUYV :
142          case FOURCC_YUY2 :          case FOURCC_YUY2 :
143                  DEBUG("YUY2");                  DPRINTF("YUY2");
144                  return XVID_CSP_YUY2;                  return XVID_CSP_YUY2;
145    
146          case FOURCC_YVYU :          case FOURCC_YVYU :
147                  DEBUG("YVYU");                  DPRINTF("YVYU");
148                  return XVID_CSP_YVYU;                  return XVID_CSP_YVYU;
149    
150          case FOURCC_UYVY :          case FOURCC_UYVY :
151                  DEBUG("UYVY");                  DPRINTF("UYVY");
152                  return XVID_CSP_UYVY;                  return XVID_CSP_UYVY;
153    
154          default :          default :
155                  DEBUGFOURCC("unsupported colorspace", hdr->biCompression);                  DPRINTF("unsupported colorspace %c%c%c%c",
156                            hdr->biCompression&0xff,
157                            (hdr->biCompression>>8)&0xff,
158                            (hdr->biCompression>>16)&0xff,
159                            (hdr->biCompression>>24)&0xff);
160                  return XVID_CSP_NULL;                  return XVID_CSP_NULL;
161          }          }
162  }  }
# Line 161  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 193  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 229  Line 245 
245    
246  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)  LRESULT compress_frames_info(CODEC * codec, ICCOMPRESSFRAMES * icf)
247  {  {
248          // DEBUG2("frate fscale", codec->frate, codec->fscale);  #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;
254  }  }
255    
256    
257    const char type2char(int type)
258    {
259            if (type==XVID_TYPE_IVOP)
260                    return 'I';
261            if (type==XVID_TYPE_PVOP)
262                    return 'P';
263            if (type==XVID_TYPE_BVOP)
264                    return 'B';
265            return 'S';
266    }
267    
268    int vfw_debug(void *handle,
269                             int opt,
270                             void *param1,
271                             void *param2)
272    {
273            switch (opt) {
274            case XVID_PLG_CREATE:
275                    *((void**)param2) = NULL;
276            case XVID_PLG_INFO:
277            case XVID_PLG_DESTROY:
278            case XVID_PLG_BEFORE:
279                    return 0;
280    
281            case XVID_PLG_AFTER:
282                    {
283                            xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
284    
285                            /* 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,
291                                            type2char(data->type),
292                                            data->quant,
293                                            data->length);
294                            OutputDebugString(buf);
295    
296                            return 0;
297                    }
298            }
299    
300            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!", MB_ICONEXCLAMATION|MB_OK);
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    void
350    sort_zones(zone_t * zones, int zone_num, int * sel);
351    
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    
384  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
385  {  {
386          xvid_gbl_init_t init;          xvid_gbl_init_t init;
387          xvid_enc_create_t create;          xvid_enc_create_t create;
388          xvid_enc_rc_t rc;          xvid_enc_plugin_t plugins[3];
389      xvid_enc_plugin_t plugins[1];          xvid_plugin_single_t single;
390            xvid_plugin_2pass1_t pass1;
391            xvid_plugin_2pass2_t pass2;
392            int i;
393            HANDLE hFile;
394    
395            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
396            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
397    
398            if (init_dll() != 0) return ICERR_ERROR;
399            /* destroy previously created codec */
400            if(codec->ehandle) {
401                    xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
402                    codec->ehandle = NULL;
403            }
404    
405          memset(&rc, 0, sizeof(rc));          memset(&init, 0, sizeof(init));
406          rc.version = XVID_VERSION;          init.version = XVID_VERSION;
407            init.cpu_flags = codec->config.cpu;
408            init.debug = codec->config.debug;
409            xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
410    
411            memset(&create, 0, sizeof(create));
412            create.version = XVID_VERSION;
413    
414            /* plugins */
415            create.plugins = plugins;
416          switch (codec->config.mode)          switch (codec->config.mode)
417          {          {
418          case DLG_MODE_CBR :          case RC_MODE_1PASS :
419                  //rc.type = XVID_RC_CBR;                  memset(&single, 0, sizeof(single));
420                  rc.min_iquant = codec->config.min_iquant;                  single.version = XVID_VERSION;
421                  rc.max_iquant = codec->config.max_iquant;                  single.bitrate = codec->config.bitrate * CONFIG_KBPS;
422                  rc.min_pquant = codec->config.min_pquant;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
423                  rc.max_pquant = codec->config.max_pquant;                  single.averaging_period = codec->config.rc_averaging_period;
424                  rc.min_bquant = 0;      /* XXX: todo */                  single.buffer = codec->config.rc_buffer;
425                  rc.max_bquant = 0;      /* XXX: todo */                  plugins[create.num_plugins].func = xvid_plugin_single_func;
426                  rc.data.cbr.bitrate = codec->config.rc_bitrate;                  plugins[create.num_plugins].param = &single;
427          rc.data.cbr.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  create.num_plugins++;
428                  rc.data.cbr.averaging_period = codec->config.rc_averaging_period;                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
429                  rc.data.cbr.buffer = codec->config.rc_buffer;                          prepare_cquant_zones(&tmpCfg);
430                  break;                  break;
431    
432          case DLG_MODE_VBR_QUAL :          case RC_MODE_2PASS1 :
433                  codec->config.fquant = 0;                  memset(&pass1, 0, sizeof(pass1));
434                  //param.rc_bitrate = 0;                  pass1.version = XVID_VERSION;
435                  break;                  pass1.filename = codec->config.stats;
436    
437          case DLG_MODE_VBR_QUANT :                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
438                  codec->config.fquant = (float) codec->config.quant;                  plugins[create.num_plugins].param = &pass1;
439                  //param.rc_bitrate = 0;                  create.num_plugins++;
440                  break;                  break;
441    
442          case DLG_MODE_2PASS_1 :          case RC_MODE_2PASS2 :
443          case DLG_MODE_2PASS_2_INT :                  memset(&pass2, 0, sizeof(pass2));
444          case DLG_MODE_2PASS_2_EXT :                  pass2.version = XVID_VERSION;
445                  //param.rc_bitrate = 0;                  if (codec->config.use_2pass_bitrate) {
446                  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;
447                    } else {
448                            pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
449                    }
450                    pass2.filename = codec->config.stats;
451    
452                    hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
453                    if (hFile == INVALID_HANDLE_VALUE)
454                    {
455                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
456                            return XVID_ERR_FAIL;
457                    } else
458                    {
459                            CloseHandle(hFile);
460                    }
461    
462                    pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
463                    pass2.curve_compression_high = codec->config.curve_compression_high;
464                    pass2.curve_compression_low = codec->config.curve_compression_low;
465                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
466                    pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
467                    pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
468                    pass2.kfreduction = codec->config.kfreduction;
469                    pass2.kfthreshold = codec->config.kfthreshold;
470                    pass2.container_frame_overhead = 24;    /* AVI */
471    
472                    plugins[create.num_plugins].func = xvid_plugin_2pass2_func;
473                    plugins[create.num_plugins].param = &pass2;
474                    create.num_plugins++;
475                  break;                  break;
476    
477          case DLG_MODE_NULL :          case RC_MODE_NULL :
478                  return ICERR_OK;                  return ICERR_OK;
479    
480          default :          default :
481                  break;                  break;
482          }          }
483    
484      /* destroy previously created codec */          /* zones  - copy from tmpCfg in case we automatically altered them above */
485          if(codec->ehandle)          create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
486          {          create.num_zones = tmpCfg.num_zones;
487                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);          for (i=0; i < create.num_zones; i++) {
488                  codec->ehandle = NULL;                  create.zones[i].frame = tmpCfg.zones[i].frame;
489                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
490                            create.zones[i].mode = XVID_ZONE_QUANT;
491                            create.zones[i].increment = tmpCfg.zones[i].quant;
492                    }else{
493                            create.zones[i].mode = XVID_ZONE_WEIGHT;
494                            create.zones[i].increment = tmpCfg.zones[i].weight;
495                    }
496                    create.zones[i].base = 100;
497          }          }
498    
499      memset(&init, 0, sizeof(init));          /* lumimasking plugin */
500          init.version = XVID_VERSION;          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
501          init.cpu_flags = codec->config.cpu;                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
502          xvid_global(0, XVID_GBL_INIT, &init, NULL);                  plugins[create.num_plugins].param = NULL;
503                    create.num_plugins++;
504            }
505    
506          memset(&create, 0, sizeof(create));          plugins[create.num_plugins].func = vfw_debug;
507          create.version = XVID_VERSION;          plugins[create.num_plugins].param = NULL;
508            create.num_plugins++;
509    
510            create.profile = profiles[codec->config.profile].id;
511    
512          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
513          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
514          create.fincr = codec->fincr;          create.fincr = codec->fincr;
515          create.fbase = codec->fbase;          create.fbase = codec->fbase;
516    
517      create.plugins = plugins;          create.max_key_interval = codec->config.max_key_interval;
518      create.num_plugins = 0;  
519          if (codec->config.lum_masking) {          create.min_quant[0] = codec->config.min_iquant;
520          plugins[create.num_plugins].func = xvid_plugin_lumimasking;          create.max_quant[0] = codec->config.max_iquant;
521          plugins[create.num_plugins].param = NULL;          create.min_quant[1] = codec->config.min_pquant;
522          create.num_plugins++;          create.max_quant[1] = codec->config.max_pquant;
523      }          create.min_quant[2] = codec->config.min_bquant;
524            create.max_quant[2] = codec->config.max_bquant;
525    
526            if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
527                    create.max_bframes = codec->config.max_bframes;
528                    create.bquant_ratio = codec->config.bquant_ratio;
529                    create.bquant_offset = codec->config.bquant_offset;
530    
531      if (codec->config.packed)      if (codec->config.packed)
532          create.global |= XVID_GLOBAL_PACKED;          create.global |= XVID_GLOBAL_PACKED;
533          if (codec->config.dx50bvop)  
534                    if (codec->config.closed_gov)
535                  create.global |= XVID_GLOBAL_CLOSED_GOP;                  create.global |= XVID_GLOBAL_CLOSED_GOP;
536    
537      create.max_key_interval = codec->config.max_key_interval;          }
         /* XXX: param.min_quantizer = codec->config.min_pquant;  
         param.max_quantizer = codec->config.max_pquant; */  
538    
         create.max_bframes = codec->config.max_bframes;  
539          create.frame_drop_ratio = codec->config.frame_drop_ratio;          create.frame_drop_ratio = codec->config.frame_drop_ratio;
540    
         create.bquant_ratio = codec->config.bquant_ratio;  
         create.bquant_offset = codec->config.bquant_offset;  
   
541          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
542    
543          switch(xvid_encore(0, XVID_ENC_CREATE, &create, (codec->config.mode==DLG_MODE_CBR)?&rc:NULL ))          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
544          {          {
545          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
546                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 350  Line 559 
559          codec->framenum = 0;          codec->framenum = 0;
560          codec->keyspacing = 0;          codec->keyspacing = 0;
561    
562          codec->twopass.hints = codec->twopass.stats1 = codec->twopass.stats2 = INVALID_HANDLE_VALUE;          if (codec->config.display_status) {
563          codec->twopass.hintstream = NULL;                  status_destroy_always(&codec->status);
564                    status_create(&codec->status, codec->fincr, codec->fbase);
565            }
566    
567          return ICERR_OK;          return ICERR_OK;
568  }  }
# Line 359  Line 570 
570    
571  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
572  {  {
573          if (codec->ehandle != NULL)          if (m_hdll != NULL) {
574          {                  if (codec->ehandle != NULL) {
575                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
576                            codec->ehandle = NULL;
                 if (codec->twopass.hints != INVALID_HANDLE_VALUE)  
                 {  
                         CloseHandle(codec->twopass.hints);  
577                  }                  }
578                  if (codec->twopass.stats1 != INVALID_HANDLE_VALUE)                  FreeLibrary(m_hdll);
579                  {                  m_hdll = NULL;
                         CloseHandle(codec->twopass.stats1);  
580                  }                  }
581                  if (codec->twopass.stats2 != INVALID_HANDLE_VALUE)  
582                  {          if (codec->config.display_status)
583                          CloseHandle(codec->twopass.stats2);                  status_destroy(&codec->status);
584    
585            return ICERR_OK;
586                  }                  }
587                  if (codec->twopass.hintstream != NULL)  
588    
589    static void apply_zone_modifiers(xvid_enc_frame_t * frame, CONFIG * config, int framenum)
590                  {                  {
591                          free(codec->twopass.hintstream);          int i;
                 }  
592    
593                  codec->ehandle = NULL;          for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
594    
595                  codec_2pass_finish(codec);          if (--i < 0) return; /* there are no zones, or we're before the first zone */
596    
597            if (framenum == config->zones[i].frame)
598                    frame->type = config->zones[i].type;
599    
600            if (config->zones[i].greyscale) {
601                    frame->vop_flags |= XVID_VOP_GREYSCALE;
602          }          }
603    
604          return ICERR_OK;          if (config->zones[i].chroma_opt) {
605                    frame->vop_flags |= XVID_VOP_CHROMAOPT;
606            }
607    
608            if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
609                    frame->bframe_threshold = config->zones[i].bvop_threshold;
610            }
611  }  }
612    
613    
614  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
615  {  {
616          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 396  Line 619 
619          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
620          int length;          int length;
621    
         // 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;  
                 }  
         }  
   
622          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
623          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
624    
# Line 412  Line 626 
626    
627          /* vol stuff */          /* vol stuff */
628    
629          if (codec->config.quant_type != QUANT_MODE_H263)          if ((profiles[codec->config.profile].flags & PROFILE_MPEGQUANT) &&
630                    codec->config.quant_type != QUANT_MODE_H263)
631          {          {
632                  frame.vol_flags |= XVID_VOL_MPEGQUANT;                  frame.vol_flags |= XVID_VOL_MPEGQUANT;
633    
634                  // 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)  
                 {  
635                          frame.quant_intra_matrix = codec->config.qmatrix_intra;                          frame.quant_intra_matrix = codec->config.qmatrix_intra;
636                          frame.quant_inter_matrix = codec->config.qmatrix_inter;                          frame.quant_inter_matrix = codec->config.qmatrix_inter;
637                  }                  }else{
                 else  
                 {  
638                          frame.quant_intra_matrix = NULL;                          frame.quant_intra_matrix = NULL;
639                          frame.quant_inter_matrix = NULL;                          frame.quant_inter_matrix = NULL;
640                  }                  }
641          }          }
642    
643          if (codec->config.reduced_resolution) {          if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&
644                    codec->config.reduced_resolution) {
645                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;
646                  frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */                  frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */
647          }          }
648    
649          if (codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
650                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
651                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
652          }          }
653    
654          if (codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
655                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
656                    frame.motion |= XVID_ME_GME_REFINE;
657            }
658    
659          if (codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
660                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
661    
662            if (codec->config.ar_mode == 0) { /* PAR */
663                    if (codec->config.display_aspect_ratio != 5) {
664                            frame.par = codec->config.display_aspect_ratio + 1;
665                    } else {
666                            frame.par = XVID_PAR_EXT;
667                            frame.par_width = codec->config.par_x;
668                            frame.par_height= codec->config.par_y;
669                    }
670            } else { /* AR */
671                    /* custom pixel aspect ratio -> calculated from DAR */
672                    frame.par = XVID_PAR_EXT;
673                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
674                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
675            }
676    
677      /* vop stuff */      /* vop stuff */
678    
679          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
680          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
681    
682          if (codec->config.debug)          if (codec->config.vop_debug)
683                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
684    
685            if (codec->config.trellis_quant) {
686                    frame.vop_flags |= XVID_VOP_TRELLISQUANT;
687            }
688    
689          if (codec->config.motion_search > 4)          if (codec->config.motion_search > 4)
690                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
691    
692          if (codec->config.chromame)          if (codec->config.chromame)
693                  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);  
694    
695  /* XXX: hinted me          if (codec->config.cartoon_mode) {
696                    frame.vop_flags |= XVID_VOP_CARTOON;
697  // fix 1pass modes/hinted MV by koepi                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
         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;  
698          }          }
         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;  
699    
700                  frame.hint.hintstream = codec->twopass.hintstream;          if (codec->config.turbo)
701                  frame.hint.rawhints = 0;                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
702                  frame.general |= XVID_HINTEDME_SET;                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
703                                                    XVID_ME_BFRAME_EARLYSTOP;
                 if (codec->twopass.hints == INVALID_HANDLE_VALUE)  
                 {  
                         codec->twopass.hints = CreateFile(codec->config.hintfile, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0);  
                         if (codec->twopass.hints == INVALID_HANDLE_VALUE)  
                         {  
                                 DEBUGERR("couldn't open hints file");  
                                 return ICERR_ERROR;  
                         }  
                 }  
                 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;  
                 }  
         } */  
704    
705          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
706    
707          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
708          {          {
709          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
710                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
711                  break;                  break;
712    
713          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
714                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
715                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
716                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
717                  break;                  break;
718    
719          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
720                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
721                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
722                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
723                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
724                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
725                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
726                  break;                  break;
727    
728          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
729                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
730                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
731                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
732                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
733                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
734                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
735                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
736                  break;                  break;
737    
738          default :          default :
# Line 555  Line 751 
751          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
752          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
753    
754          switch (codec->config.mode)          frame.quant = 0;
         {  
         case DLG_MODE_CBR :  
                 frame.quant = 0;  /* use xvidcore cbr rate control */  
                 break;  
   
         case DLG_MODE_VBR_QUAL :  
         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;  
755    
756          case DLG_MODE_NULL :          if (codec->config.mode == RC_MODE_NULL) {
757                  outhdr->biSizeImage = 0;                  outhdr->biSizeImage = 0;
758                  *icc->lpdwFlags = AVIIF_KEYFRAME;                  *icc->lpdwFlags = AVIIF_KEYFRAME;
759                  return ICERR_OK;                  return ICERR_OK;
   
         default :  
                 DEBUGERR("Invalid encoding mode");  
                 return ICERR_ERROR;  
760          }          }
761    
   
762          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
763          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
764                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
765          }  
766          else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)          /* frame-based stuff */
767          {          apply_zone_modifiers(&frame, &codec->config, codec->framenum);
768                  DEBUG("current frame forced to p-frame");  
769                  frame.type = XVID_TYPE_PVOP;          /* call encore */
         }  
770    
771          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
772          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
773    
774      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
775          switch (length)          switch (length)
776          {          {
777          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 625  Line 787 
787                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
788          }          }
789    
790          {  /* XXX: debug text */          if (codec->config.display_status && stats.type>0) {
791                  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);  
792          }          }
793    
794            DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
795    
796      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
797          {          {
798                  *icc->lpdwFlags = 0;                  *icc->lpdwFlags = 0;
# Line 650  Line 812 
812    
813          outhdr->biSizeImage = length;          outhdr->biSizeImage = length;
814    
815          if (codec->config.mode == DLG_MODE_2PASS_1 && codec->config.discard1pass)                  if (codec->config.mode == RC_MODE_2PASS1 && codec->config.discard1pass)
816              {              {
817                      outhdr->biSizeImage = 0;                      outhdr->biSizeImage = 0;
818              }              }
   
         /* 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);  
             }  
819      }      }
820    
821          ++codec->framenum;          codec->framenum++;
822          ++codec->keyspacing;          codec->keyspacing++;
823    
824          return ICERR_OK;          return ICERR_OK;
825  }  }
# Line 741  Line 874 
874    
875          if (get_colorspace(inhdr) != XVID_CSP_NULL) {          if (get_colorspace(inhdr) != XVID_CSP_NULL) {
876                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
877                  // XXX: should we set outhdr->biSize ??                  /* XXX: should we set outhdr->biSize ?? */
878                  return ICERR_OK;                  return ICERR_OK;
879          }          }
880          /* --- yv12 --- */          /* --- yv12 --- */
# Line 767  Line 900 
900          return ICERR_OK;          return ICERR_OK;
901  }  }
902    
903    #define REG_GET_N(X, Y, Z) \
904    { \
905            DWORD size = sizeof(int); \
906            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
907                    Y=Z; \
908            } \
909    }while(0)
910    
911  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
912  {  {
913          xvid_gbl_init_t init;          xvid_gbl_init_t init;
914          xvid_dec_create_t create;          xvid_dec_create_t create;
915            HKEY hKey;
916    
917            if (init_dll() != 0) return ICERR_ERROR;
918    
919          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
920          init.version = XVID_VERSION;          init.version = XVID_VERSION;
921          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
922          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
923    
924          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
925          create.version = XVID_VERSION;          create.version = XVID_VERSION;
926          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
927          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
928    
929          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
930          {          {
931          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
932                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 800  Line 943 
943    
944          codec->dhandle = create.handle;          codec->dhandle = create.handle;
945    
946            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
947    
948            REG_GET_N("Deblock_Y",  pp_dy, 0)
949            REG_GET_N("Deblock_UV", pp_duv, 0)
950            REG_GET_N("Dering",  pp_dr, 0)
951            REG_GET_N("FilmEffect", pp_fe, 0)
952    
953            RegCloseKey(hKey);
954    
955          return ICERR_OK;          return ICERR_OK;
956  }  }
957    
958    
959  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
960  {  {
961          if (codec->dhandle != NULL)          if (m_hdll != NULL) {
962          {                  if (codec->dhandle != NULL) {
963                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
964                  codec->dhandle = NULL;                  codec->dhandle = NULL;
965          }          }
966                    FreeLibrary(m_hdll);
967                    m_hdll = NULL;
968            }
969    
970          return ICERR_OK;          return ICERR_OK;
971  }  }
972    
# Line 826  Line 982 
982          {          {
983                  xvid_gbl_convert_t convert;                  xvid_gbl_convert_t convert;
984    
985                  DEBUGFOURCC("input", icd->lpbiInput->biCompression);                  DPRINTF("input=%c%c%c%c output=%c%c%c%c",
986                  DEBUGFOURCC("output", icd->lpbiOutput->biCompression);                          icd->lpbiInput->biCompression&0xff,
987                            (icd->lpbiInput->biCompression>>8)&0xff,
988                            (icd->lpbiInput->biCompression>>16)&0xff,
989                            (icd->lpbiInput->biCompression>>24)&0xff,
990                            icd->lpbiOutput->biCompression&0xff,
991                            (icd->lpbiOutput->biCompression>>8)&0xff,
992                            (icd->lpbiOutput->biCompression>>16)&0xff,
993                            (icd->lpbiOutput->biCompression>>24)&0xff);
994    
995                  memset(&convert, 0, sizeof(convert));                  memset(&convert, 0, sizeof(convert));
996                  convert.version = XVID_VERSION;                  convert.version = XVID_VERSION;
# Line 849  Line 1012 
1012                  convert.interlacing = 0;                  convert.interlacing = 0;
1013                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1014                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1015                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1016                  {                  {
1017                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1018                  }                  }
# Line 879  Line 1042 
1042                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1043          }          }
1044    
1045          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1046            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1047    /*      if (pp_dr) frame.general |= XVID_DERING; */
1048            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1049    
1050            switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1051          {          {
1052          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1053                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 897  Line 1065 
1065          return ICERR_OK;          return ICERR_OK;
1066  }  }
1067    
 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.1329

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