[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 889, Sat Feb 22 08:24:01 2003 UTC revision 1305, Sat Jan 3 12:06:11 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 | PMV_HALFPELREFINE16 | 0,          0 | XVID_ME_HALFPELREFINE16 | 0,
64          0 | PMV_HALFPELREFINE16 | 0 |          0 | XVID_ME_HALFPELREFINE16 | 0 |
65          PMV_ADVANCEDDIAMOND16, PMV_HALFPELREFINE16 | PMV_EXTSEARCH16 |          XVID_ME_ADVANCEDDIAMOND16, XVID_ME_HALFPELREFINE16 | XVID_ME_EXTSEARCH16 |
66          PMV_HALFPELREFINE8 | 0 | PMV_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  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  const char type2char(int type)
258  {  {
259          xvid_gbl_init_t init;      if (type==XVID_TYPE_IVOP)
260          xvid_enc_create_t create;          return 'I';
261          xvid_enc_rc_t rc;      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_INFO:
275            case XVID_PLG_CREATE:
276            case XVID_PLG_DESTROY:
277            case XVID_PLG_BEFORE:
278                    return 0;
279    
280          memset(&rc, 0, sizeof(rc));          case XVID_PLG_AFTER:
281          rc.version = XVID_VERSION;                  {
282                            xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
283    
284          switch (codec->config.mode)                          /* We don't use DPRINTF here because it's active only for _DEBUG
285                             * builds and that activates lot of other debug printfs. We only
286                             * want these all the time */
287                            char buf[1024];
288                            sprintf(buf, "[%6i]   type=%c   Q:%2i   length:%6i",
289                                            data->frame_num,
290                                            type2char(data->type),
291                                            data->quant,
292                                            data->length);
293                            OutputDebugString(buf);
294    
295                            return 0;
296                    }
297            }
298    
299            return XVID_ERR_FAIL;
300    }
301    
302    #define XVID_DLL_NAME "xvidcore.dll"
303    
304    static int init_dll()
305          {          {
306          case DLG_MODE_CBR :          if (m_hdll != NULL) return 0;
                 //rc.type = XVID_RC_CBR;  
                 rc.min_iquant = codec->config.min_iquant;  
                 rc.max_iquant = codec->config.max_iquant;  
                 rc.min_pquant = codec->config.min_pquant;  
                 rc.max_pquant = codec->config.max_pquant;  
                 rc.min_bquant = 0;      /* XXX: todo */  
                 rc.max_bquant = 0;      /* XXX: todo */  
                 rc.data.cbr.bitrate = codec->config.rc_bitrate;  
         rc.data.cbr.reaction_delay_factor = codec->config.rc_reaction_delay_factor;  
                 rc.data.cbr.averaging_period = codec->config.rc_averaging_period;  
                 rc.data.cbr.buffer = codec->config.rc_buffer;  
                 break;  
307    
308          case DLG_MODE_VBR_QUAL :          DPRINTF("init_dll");
309                  codec->config.fquant = 0;          m_hdll = LoadLibrary(XVID_DLL_NAME);
310                  //param.rc_bitrate = 0;          if (m_hdll == NULL) {
311                  break;                  DPRINTF("dll load failed");
312                    MessageBox(0, XVID_DLL_NAME " not found","Error", 0);
313                    return XVID_ERR_FAIL;
314            }
315    
316          case DLG_MODE_VBR_QUANT :          xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global");
317                  codec->config.fquant = (float) codec->config.quant;          if (xvid_global_func == NULL) {
318                  //param.rc_bitrate = 0;                  MessageBox(0, "xvid_global() not found", "Error", 0);
319                  break;                  return XVID_ERR_FAIL;
320            }
321    
322          case DLG_MODE_2PASS_1 :          xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_encore");
323          case DLG_MODE_2PASS_2_INT :          if (xvid_encore_func == NULL) {
324          case DLG_MODE_2PASS_2_EXT :                  MessageBox(0, "xvid_encore() not found", "Error", 0);
325                  //param.rc_bitrate = 0;                  return XVID_ERR_FAIL;
326                  codec->twopass.max_framesize = (int)((double)codec->config.twopass_max_bitrate / 8.0 / ((double)codec->fbase / (double)codec->fincr));          }
                 break;  
327    
328          case DLG_MODE_NULL :          xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_decore");
329                  return ICERR_OK;          if (xvid_decore_func == NULL) {
330                    MessageBox(0, "xvid_decore() not found", "Error", 0);
331                    return XVID_ERR_FAIL;
332            }
333    
334          default :          xvid_plugin_single_func =
335                  break;                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_single"));
336            xvid_plugin_2pass1_func =
337                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass1"));
338            xvid_plugin_2pass2_func =
339                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass2"));
340            xvid_plugin_lumimasking_func =
341                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_lumimasking"));
342            xvid_plugin_psnr_func =
343                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_psnr"));
344    
345            return 0;
346          }          }
347    
348      /* destroy previously created codec */  
349          if(codec->ehandle)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
350          {          {
351                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);          xvid_gbl_init_t init;
352            xvid_enc_create_t create;
353        xvid_enc_plugin_t plugins[3];
354            xvid_plugin_single_t single;
355            xvid_plugin_2pass1_t pass1;
356            xvid_plugin_2pass2_t pass2;
357        int i;
358    
359            if (init_dll() != 0) return ICERR_ERROR;
360        /* destroy previously created codec */
361            if(codec->ehandle) {
362                    xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
363                  codec->ehandle = NULL;                  codec->ehandle = NULL;
364          }          }
365    
366      memset(&init, 0, sizeof(init));      memset(&init, 0, sizeof(init));
367          init.version = XVID_VERSION;          init.version = XVID_VERSION;
368          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
369          xvid_global(0, XVID_GBL_INIT, &init, NULL);      init.debug = codec->config.debug;
370            xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
371    
372          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
373          create.version = XVID_VERSION;          create.version = XVID_VERSION;
374    
375        /* zones */
376        create.zones = malloc(sizeof(xvid_enc_zone_t) * codec->config.num_zones);
377        create.num_zones = codec->config.num_zones;
378        for (i=0; i < create.num_zones; i++) {
379            create.zones[i].frame = codec->config.zones[i].frame;
380            if (codec->config.zones[i].mode == RC_ZONE_QUANT) {
381                create.zones[i].mode = XVID_ZONE_QUANT;
382                create.zones[i].increment = codec->config.zones[i].quant;
383            }else{
384                create.zones[i].mode = XVID_ZONE_WEIGHT;
385                create.zones[i].increment = codec->config.zones[i].weight;
386            }
387            create.zones[i].base = 100;
388        }
389    
390        /* plugins */
391            create.plugins = plugins;
392            switch (codec->config.mode)
393            {
394            case RC_MODE_1PASS :
395            memset(&single, 0, sizeof(single));
396                single.version = XVID_VERSION;
397            single.bitrate = codec->config.bitrate * CONFIG_KBPS;
398            single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
399                    single.averaging_period = codec->config.rc_averaging_period;
400                    single.buffer = codec->config.rc_buffer;
401            plugins[create.num_plugins].func = xvid_plugin_single_func;
402            plugins[create.num_plugins].param = &single;
403            create.num_plugins++;
404            break;
405    
406            case RC_MODE_2PASS1 :
407            memset(&pass1, 0, sizeof(pass1));
408                pass1.version = XVID_VERSION;
409            pass1.filename = codec->config.stats;
410    
411            plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
412            plugins[create.num_plugins].param = &pass1;
413            create.num_plugins++;
414                    break;
415    
416            case RC_MODE_2PASS2 :
417            memset(&pass2, 0, sizeof(pass2));
418                pass2.version = XVID_VERSION;
419            if (codec->config.use_2pass_bitrate) {
420                pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
421            }else{
422                pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
423            }
424                    pass2.filename = codec->config.stats;
425    
426            pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
427            pass2.curve_compression_high = codec->config.curve_compression_high;
428            pass2.curve_compression_low = codec->config.curve_compression_low;
429                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
430            pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
431            pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
432                pass2.kfreduction = codec->config.kfreduction;
433            pass2.kfthreshold = codec->config.kfthreshold;
434            pass2.container_frame_overhead = 24;    /* AVI */
435    
436            plugins[create.num_plugins].func = xvid_plugin_2pass2_func;
437            plugins[create.num_plugins].param = &pass2;
438            create.num_plugins++;
439                    break;
440    
441            case RC_MODE_NULL :
442                    return ICERR_OK;
443    
444            default :
445                    break;
446            }
447    
448            if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
449            plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
450            plugins[create.num_plugins].param = NULL;
451            create.num_plugins++;
452            }
453    
454        plugins[create.num_plugins].func = vfw_debug;
455        plugins[create.num_plugins].param = NULL;
456        create.num_plugins++;
457    
458        create.profile = profiles[codec->config.profile].id;
459    
460          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
461          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
462          create.fincr = codec->fincr;          create.fincr = codec->fincr;
463          create.fbase = codec->fbase;          create.fbase = codec->fbase;
464    
     if (codec->config.packed)  
         create.global |= XVID_PACKED;  
         if (codec->config.dx50bvop)  
                 create.global |= XVID_CLOSED_GOP;  
   
465      create.max_key_interval = codec->config.max_key_interval;      create.max_key_interval = codec->config.max_key_interval;
         /* XXX: param.min_quantizer = codec->config.min_pquant;  
         param.max_quantizer = codec->config.max_pquant; */  
466    
467          create.max_bframes = codec->config.max_bframes;      create.min_quant[0] = codec->config.min_iquant;
468          create.frame_drop_ratio = codec->config.frame_drop_ratio;      create.max_quant[0] = codec->config.max_iquant;
469        create.min_quant[1] = codec->config.min_pquant;
470        create.max_quant[1] = codec->config.max_pquant;
471        create.min_quant[2] = codec->config.min_bquant;
472        create.max_quant[2] = codec->config.max_bquant;
473    
474        if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
475            create.max_bframes = codec->config.max_bframes;
476          create.bquant_ratio = codec->config.bquant_ratio;          create.bquant_ratio = codec->config.bquant_ratio;
477          create.bquant_offset = codec->config.bquant_offset;          create.bquant_offset = codec->config.bquant_offset;
478    
479            if (codec->config.packed)
480                create.global |= XVID_GLOBAL_PACKED;
481    
482                if (codec->config.closed_gov)
483                        create.global |= XVID_GLOBAL_CLOSED_GOP;
484    
485        }
486    
487            create.frame_drop_ratio = codec->config.frame_drop_ratio;
488    
489          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
490    
491          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))
492          {          {
493          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
494                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 341  Line 507 
507          codec->framenum = 0;          codec->framenum = 0;
508          codec->keyspacing = 0;          codec->keyspacing = 0;
509    
510          codec->twopass.hints = codec->twopass.stats1 = codec->twopass.stats2 = INVALID_HANDLE_VALUE;      if (codec->config.display_status) {
511          codec->twopass.hintstream = NULL;          status_destroy_always(&codec->status);
512            status_create(&codec->status, codec->fincr, codec->fbase);
513        }
514    
515          return ICERR_OK;          return ICERR_OK;
516  }  }
# Line 350  Line 518 
518    
519  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
520  {  {
521          if (codec->ehandle != NULL)      if (m_hdll != NULL) {
522          {                  if (codec->ehandle != NULL) {
523                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
524                            codec->ehandle = NULL;
                 if (codec->twopass.hints != INVALID_HANDLE_VALUE)  
                 {  
                         CloseHandle(codec->twopass.hints);  
525                  }                  }
526                  if (codec->twopass.stats1 != INVALID_HANDLE_VALUE)                  FreeLibrary(m_hdll);
527                  {                  m_hdll = NULL;
                         CloseHandle(codec->twopass.stats1);  
528                  }                  }
529                  if (codec->twopass.stats2 != INVALID_HANDLE_VALUE)  
530                  {      if (codec->config.display_status)
531                          CloseHandle(codec->twopass.stats2);          status_destroy(&codec->status);
532    
533            return ICERR_OK;
534                  }                  }
535                  if (codec->twopass.hintstream != NULL)  
536    
537    static void apply_zone_modifiers(xvid_enc_frame_t * frame, CONFIG * config, int framenum)
538                  {                  {
539                          free(codec->twopass.hintstream);      int i;
                 }  
540    
541                  codec->ehandle = NULL;      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
542    
543        if (--i < 0) return; /* there are no zones, or we're before the first zone */
544    
545        if (framenum == config->zones[i].frame)
546                    frame->type = config->zones[i].type;
547    
548                  codec_2pass_finish(codec);      if (config->zones[i].greyscale) {
549            frame->vop_flags |= XVID_VOP_GREYSCALE;
550          }          }
551    
552          return ICERR_OK;      if (config->zones[i].chroma_opt) {
553            frame->vop_flags |= XVID_VOP_CHROMAOPT;
554        }
555    
556        if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
557            frame->bframe_threshold = config->zones[i].bvop_threshold;
558  }  }
559    }
560    
561    
562  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
563  {  {
# Line 387  Line 567 
567          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
568          int length;          int length;
569    
         // 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;  
                 }  
         }  
   
570          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
571          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
572    
# Line 403  Line 574 
574    
575          /* vol stuff */          /* vol stuff */
576    
577          if (codec->config.quant_type != QUANT_MODE_H263)      if ((profiles[codec->config.profile].flags & PROFILE_MPEGQUANT) &&
578            codec->config.quant_type != QUANT_MODE_H263)
579          {          {
580                  frame.vol_flags |= XVID_MPEGQUANT;                  frame.vol_flags |= XVID_VOL_MPEGQUANT;
581    
582                  // 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)  
                 {  
583                          frame.quant_intra_matrix = codec->config.qmatrix_intra;                          frame.quant_intra_matrix = codec->config.qmatrix_intra;
584                          frame.quant_inter_matrix = codec->config.qmatrix_inter;                          frame.quant_inter_matrix = codec->config.qmatrix_inter;
585                  }                  }else{
                 else  
                 {  
586                          frame.quant_intra_matrix = NULL;                          frame.quant_intra_matrix = NULL;
587                          frame.quant_inter_matrix = NULL;                          frame.quant_inter_matrix = NULL;
588                  }                  }
589          }          }
590    
591          if (codec->config.reduced_resolution) {      if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&
592                  frame.vol_flags |= XVID_REDUCED_ENABLE;              codec->config.reduced_resolution) {
593                  frame.vop_flags |= XVID_REDUCED;        /* XXX: need auto decion mode */                  frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;
594                    frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */
595            }
596    
597            if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
598                    frame.vol_flags |= XVID_VOL_QUARTERPEL;
599                    frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
600          }          }
601    
602          if (codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
603                  frame.vol_flags |= XVID_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_GMC;
604                  frame.motion |= PMV_QUARTERPELREFINE16 | PMV_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_GME_REFINE;
605          }          }
606    
607          if (codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
608                  frame.vol_flags |= XVID_GMC;                  frame.vol_flags |= XVID_VOL_INTERLACING;
609    
610          if (codec->config.interlacing)          if (codec->config.ar_mode == 0) { /* PAR */
611                  frame.vol_flags |= XVID_INTERLACING;                  if (codec->config.display_aspect_ratio != 5) {
612                            frame.par = codec->config.display_aspect_ratio + 1;
613                    } else {
614                            frame.par = XVID_PAR_EXT;
615                            frame.par_width = codec->config.par_x;
616                            frame.par_height= codec->config.par_y;
617                    }
618            } else { /* AR */
619                    /* custom pixel aspect ratio -> calculated from DAR */
620                    frame.par = XVID_PAR_EXT;
621                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
622                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
623            }
624    
625      /* vop stuff */      /* vop stuff */
626    
627          frame.vop_flags |= XVID_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
628          frame.vop_flags |= XVID_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
629    
630          if (codec->config.debug)          if (codec->config.vop_debug)
631                  frame.vop_flags |= XVID_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
632    
633          if (codec->config.motion_search > 4)      if (codec->config.trellis_quant) {
634                  frame.vop_flags |= XVID_INTER4V;          frame.vop_flags |= XVID_VOP_TRELLISQUANT;
635        }
636    
637          if (codec->config.lum_masking)      if (codec->config.motion_search > 4)
638                  frame.vop_flags |= XVID_LUMIMASKING;                  frame.vop_flags |= XVID_VOP_INTER4V;
639    
640          if (codec->config.chromame)          if (codec->config.chromame)
641                  frame.vop_flags |= PMV_CHROMA16 + PMV_CHROMA8;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
   
         if (codec->config.chroma_opt)  
                 frame.vop_flags |= XVID_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  
642    
643          if (codec->config.hinted_me && codec->config.mode == DLG_MODE_2PASS_1)          if (codec->config.cartoon_mode) {
644          {                  frame.vop_flags |= XVID_VOP_CARTOON;
645                  frame.hint.hintstream = codec->twopass.hintstream;                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
                 frame.hint.rawhints = 0;  
                 frame.general |= XVID_HINTEDME_GET;  
646          }          }
         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;  
647    
648                  if (codec->twopass.hints == INVALID_HANDLE_VALUE)          if (codec->config.turbo)
649                  {                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
650                          codec->twopass.hints = CreateFile(codec->config.hintfile, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0);                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
651                          if (codec->twopass.hints == INVALID_HANDLE_VALUE)                                                  XVID_ME_BFRAME_EARLYSTOP;
                         {  
                                 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;  
                 }  
         } */  
652    
653          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
654    
655          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
656          {          {
657          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
658                  frame.vop_flags |= XVID_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
659                  break;                  break;
660    
661          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
662                  frame.vop_flags |= XVID_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
663                  frame.motion |= HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
664                  frame.motion |= QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
665                  break;                  break;
666    
667          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
668                  frame.vop_flags |= XVID_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
669                  frame.motion |= HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
670                  frame.motion |= HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
671                  frame.motion |= QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
672                  frame.motion |= QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
673                  frame.motion |= CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
674                  break;                  break;
675    
676          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
677                  frame.vop_flags |= XVID_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
678                  frame.motion |= HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
679                  frame.motion |= HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
680                  frame.motion |= QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
681                  frame.motion |= QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
682                  frame.motion |= CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
683                  frame.motion |= EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
684                  break;                  break;
685    
686          default :          default :
# Line 549  Line 699 
699          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
700          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
701    
702          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;  
703    
704          case DLG_MODE_2PASS_2_EXT :      if (codec->config.mode == RC_MODE_NULL) {
         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 :  
705                  outhdr->biSizeImage = 0;                  outhdr->biSizeImage = 0;
706                  *icc->lpdwFlags = AVIIF_KEYFRAME;                  *icc->lpdwFlags = AVIIF_KEYFRAME;
707                  return ICERR_OK;                  return ICERR_OK;
   
         default :  
                 DEBUGERR("Invalid encoding mode");  
                 return ICERR_ERROR;  
708          }          }
709    
   
710          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
711          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
712                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
         }  
         else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)  
         {  
                 DEBUG("current frame forced to p-frame");  
                 frame.type = XVID_TYPE_PVOP;  
         }  
713    
714          frame.bquant = 0;      /* frame-based stuff */
715        apply_zone_modifiers(&frame, &codec->config, codec->framenum);
716    
717        /* call encore */
718    
719          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
720          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
721    
722      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);      length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
723          switch (length)          switch (length)
724          {          {
725          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 621  Line 735 
735                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
736          }          }
737    
738          {  /* XXX: debug text */      if (codec->config.display_status && stats.type>0) {
739                  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);  
740          }          }
741    
742            DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
743    
744      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
745          {          {
746                  *icc->lpdwFlags = 0;                  *icc->lpdwFlags = 0;
# Line 646  Line 760 
760    
761          outhdr->biSizeImage = length;          outhdr->biSizeImage = length;
762    
763          if (codec->config.mode == DLG_MODE_2PASS_1 && codec->config.discard1pass)          if (codec->config.mode == RC_MODE_2PASS1 && codec->config.discard1pass)
764              {              {
765                      outhdr->biSizeImage = 0;                      outhdr->biSizeImage = 0;
766              }              }
   
         /* 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);  
             }  
767      }      }
768    
769          ++codec->framenum;          codec->framenum++;
770          ++codec->keyspacing;          codec->keyspacing++;
771    
772          return ICERR_OK;          return ICERR_OK;
773  }  }
# Line 737  Line 822 
822    
823          if (get_colorspace(inhdr) != XVID_CSP_NULL) {          if (get_colorspace(inhdr) != XVID_CSP_NULL) {
824                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));                  memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
825                  // XXX: should we set outhdr->biSize ??                  /* XXX: should we set outhdr->biSize ?? */
826                  return ICERR_OK;                  return ICERR_OK;
827          }          }
828          /* --- yv12 --- */          /* --- yv12 --- */
# Line 769  Line 854 
854          xvid_gbl_init_t init;          xvid_gbl_init_t init;
855          xvid_dec_create_t create;          xvid_dec_create_t create;
856    
857            if (init_dll() != 0) return ICERR_ERROR;
858    
859          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
860          init.version = XVID_VERSION;          init.version = XVID_VERSION;
861          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
862          xvid_global(0, XVID_GBL_INIT, &init, NULL);          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
863    
864          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
865          create.version = XVID_VERSION;          create.version = XVID_VERSION;
866          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
867          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
868    
869          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
870          {          {
871          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
872                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 802  Line 889 
889    
890  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
891  {  {
892          if (codec->dhandle != NULL)          if (m_hdll != NULL) {
893          {                  if (codec->dhandle != NULL) {
894                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
895                  codec->dhandle = NULL;                  codec->dhandle = NULL;
896          }          }
897                    FreeLibrary(m_hdll);
898                    m_hdll = NULL;
899            }
900    
901          return ICERR_OK;          return ICERR_OK;
902  }  }
903    
# Line 822  Line 913 
913          {          {
914                  xvid_gbl_convert_t convert;                  xvid_gbl_convert_t convert;
915    
916                  DEBUGFOURCC("input", icd->lpbiInput->biCompression);                  DPRINTF("input=%c%c%c%c output=%c%c%c%c",
917                  DEBUGFOURCC("output", icd->lpbiOutput->biCompression);              icd->lpbiInput->biCompression&0xff,
918                (icd->lpbiInput->biCompression>>8)&0xff,
919                (icd->lpbiInput->biCompression>>16)&0xff,
920                (icd->lpbiInput->biCompression>>24)&0xff,
921                icd->lpbiOutput->biCompression&0xff,
922                (icd->lpbiOutput->biCompression>>8)&0xff,
923                (icd->lpbiOutput->biCompression>>16)&0xff,
924                (icd->lpbiOutput->biCompression>>24)&0xff);
925    
926                  memset(&convert, 0, sizeof(convert));                  memset(&convert, 0, sizeof(convert));
927                  convert.version = XVID_VERSION;                  convert.version = XVID_VERSION;
# Line 845  Line 943 
943                  convert.interlacing = 0;                  convert.interlacing = 0;
944                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
945                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
946                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
947                  {                  {
948                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
949                  }                  }
# Line 875  Line 973 
973                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
974          }          }
975    
976          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
977          {          {
978          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
979                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 893  Line 991 
991          return ICERR_OK;          return ICERR_OK;
992  }  }
993    
 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_GREYSCALE))  // use only if not already in greyscale  
   
                                 frame->vop_flags |= XVID_GREYSCALE;  
   
                 } else {  
   
                         if (!(frame->vop_flags && XVID_GREYSCALE))  // if movie is in greyscale, switch back  
   
                                 frame->vop_flags |= XVID_GREYSCALE;  
   
                 }  
   
         } else {  
   
                 if (config->greyscale)  
   
                 {  
   
                         if ((frame->vop_flags && XVID_GREYSCALE))  // use only if not already in greyscale  
   
                                 frame->vop_flags |= XVID_GREYSCALE;  
   
                 } else {  
   
                         if (!(frame->vop_flags && XVID_GREYSCALE))  // if credits is in greyscale, switch back  
   
                                 frame->vop_flags |= XVID_GREYSCALE;  
   
                 }  
   
         }  
   
         return 0;  
   
 }  
   
 // end of koepi's addition  
   

Legend:
Removed from v.889  
changed lines
  Added in v.1305

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