[cvs] / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /xvidcore/vfw/src/codec.c

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

revision 1.1.2.10, Mon Jun 9 01:25:18 2003 UTC revision 1.30.2.2, Thu Jan 27 13:13:16 2011 UTC
# Line 3  Line 3 
3   *      XVID VFW FRONTEND   *      XVID VFW FRONTEND
4   *      codec   *      codec
5   *   *
6     *      Copyright(C) Peter Ross <pross@xvid.org>
7     *
8   *      This program is free software; you can redistribute it and/or modify   *      This program is free software; you can redistribute it and/or modify
9   *      it under the terms of the GNU General Public License as published by   *      it under the terms of the GNU General Public License as published by
10   *      the Free Software Foundation; either version 2 of the License, or   *      the Free Software Foundation; either version 2 of the License, or
# Line 17  Line 19 
19   *      along with this program; if not, write to the Free Software   *      along with this program; if not, write to the Free Software
20   *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.   *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21   *   *
22   *************************************************************************/   * $Id$
   
 /**************************************************************************  
  *  
  *      History:  
  *  
  *      12.07.2002      num_threads  
  *      23.06.2002      XVID_CPU_CHKONLY; loading speed up  
  *      25.04.2002      ICDECOMPRESS_PREROLL  
  *      17.04.2002      re-enabled lumi masking for 1st pass  
  *      15.04.2002      updated cbr support  
  *      04.04.2002      separated 2-pass code to 2pass.c  
  *                              interlacing support  
  *                              hinted ME support  
  *      23.03.2002      daniel smith <danielsmith@astroboymail.com>  
  *                              changed inter4v to only be in modes 5 or 6  
  *                              fixed null mode crash ?  
  *                              merged foxer's alternative 2-pass code  
  *                              added DEBUGERR output on errors instead of returning  
  *      16.03.2002      daniel smith <danielsmith@astroboymail.com>  
  *                              changed BITMAPV4HEADER to BITMAPINFOHEADER  
  *                                      - prevents memcpy crash in compress_get_format()  
  *                              credits are processed in external 2pass mode  
  *                              motion search precision = 0 now effective in 2-pass  
  *                              modulated quantization  
  *                              added DX50 fourcc  
  *      01.12.2001      inital version; (c)2001 peter ross <pross@xvid.org>  
23   *   *
24   *************************************************************************/   *************************************************************************/
25    
26  #include <windows.h>  #include <windows.h>
27  #include <vfw.h>  #include <vfw.h>
28    #include <stdio.h>
29  #include "vfwext.h"  #include "vfwext.h"
30    
31  #include <xvid.h>  #include <xvid.h>
32  #include "debug.h"  #include "debug.h"
33  #include "codec.h"  #include "codec.h"
34    #include "status.h"
35    
36    
37    
38  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
# Line 70  Line 49 
49          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
50  */  */
51    
52  int get_colorspace(BITMAPINFOHEADER * hdr)  static int get_colorspace(BITMAPINFOHEADER * hdr)
53  {  {
54          /* rgb only: negative height specifies top down image */          /* rgb only: negative height specifies top down image */
55          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);
# Line 207  Line 186 
186    
187          if (lpbiOutput == NULL)          if (lpbiOutput == NULL)
188          {          {
189                  return sizeof(BITMAPV4HEADER);                  return sizeof(BITMAPINFOHEADER);
190          }          }
191    
192          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));          memcpy(outhdr, inhdr, sizeof(BITMAPINFOHEADER));
# Line 218  Line 197 
197          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
198          outhdr->biClrImportant = 0;          outhdr->biClrImportant = 0;
199    
200          if (codec->config.fourcc_used == 0)          if ((codec->config.fourcc_used == 0) || (profiles[codec->config.profile].flags & PROFILE_XVID))
201          {          {
202                  outhdr->biCompression = FOURCC_XVID;                  outhdr->biCompression = FOURCC_XVID;
203          }          }
# Line 252  Line 231 
231  }  }
232    
233    
234  const char type2char(int type)  static char type2char(int type)
235  {  {
236      if (type==XVID_TYPE_IVOP)      if (type==XVID_TYPE_IVOP)
237          return 'I';          return 'I';
# Line 263  Line 242 
242      return 'S';      return 'S';
243  }  }
244    
245  int vfw_debug(void *handle,  static int vfw_debug(void *handle,
246                           int opt,                           int opt,
247                           void *param1,                           void *param1,
248                           void *param2)                           void *param2)
249  {  {
250          switch (opt) {          switch (opt) {
         case XVID_PLG_INFO:  
251          case XVID_PLG_CREATE:          case XVID_PLG_CREATE:
252                    *((void**)param2) = NULL;
253            case XVID_PLG_INFO:
254          case XVID_PLG_DESTROY:          case XVID_PLG_DESTROY:
255          case XVID_PLG_BEFORE:          case XVID_PLG_BEFORE:
256                  return 0;                  return 0;
# Line 279  Line 259 
259                  {                  {
260                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
261    
262                          DPRINTF("[%5i]   type=%c   Q:%2i   length:%6i",                          /* We don't use DPRINTF here because it's active only for _DEBUG
263                             * builds and that activates lot of other debug printfs. We only
264                             * want these all the time */
265                            char buf[1024];
266                            sprintf(buf, "[%6i]   type=%c   Q:%2i   length:%6i",
267                                     data->frame_num,                                     data->frame_num,
268                     type2char(data->type),                     type2char(data->type),
269                     data->quant,                     data->quant,
270                     data->length);                     data->length);
271                            OutputDebugString(buf);
272    
273                          return 0;                          return 0;
274                  }                  }
275          }          }
# Line 291  Line 277 
277          return XVID_ERR_FAIL;          return XVID_ERR_FAIL;
278  }  }
279    
280    #define XVID_DLL_NAME "xvidcore.dll"
281    
282    static int init_dll(CODEC* codec)
283    {
284            if (codec->m_hdll != NULL)
285                    return 0;
286    
287            DPRINTF("init_dll");
288            codec->m_hdll = LoadLibrary(XVID_DLL_NAME);
289            if (codec->m_hdll == NULL) {
290                    DPRINTF("dll load failed");
291                    MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
292                    return XVID_ERR_FAIL;
293            }
294    
295            codec->xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_global");
296            if (codec->xvid_global_func == NULL) {
297                    MessageBox(0, "xvid_global() not found", "Error", 0);
298                    return XVID_ERR_FAIL;
299            }
300    
301            codec->xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_encore");
302            if (codec->xvid_encore_func == NULL) {
303                    MessageBox(0, "xvid_encore() not found", "Error", 0);
304                    return XVID_ERR_FAIL;
305            }
306    
307            codec->xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_decore");
308            if (codec->xvid_decore_func == NULL) {
309                    MessageBox(0, "xvid_decore() not found", "Error", 0);
310                    return XVID_ERR_FAIL;
311            }
312    
313            codec->xvid_plugin_single_func =
314                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_single"));
315            codec->xvid_plugin_2pass1_func =
316                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass1"));
317            codec->xvid_plugin_2pass2_func =
318                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass2"));
319            codec->xvid_plugin_lumimasking_func =
320                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_lumimasking"));
321            codec->xvid_plugin_psnr_func =
322                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_psnr"));
323    
324            return 0;
325    }
326    
327    /* constant-quant zones for fixed quant encoding */
328    static void
329    prepare_cquant_zones(CONFIG * config) {
330    
331            int i = 0;
332            if (config->num_zones == 0 || config->zones[0].frame != 0) {
333                    /* first zone does not start at frame 0 or doesn't exist */
334    
335                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
336    
337                    config->zones[config->num_zones].frame = 0;
338                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
339                    config->zones[config->num_zones].weight = 100;
340                    config->zones[config->num_zones].quant = config->desired_quant;
341                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
342                    config->zones[config->num_zones].greyscale = 0;
343                    config->zones[config->num_zones].chroma_opt = 0;
344                    config->zones[config->num_zones].bvop_threshold = 0;
345                    config->num_zones++;
346    
347                    sort_zones(config->zones, config->num_zones, &i);
348            }
349    
350            /* step 2: let's change all weight zones into quant zones */
351    
352            for(i = 0; i < config->num_zones; i++)
353                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
354                            config->zones[i].mode = RC_ZONE_QUANT;
355                            config->zones[i].quant = (100*config->desired_quant) / config->zones[i].weight;
356                    }
357    }
358    
359    /* full first pass zones */
360    static void
361    prepare_full1pass_zones(CONFIG * config) {
362    
363            int i = 0;
364            if (config->num_zones == 0 || config->zones[0].frame != 0) {
365                    /* first zone does not start at frame 0 or doesn't exist */
366    
367                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
368    
369                    config->zones[config->num_zones].frame = 0;
370                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
371                    config->zones[config->num_zones].weight = 100;
372                    config->zones[config->num_zones].quant = 200;
373                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
374                    config->zones[config->num_zones].greyscale = 0;
375                    config->zones[config->num_zones].chroma_opt = 0;
376                    config->zones[config->num_zones].bvop_threshold = 0;
377                    config->num_zones++;
378    
379                    sort_zones(config->zones, config->num_zones, &i);
380            }
381    
382            /* step 2: let's change all weight zones into quant zones */
383    
384            for(i = 0; i < config->num_zones; i++)
385                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
386                            config->zones[i].mode = RC_ZONE_QUANT;
387                            config->zones[i].quant = 200;
388                    }
389    }
390    
391    
392  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
# Line 301  Line 397 
397          xvid_plugin_single_t single;          xvid_plugin_single_t single;
398          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
399          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
400            xvid_plugin_lumimasking_t masking;
401        xvid_gbl_info_t info;
402      int i;      int i;
403            HANDLE hFile;
404            const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
405        &codec->config.quality_user : &quality_table[codec->config.quality];
406    
407            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
408            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
409    
410            if (init_dll(codec) != 0) return ICERR_ERROR;
411      /* destroy previously created codec */      /* destroy previously created codec */
412          if(codec->ehandle) {          if(codec->ehandle) {
413                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
414                  codec->ehandle = NULL;                  codec->ehandle = NULL;
415          }          }
416    
# Line 313  Line 418 
418          init.version = XVID_VERSION;          init.version = XVID_VERSION;
419          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
420      init.debug = codec->config.debug;      init.debug = codec->config.debug;
421          xvid_global(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
422    
423            memset(&info, 0, sizeof(info));
424            info.version = XVID_VERSION;
425            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
426    
427          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
428          create.version = XVID_VERSION;          create.version = XVID_VERSION;
429    
430      /* zones */      /* Encoder threads */
431      create.zones = malloc(sizeof(xvid_enc_zone_t) * codec->config.num_zones);      if (codec->config.cpu & XVID_CPU_FORCE)
432      create.num_zones = codec->config.num_zones;                  create.num_threads = codec->config.num_threads;
433      for (i=0; i < create.num_zones; i++) {          else
434          create.zones[i].frame = codec->config.zones[i].frame;          create.num_threads = info.num_threads; /* Autodetect */
435          if (codec->config.zones[i].mode == RC_ZONE_QUANT) {  
436              create.zones[i].mode = XVID_ZONE_QUANT;          /* Encoder slices */
437              create.zones[i].increment = codec->config.zones[i].quant;          if ((profiles[codec->config.profile].flags & PROFILE_RESYNCMARKER) && codec->config.num_slices != 1) {
438          }else{  
439              create.zones[i].mode = XVID_ZONE_WEIGHT;                  if (codec->config.num_slices == 0) { /* auto */
440              create.zones[i].increment = codec->config.zones[i].weight;                          int mb_width = (lpbiInput->bmiHeader.biWidth + 15) / 16;
441                            int mb_height = (lpbiInput->bmiHeader.biHeight + 15) / 16;
442    
443                            int slices = (int)((mb_width*mb_height) / 811); /* use multiple slices only above SD resolutions for now */
444    
445                            if (slices > 1) {
446                                    if (create.num_threads <= 1)
447                                            slices &= ~1; /* make even */
448                                    else if (create.num_threads <= slices)
449                                            slices = (slices / create.num_threads) * create.num_threads; /* multiple of threads */
450                                    else if (create.num_threads % slices)
451                                            slices = (!(create.num_threads%2)) ? (create.num_threads/2) : (create.num_threads/3);
452          }          }
453          create.zones[i].base = 100;  
454                            create.num_slices = slices;
455                    }
456                    else {
457                            create.num_slices = codec->config.num_slices; /* force manual value - by registry edit */
458                    }
459    
460      }      }
461    
462      /* plugins */      /* plugins */
# Line 344  Line 470 
470          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
471                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
472                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
473          plugins[create.num_plugins].func = xvid_plugin_single;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
474          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
475          create.num_plugins++;          create.num_plugins++;
476                    if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
477                            prepare_cquant_zones(&tmpCfg);
478          break;          break;
479    
480          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
481          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
482              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
483          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
484                    if (codec->config.full1pass)
485          plugins[create.num_plugins].func = xvid_plugin_2pass1;                          prepare_full1pass_zones(&tmpCfg);
486                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
487          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
488          create.num_plugins++;          create.num_plugins++;
489                  break;                  break;
# Line 362  Line 491 
491          case RC_MODE_2PASS2 :          case RC_MODE_2PASS2 :
492          memset(&pass2, 0, sizeof(pass2));          memset(&pass2, 0, sizeof(pass2));
493              pass2.version = XVID_VERSION;              pass2.version = XVID_VERSION;
494                    if (codec->config.use_2pass_bitrate) {
495          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;          pass2.bitrate = codec->config.bitrate * CONFIG_KBPS;
496                    } else {
497                            pass2.bitrate = -codec->config.desired_size;    /* kilobytes */
498                    }
499                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
500    
501                    hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
502                    if (hFile == INVALID_HANDLE_VALUE)
503                    {
504                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
505                            return XVID_ERR_FAIL;
506                    } else
507                    {
508                            CloseHandle(hFile);
509                    }
510    
511          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
         pass2.payback_method = codec->config.bitrate_payback_method;  
         pass2.bitrate_payback_delay = codec->config.bitrate_payback_delay;  
512          pass2.curve_compression_high = codec->config.curve_compression_high;          pass2.curve_compression_high = codec->config.curve_compression_high;
513          pass2.curve_compression_low = codec->config.curve_compression_low;          pass2.curve_compression_low = codec->config.curve_compression_low;
514                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
515          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
516          pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;          pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
         pass2.kftreshold = codec->config.kftreshold;  
517              pass2.kfreduction = codec->config.kfreduction;              pass2.kfreduction = codec->config.kfreduction;
518          pass2.min_key_interval = codec->config.min_key_interval;                  pass2.kfthreshold = codec->config.kfthreshold;
519          pass2.container_frame_overhead = 24;    /* AVI */          pass2.container_frame_overhead = 24;    /* AVI */
520    
521          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  /* VBV */
522                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
523                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
524                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
525                    pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate;
526    
527                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
528          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
529          create.num_plugins++;          create.num_plugins++;
530                  break;                  break;
# Line 389  Line 536 
536                  break;                  break;
537          }          }
538    
539          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          /* zones  - copy from tmpCfg in case we automatically altered them above */
540          plugins[create.num_plugins].func = xvid_plugin_lumimasking;          create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
541          plugins[create.num_plugins].param = NULL;          create.num_zones = tmpCfg.num_zones;
542            for (i=0; i < create.num_zones; i++) {
543                    create.zones[i].frame = tmpCfg.zones[i].frame;
544                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
545                            create.zones[i].mode = XVID_ZONE_QUANT;
546                            create.zones[i].increment = tmpCfg.zones[i].quant;
547                    }else{
548                            create.zones[i].mode = XVID_ZONE_WEIGHT;
549                            create.zones[i].increment = tmpCfg.zones[i].weight;
550                    }
551                    create.zones[i].base = 100;
552            }
553    
554            /* lumimasking plugin */
555            if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && (codec->config.lum_masking>0)) {
556                    memset(&masking, 0, sizeof(masking));
557                    masking.method = (codec->config.lum_masking==2);
558                    plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
559                    plugins[create.num_plugins].param = &masking;
560          create.num_plugins++;          create.num_plugins++;
561          }          }
562    
# Line 406  Line 571 
571          create.fincr = codec->fincr;          create.fincr = codec->fincr;
572          create.fbase = codec->fbase;          create.fbase = codec->fbase;
573    
574      create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
575    
576      create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
577      create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
578      create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
579      create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
580      create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
581      create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
582    
583      if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {      if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
584    
585        /* dxn: prevent bframes usage if interlacing is selected */
586        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
587          create.max_bframes = codec->config.max_bframes;          create.max_bframes = codec->config.max_bframes;
588              create.bquant_ratio = codec->config.bquant_ratio;              create.bquant_ratio = codec->config.bquant_ratio;
589              create.bquant_offset = codec->config.bquant_offset;              create.bquant_offset = codec->config.bquant_offset;
# Line 423  Line 591 
591          if (codec->config.packed)          if (codec->config.packed)
592              create.global |= XVID_GLOBAL_PACKED;              create.global |= XVID_GLOBAL_PACKED;
593    
             if (codec->config.closed_gov)  
594                      create.global |= XVID_GLOBAL_CLOSED_GOP;                      create.global |= XVID_GLOBAL_CLOSED_GOP;
595    
596          /* restrict max bframes */
597          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
598            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
599    
600          /* DXN: enable packed bframes */
601          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
602            create.global |= XVID_GLOBAL_PACKED;
603          }
604        }
605      }      }
606    
607          create.frame_drop_ratio = codec->config.frame_drop_ratio;      /* dxn: always write divx5 userdata */
608        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
609          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
610    
611      create.num_threads = codec->config.num_threads;          create.frame_drop_ratio = quality_preset->frame_drop_ratio;
612    
613          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
614          {          {
615          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
616                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 447  Line 625 
625                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
626          }          }
627    
628            free(create.zones);
629          codec->ehandle = create.handle;          codec->ehandle = create.handle;
630          codec->framenum = 0;          codec->framenum = 0;
631          codec->keyspacing = 0;          codec->keyspacing = 0;
632    
633            if (codec->config.display_status) {
634                    status_destroy_always(&codec->status);
635                    status_create(&codec->status, codec->fincr, codec->fbase);
636            }
637    
638          return ICERR_OK;          return ICERR_OK;
639  }  }
640    
641    
642  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
643  {  {
644          if (codec->ehandle != NULL)    if (codec==NULL)
645          {      return ICERR_OK;
646                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);  
647            if (codec->m_hdll != NULL) {
648                    if (codec->ehandle != NULL) {
649                            codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
650                  codec->ehandle = NULL;                  codec->ehandle = NULL;
651          }          }
652            }
653    
654            if (codec->config.display_status)
655                    status_destroy(&codec->status);
656    
657          return ICERR_OK;          return ICERR_OK;
658  }  }
# Line 472  Line 663 
663      int i;      int i;
664    
665      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
666      i--;  
667            if (--i < 0) return; /* there are no zones, or we're before the first zone */
668    
669            if (framenum == config->zones[i].frame)
670                    frame->type = config->zones[i].type;
671    
672      if (config->zones[i].greyscale) {      if (config->zones[i].greyscale) {
673          frame->vop_flags |= XVID_VOP_GREYSCALE;          frame->vop_flags |= XVID_VOP_GREYSCALE;
# Line 482  Line 677 
677          frame->vop_flags |= XVID_VOP_CHROMAOPT;          frame->vop_flags |= XVID_VOP_CHROMAOPT;
678      }      }
679    
680            if (config->zones[i].cartoon_mode) {
681                    frame->vop_flags |= XVID_VOP_CARTOON;
682                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
683            }
684    
685      if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {      if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
686          frame->bframe_threshold = config->zones[i].bvop_threshold;          frame->bframe_threshold = config->zones[i].bvop_threshold;
687      }      }
688  }  }
689    
690    
691    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
692    
693  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
694  {  {
695          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 495  Line 697 
697          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
698          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
699          int length;          int length;
700      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
701        &codec->config.quality_user : &quality_table[codec->config.quality];
702    
703          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
704          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 517  Line 721 
721                  }                  }
722          }          }
723    
     if ((profiles[codec->config.profile].flags & PROFILE_REDUCED) &&  
             codec->config.reduced_resolution) {  
                 frame.vol_flags |= XVID_VOL_REDUCED_ENABLE;  
                 frame.vop_flags |= XVID_VOP_REDUCED;    /* XXX: need auto decion mode */  
         }  
   
724          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
725                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
726                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
727          }          }
728    
729          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc)          if ((profiles[codec->config.profile].flags & PROFILE_GMC) && codec->config.gmc) {
730                  frame.vol_flags |= XVID_VOL_GMC;                  frame.vol_flags |= XVID_VOL_GMC;
731                    frame.motion |= XVID_ME_GME_REFINE;
732            }
733    
734          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
735                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
736    
737      /* dxn: force 1:1 picture aspect ration */
738      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
739        frame.par = XVID_PAR_11_VGA;
740      } else if (codec->config.ar_mode == 0) { /* PAR */
741                    if (codec->config.display_aspect_ratio != 5) {
742                            frame.par = codec->config.display_aspect_ratio + 1;
743                    } else {
744                            frame.par = XVID_PAR_EXT;
745                            frame.par_width = codec->config.par_x;
746                            frame.par_height= codec->config.par_y;
747                    }
748            } else { /* AR */
749                    /* custom pixel aspect ratio -> calculated from DAR */
750                    frame.par = XVID_PAR_EXT;
751                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
752                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
753            }
754    
755      /* vop stuff */      /* vop stuff */
756    
757          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
758          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
759    
760            if (codec->config.interlacing && codec->config.tff)
761                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
762    
763    
764          if (codec->config.vop_debug)          if (codec->config.vop_debug)
765                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
766    
767      if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
768          frame.vop_flags |= XVID_VOP_TRELLISQUANT;          frame.vop_flags |= XVID_VOP_TRELLISQUANT;
769      }      }
770    
771      if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
772              if (quality_preset->motion_search > 4)
773                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
774      }
775    
776            if (quality_preset->chromame)
777                    frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
778    
779            if (quality_preset->turbo)
780                    frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
781                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
782                                                    XVID_ME_BFRAME_EARLYSTOP;
783    
784            frame.motion |= pmvfast_presets[quality_preset->motion_search];
785    
786          if (codec->config.chromame)          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
                 frame.vop_flags |= XVID_ME_CHROMA16 + XVID_ME_CHROMA8;  
787    
         frame.motion |= pmvfast_presets[codec->config.motion_search];  
788    
789          switch (codec->config.vhq_mode)          switch (quality_preset->vhq_mode)
790          {          {
791          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
792                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
793                  break;                  break;
794    
795          case VHQ_LIMITED_SEARCH :          case VHQ_LIMITED_SEARCH :
796                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
797                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
798                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
799                  break;                  break;
800    
801          case VHQ_MEDIUM_SEARCH :          case VHQ_MEDIUM_SEARCH :
802                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
803                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
804                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
805                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
806                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
807                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
808                  break;                  break;
809    
810          case VHQ_WIDE_SEARCH :          case VHQ_WIDE_SEARCH :
811                  frame.vop_flags |= XVID_VOP_MODEDECISION_BITS;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
812                  frame.motion |= XVID_ME_HALFPELREFINE16_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE16_RD;
813                  frame.motion |= XVID_ME_HALFPELREFINE8_BITS;                  frame.motion |= XVID_ME_HALFPELREFINE8_RD;
814                  frame.motion |= XVID_ME_QUARTERPELREFINE16_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE16_RD;
815                  frame.motion |= XVID_ME_QUARTERPELREFINE8_BITS;                  frame.motion |= XVID_ME_QUARTERPELREFINE8_RD;
816                  frame.motion |= XVID_ME_CHECKPREDICTION_BITS;                  frame.motion |= XVID_ME_CHECKPREDICTION_RD;
817                  frame.motion |= XVID_ME_EXTSEARCH_BITS;                  frame.motion |= XVID_ME_EXTSEARCH_RD;
818                  break;                  break;
819    
820          default :          default :
821                  break;                  break;
822          }          }
823    
824            if (quality_preset->vhq_metric == 1)
825                    frame.vop_flags |= XVID_VOP_RD_PSNRHVSM;
826    
827          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
828          frame.input.stride[0] = (((icc->lpbiInput->biWidth * icc->lpbiInput->biBitCount) + 31) & ~31) >> 3;          frame.input.stride[0] = CALC_BI_STRIDE(icc->lpbiInput->biWidth, icc->lpbiInput->biBitCount);
829    
830          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
831                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
832    
833          if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12)          if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12) {
834                  frame.input.stride[0] = (frame.input.stride[0]*2)/3;                  frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
835                    frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
836            }
837    
838          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
839          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
# Line 610  Line 847 
847      }      }
848    
849          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
850          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
         {  
851                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
         }  
         else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)  
         {  
                 DPRINTF("current frame forced to p-frame");  
                 frame.type = XVID_TYPE_PVOP;  
         }  
852    
853      /* frame-based stuff */      /* frame-based stuff */
854      apply_zone_modifiers(&frame, &codec->config, codec->framenum);      apply_zone_modifiers(&frame, &codec->config, codec->framenum);
# Line 628  Line 858 
858          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
859          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
860    
861      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
862          switch (length)          switch (length)
863          {          {
864          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 644  Line 874 
874                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
875          }          }
876    
877            if (codec->config.display_status && stats.type>0) {
878                    status_update(&codec->status, stats.type, stats.length, stats.quant);
879            }
880    
881          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);          DPRINTF("{type=%i len=%i} length=%i", stats.type, stats.length, length);
882    
883      if (length == 0)    /* no encoder output */      if (length == 0)    /* no encoder output */
# Line 685  Line 919 
919  {  {
920          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
921          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
922            int in_csp = XVID_CSP_NULL, out_csp = XVID_CSP_NULL;
923    
924          if (lpbiInput == NULL)          if (lpbiInput == NULL)
925          {          {
926                  return ICERR_ERROR;                  return ICERR_ERROR;
927          }          }
928    
929          if (inhdr->biCompression != FOURCC_XVID && inhdr->biCompression != FOURCC_DIVX && inhdr->biCompression != FOURCC_DX50 && get_colorspace(inhdr) == XVID_CSP_NULL)          if (inhdr->biCompression != FOURCC_XVID && inhdr->biCompression != FOURCC_DIVX && inhdr->biCompression != FOURCC_DX50 && (in_csp = get_colorspace(inhdr)) != XVID_CSP_YV12)
930          {          {
931                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
932          }          }
# Line 701  Line 936 
936                  return ICERR_OK;                  return ICERR_OK;
937          }          }
938    
939            out_csp = get_colorspace(outhdr);
940    
941          if (inhdr->biWidth != outhdr->biWidth ||          if (inhdr->biWidth != outhdr->biWidth ||
942                  inhdr->biHeight != outhdr->biHeight ||                  inhdr->biHeight != outhdr->biHeight ||
943                  get_colorspace(outhdr) == XVID_CSP_NULL)                  out_csp == XVID_CSP_NULL ||
944                    (in_csp == XVID_CSP_YV12 && in_csp != out_csp))
945          {          {
946                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
947          }          }
# Line 744  Line 982 
982          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
983          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
984          outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */          outhdr->biCompression = BI_RGB; /* sonic foundry vegas video v3 only supports BI_RGB */
985          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
986    
987          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
988          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
989          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 753  Line 992 
992          return ICERR_OK;          return ICERR_OK;
993  }  }
994    
995    #define REG_GET_N(X, Y, Z) \
996    { \
997            DWORD size = sizeof(int); \
998            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
999                    Y=Z; \
1000            } \
1001    }while(0)
1002    
1003  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
1004  {  {
1005            BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
1006          xvid_gbl_init_t init;          xvid_gbl_init_t init;
1007            xvid_gbl_info_t info;
1008          xvid_dec_create_t create;          xvid_dec_create_t create;
1009            HKEY hKey;
1010    
1011            if (init_dll(codec) != 0) return ICERR_ERROR;
1012    
1013          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
1014          init.version = XVID_VERSION;          init.version = XVID_VERSION;
1015          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
1016          xvid_global(0, XVID_GBL_INIT, &init, NULL);          init.debug = codec->config.debug;
1017            codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
1018    
1019            memset(&info, 0, sizeof(info));
1020            info.version = XVID_VERSION;
1021            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
1022    
1023          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
1024          create.version = XVID_VERSION;          create.version = XVID_VERSION;
1025          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
1026          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
1027            create.fourcc = inhdr->biCompression;
1028    
1029        /* Decoder threads */
1030        if (codec->config.cpu & XVID_CPU_FORCE)
1031                    create.num_threads = codec->config.num_threads;
1032            else
1033            create.num_threads = info.num_threads; /* Autodetect */
1034    
1035          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
1036          {          {
1037          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1038                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 786  Line 1049 
1049    
1050          codec->dhandle = create.handle;          codec->dhandle = create.handle;
1051    
1052            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
1053    
1054            REG_GET_N("Brightness", pp_brightness, 0);
1055            REG_GET_N("Deblock_Y",  pp_dy, 0);
1056            REG_GET_N("Deblock_UV", pp_duv, 0);
1057            REG_GET_N("Dering_Y",  pp_dry, 0);
1058            REG_GET_N("Dering_UV", pp_druv, 0);
1059            REG_GET_N("FilmEffect", pp_fe, 0);
1060    
1061            RegCloseKey(hKey);
1062    
1063          return ICERR_OK;          return ICERR_OK;
1064  }  }
1065    
1066    
1067  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1068  {  {
1069          if (codec->dhandle != NULL)          if (codec->m_hdll != NULL) {
1070          {                  if (codec->dhandle != NULL) {
1071                  xvid_decore(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1072                  codec->dhandle = NULL;                  codec->dhandle = NULL;
1073          }          }
1074            }
1075    
1076          return ICERR_OK;          return ICERR_OK;
1077  }  }
1078    
# Line 827  Line 1103 
1103    
1104                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1105                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1106                  convert.input.stride[0] = (((icd->lpbiInput->biWidth *icd->lpbiInput->biBitCount) + 31) & ~31) >> 3;                  convert.input.stride[0] = CALC_BI_STRIDE(icd->lpbiInput->biWidth, icd->lpbiInput->biBitCount);
1107                  if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)                  if (convert.input.csp == XVID_CSP_I420 || convert.input.csp == XVID_CSP_YV12)
1108                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1109    
1110                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1111                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1112                  convert.output.stride[0] = (((icd->lpbiOutput->biWidth *icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;                  convert.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1113                  if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)                  if (convert.output.csp == XVID_CSP_I420 || convert.output.csp == XVID_CSP_YV12)
1114                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1115    
# Line 842  Line 1118 
1118                  convert.interlacing = 0;                  convert.interlacing = 0;
1119                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1120                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1121                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1122                  {                  {
1123                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1124                  }                  }
# Line 863  Line 1139 
1139                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1140                  }                  }
1141                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1142                  frame.output.stride[0] = (((icd->lpbiOutput->biWidth * icd->lpbiOutput->biBitCount) + 31) & ~31) >> 3;                  frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, icd->lpbiOutput->biBitCount);
1143                  if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)                  if (frame.output.csp == XVID_CSP_I420 || frame.output.csp == XVID_CSP_YV12)
1144                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1145          }          }
1146          else          else
1147          {          {
1148                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1149          }          }
1150    
1151          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1152            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1153            if (pp_dry) frame.general |= XVID_DERINGY;
1154            if (pp_druv) frame.general |= XVID_DERINGUV;
1155            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1156    
1157            frame.brightness = pp_brightness;
1158    
1159            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1160          {          {
1161          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1162                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1.1.2.10  
changed lines
  Added in v.1.30.2.2

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