[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 1588, Sat Jan 8 12:28:48 2005 UTC revision 1914, Tue Dec 21 16:56:42 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.28 2010-12-21 16:56:42 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    
430        /* Encoder threads */
431        if (codec->config.cpu & XVID_CPU_FORCE)
432                    create.num_threads = codec->config.num_threads;
433            else
434            create.num_threads = info.num_threads; /* Autodetect */
435    
436          /* plugins */          /* plugins */
437          create.plugins = plugins;          create.plugins = plugins;
438          switch (codec->config.mode)          switch (codec->config.mode)
# Line 504  Line 494 
494    
495                  /* VBV */                  /* VBV */
496                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
497                  pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4;                  pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4; /* 75% */
498                  pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;                  pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
499                  pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */                  pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate;
500    
501                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
502                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
# Line 536  Line 526 
526          }          }
527    
528          /* lumimasking plugin */          /* lumimasking plugin */
529          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)) {
530                    memset(&masking, 0, sizeof(masking));
531                    masking.method = (codec->config.lum_masking==2);
532                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
533                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = &masking;
534                  create.num_plugins++;                  create.num_plugins++;
535          }          }
536    
# Line 553  Line 545 
545          create.fincr = codec->fincr;          create.fincr = codec->fincr;
546          create.fbase = codec->fbase;          create.fbase = codec->fbase;
547    
548          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
549    
550          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
551          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
552          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
553          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
554          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
555          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
556    
557          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
558    
559        /* dxn: prevent bframes usage if interlacing is selected */
560        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
561                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
562                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
563                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 570  Line 565 
565                  if (codec->config.packed)                  if (codec->config.packed)
566                          create.global |= XVID_GLOBAL_PACKED;                          create.global |= XVID_GLOBAL_PACKED;
567    
                 if (codec->config.closed_gov)  
568                          create.global |= XVID_GLOBAL_CLOSED_GOP;                          create.global |= XVID_GLOBAL_CLOSED_GOP;
569    
570          /* restrict max bframes */
571          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
572            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
573    
574          /* DXN: enable packed bframes */
575          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
576            create.global |= XVID_GLOBAL_PACKED;
577          }
578        }
579          }          }
580    
581          create.frame_drop_ratio = codec->config.frame_drop_ratio;      /* dxn: always write divx5 userdata */
582        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
583          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
584    
585          create.num_threads = codec->config.num_threads;          create.frame_drop_ratio = quality_preset->frame_drop_ratio;
586    
587          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
588          {          {
# Line 610  Line 615 
615    
616  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
617  {  {
618      if (codec==NULL)
619        return ICERR_OK;
620    
621          if (codec->m_hdll != NULL) {          if (codec->m_hdll != NULL) {
622                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
623                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
# Line 663  Line 671 
671          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
672          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
673          int length;          int length;
674      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
675        &codec->config.quality_user : &quality_table[codec->config.quality];
676    
677          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
678          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 685  Line 695 
695                  }                  }
696          }          }
697    
         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 */  
         }  
   
698          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {          if ((profiles[codec->config.profile].flags & PROFILE_QPEL) && codec->config.qpel) {
699                  frame.vol_flags |= XVID_VOL_QUARTERPEL;                  frame.vol_flags |= XVID_VOL_QUARTERPEL;
700                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;                  frame.motion |= XVID_ME_QUARTERPELREFINE16 | XVID_ME_QUARTERPELREFINE8;
# Line 704  Line 708 
708          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
709                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
710    
711          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
712      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
713        frame.par = XVID_PAR_11_VGA;
714      } else if (codec->config.ar_mode == 0) { /* PAR */
715                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
716                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
717                  } else {                  } else {
# Line 731  Line 738 
738          if (codec->config.vop_debug)          if (codec->config.vop_debug)
739                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
740    
741          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
742                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
743          }          }
744    
745          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
746              if (quality_preset->motion_search > 4)
747                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
748      }
749    
750          if (codec->config.chromame)          if (quality_preset->chromame)
751                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
752    
753          if (codec->config.turbo)          if (quality_preset->turbo)
754                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
755                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
756                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
757    
758          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
759    
760          if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
761    
762    
763          switch (codec->config.vhq_mode)          switch (quality_preset->vhq_mode)
764          {          {
765          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
766                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 786  Line 795 
795                  break;                  break;
796          }          }
797    
798            if (quality_preset->vhq_metric == 1)
799                    frame.vop_flags |= XVID_VOP_RD_PSNRHVSM;
800    
801          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
802          frame.input.stride[0] = CALC_BI_STRIDE(icc->lpbiInput->biWidth, icc->lpbiInput->biBitCount);          frame.input.stride[0] = CALC_BI_STRIDE(icc->lpbiInput->biWidth, icc->lpbiInput->biBitCount);
803    
# Line 809  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 960  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_gbl_info_t info;
978          xvid_dec_create_t create;          xvid_dec_create_t create;
979          HKEY hKey;          HKEY hKey;
980    
# Line 969  Line 983 
983          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
984          init.version = XVID_VERSION;          init.version = XVID_VERSION;
985          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
986            init.debug = codec->config.debug;
987          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
988    
989            memset(&info, 0, sizeof(info));
990            info.version = XVID_VERSION;
991            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
992    
993          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
994          create.version = XVID_VERSION;          create.version = XVID_VERSION;
995          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
996          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
997            create.fourcc = inhdr->biCompression;
998    
999        /* Decoder threads */
1000        if (codec->config.cpu & XVID_CPU_FORCE)
1001                    create.num_threads = codec->config.num_threads;
1002            else
1003            create.num_threads = info.num_threads; /* Autodetect */
1004    
1005          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
1006          {          {
# Line 996  Line 1022 
1022          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);
1023    
1024          REG_GET_N("Brightness", pp_brightness, 0);          REG_GET_N("Brightness", pp_brightness, 0);
1025          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0);
1026          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0);
1027          REG_GET_N("Dering_Y",  pp_dry, 0)          REG_GET_N("Dering_Y",  pp_dry, 0);
1028          REG_GET_N("Dering_UV", pp_druv, 0)          REG_GET_N("Dering_UV", pp_druv, 0);
1029          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0);
1030    
1031          RegCloseKey(hKey);          RegCloseKey(hKey);
1032    

Legend:
Removed from v.1588  
changed lines
  Added in v.1914

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