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

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

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

revision 1437, Sun Apr 18 07:55:11 2004 UTC revision 1910, Thu Dec 2 06:46:07 2010 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: codec.c,v 1.27 2010-12-02 06:46:07 Isibaar Exp $
   
 /**************************************************************************  
  *  
  *      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    
# Line 221  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 421  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;          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 */          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));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
# Line 440  Line 420 
420          init.debug = codec->config.debug;          init.debug = codec->config.debug;
421          codec->xvid_global_func(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    
# Line 502  Line 486 
486                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
487                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
488    
489                    /* VBV */
490                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
491                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
492                    pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
493                    pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate;
494    
495                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
496                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
497                  create.num_plugins++;                  create.num_plugins++;
# Line 530  Line 520 
520          }          }
521    
522          /* lumimasking plugin */          /* lumimasking plugin */
523          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && (codec->config.lum_masking>0)) {
524                    memset(&masking, 0, sizeof(masking));
525                    masking.method = (codec->config.lum_masking==2);
526                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
527                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = &masking;
528                  create.num_plugins++;                  create.num_plugins++;
529          }          }
530    
# Line 547  Line 539 
539          create.fincr = codec->fincr;          create.fincr = codec->fincr;
540          create.fbase = codec->fbase;          create.fbase = codec->fbase;
541    
542          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
543    
544          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
545          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
546          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
547          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
548          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
549          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
550    
551          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
552    
553        /* dxn: prevent bframes usage if interlacing is selected */
554        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
555                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
556                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
557                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 564  Line 559 
559                  if (codec->config.packed)                  if (codec->config.packed)
560                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
561    
                 if (codec->config.closed_gov)  
562                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
563    
564          }        /* restrict max bframes */
565          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
566            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
567    
568          create.frame_drop_ratio = codec->config.frame_drop_ratio;        /* DXN: enable packed bframes */
569          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
570            create.global |= XVID_GLOBAL_PACKED;
571          }
572        }
573            }
574    
575        /* dxn: always write divx5 userdata */
576        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
577          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
578    
579            create.frame_drop_ratio = quality_preset->frame_drop_ratio;
580    
581        /* Encoder threads */
582        if (codec->config.num_threads == 0)
583            create.num_threads = info.num_threads; /* Autodetect */
584        else if (codec->config.num_threads == 1)
585            create.num_threads = -1; /* Single-threaded, disable SMP */
586        else
587          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
588    
589    
590          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
591          {          {
592          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 588  Line 602 
602                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
603          }          }
604    
605            free(create.zones);
606          codec->ehandle = create.handle;          codec->ehandle = create.handle;
607          codec->framenum = 0;          codec->framenum = 0;
608          codec->keyspacing = 0;          codec->keyspacing = 0;
# Line 603  Line 618 
618    
619  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
620  {  {
621      if (codec==NULL)
622        return ICERR_OK;
623    
624          if (codec->m_hdll != NULL) {          if (codec->m_hdll != NULL) {
625                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
626                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
# Line 636  Line 654 
654                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
655          }          }
656    
657            if (config->zones[i].cartoon_mode) {
658                    frame->vop_flags |= XVID_VOP_CARTOON;
659                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
660            }
661    
662          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
663                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
664          }          }
665  }  }
666    
667    
668    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
669    
670  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
671  {  {
672          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 649  Line 674 
674          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
675          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
676          int length;          int length;
677      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
678        &codec->config.quality_user : &quality_table[codec->config.quality];
679    
680          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
681          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 671  Line 698 
698                  }                  }
699          }          }
700    
         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 */  
         }  
   
701          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
702                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
703                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 690  Line 711 
711          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
712                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
713    
714          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
715      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
716        frame.par = XVID_PAR_11_VGA;
717      } else if (codec->config.ar_mode == 0) { /* PAR */
718                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
719                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
720                  } else {                  } else {
# Line 710  Line 734 
734          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
735          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
736    
737            if (codec->config.interlacing && codec->config.tff)
738                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
739    
740    
741          if (codec->config.vop_debug)          if (codec->config.vop_debug)
742                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
743    
744          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
745                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
746          }          }
747    
748          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
749              if (quality_preset->motion_search > 4)
750                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
751      }
752    
753          if (codec->config.chromame)          if (quality_preset->chromame)
754                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
755    
756          if (codec->config.cartoon_mode) {          if (quality_preset->turbo)
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
         if (codec->config.turbo)  
757                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
758                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
759                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
760    
761          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
762    
763            if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
764    
765          switch (codec->config.vhq_mode)  
766            switch (quality_preset->vhq_mode)
767          {          {
768          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
769                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 771  Line 799 
799          }          }
800    
801          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
802          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);
803    
804          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
805                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 793  Line 821 
821          }          }
822    
823          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
824          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
825                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
826    
827          /* frame-based stuff */          /* frame-based stuff */
# Line 924  Line 952 
952          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
953          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
954          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 */
955          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
956    
957          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
958          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
959          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 943  Line 972 
972    
973  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
974  {  {
975            BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
976          xvid_gbl_init_t init;          xvid_gbl_init_t init;
977          xvid_dec_create_t create;          xvid_dec_create_t create;
978          HKEY hKey;          HKEY hKey;
# Line 952  Line 982 
982          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
983          init.version = XVID_VERSION;          init.version = XVID_VERSION;
984          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
985            init.debug = codec->config.debug;
986          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
987    
988          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
989          create.version = XVID_VERSION;          create.version = XVID_VERSION;
990          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
991          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
992            create.fourcc = inhdr->biCompression;
993    
994          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
995          {          {
# Line 979  Line 1011 
1011          RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);          RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
1012    
1013          REG_GET_N("Brightness", pp_brightness, 0);          REG_GET_N("Brightness", pp_brightness, 0);
1014          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0);
1015          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0);
1016          REG_GET_N("Dering_Y",  pp_dry, 0)          REG_GET_N("Dering_Y",  pp_dry, 0);
1017          REG_GET_N("Dering_UV", pp_druv, 0)          REG_GET_N("Dering_UV", pp_druv, 0);
1018          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0);
1019    
1020          RegCloseKey(hKey);          RegCloseKey(hKey);
1021    
# Line 1030  Line 1062 
1062    
1063                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1064                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1065                  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);
1066                  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)
1067                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1068    
1069                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1070                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1071                  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);
1072                  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)
1073                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1074    
# Line 1066  Line 1098 
1098                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1099                  }                  }
1100                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1101                  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);
1102                  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)
1103                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1104          }          }
1105          else          else
1106          {          {

Legend:
Removed from v.1437  
changed lines
  Added in v.1910

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