[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 1592, Mon Jan 10 05:01:01 2005 UTC revision 2138, Tue Sep 27 15:38:54 2016 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    
# Line 183  Line 159 
159                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
160          }          }
161    
162            if ((inhdr->biWidth % 4) || (inhdr->biHeight % 4))
163            {
164                    return ICERR_BADFORMAT;
165            }
166    
167          if (lpbiOutput == NULL)          if (lpbiOutput == NULL)
168          {          {
169                  return ICERR_OK;                  return ICERR_OK;
# Line 221  Line 202 
202          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
203          outhdr->biClrImportant = 0;          outhdr->biClrImportant = 0;
204    
205          if (codec->config.fourcc_used == 0)          if ((codec->config.fourcc_used == 0) || (profiles[codec->config.profile].flags & PROFILE_XVID))
206          {          {
207                  outhdr->biCompression = FOURCC_XVID;                  outhdr->biCompression = FOURCC_XVID;
208          }          }
# Line 421  Line 402 
402          xvid_plugin_single_t single;          xvid_plugin_single_t single;
403          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
404          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
405            xvid_plugin_lumimasking_t masking;
406        xvid_gbl_info_t info;
407          int i;          int i;
408          HANDLE hFile;          HANDLE hFile;
409            const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
410        &codec->config.quality_user : &quality_table[codec->config.quality];
411    
412          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 */
413          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
# Line 440  Line 425 
425          init.debug = codec->config.debug;          init.debug = codec->config.debug;
426          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
427    
428            memset(&info, 0, sizeof(info));
429            info.version = XVID_VERSION;
430            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
431    
432          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
433          create.version = XVID_VERSION;          create.version = XVID_VERSION;
434    
435        /* Encoder threads */
436        if (codec->config.cpu & XVID_CPU_FORCE)
437                    create.num_threads = codec->config.num_threads;
438            else
439            create.num_threads = info.num_threads; /* Autodetect */
440    
441            /* Encoder slices */
442            if ((profiles[codec->config.profile].flags & PROFILE_RESYNCMARKER) && codec->config.num_slices != 1) {
443    
444                    if (codec->config.num_slices == 0) { /* auto */
445                            int mb_width = (lpbiInput->bmiHeader.biWidth + 15) / 16;
446                            int mb_height = (lpbiInput->bmiHeader.biHeight + 15) / 16;
447    
448                            int slices = (int)((mb_width*mb_height) / 811); /* use multiple slices only above SD resolutions for now */
449    
450                            if (slices > 1) {
451                                    if (create.num_threads <= 1)
452                                            slices &= ~1; /* make even */
453                                    else if (create.num_threads <= slices)
454                                            slices = (slices / create.num_threads) * create.num_threads; /* multiple of threads */
455                                    else if (create.num_threads % slices)
456                                            slices = (!(create.num_threads%2)) ? (create.num_threads/2) : (create.num_threads/3);
457                            }
458    
459                            create.num_slices = slices;
460                    }
461                    else {
462                            create.num_slices = codec->config.num_slices; /* force manual value - by registry edit */
463                    }
464    
465            }
466    
467          /* plugins */          /* plugins */
468          create.plugins = plugins;          create.plugins = plugins;
469          switch (codec->config.mode)          switch (codec->config.mode)
# Line 504  Line 525 
525    
526                  /* VBV */                  /* VBV */
527                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;                  pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
528                  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% */
529                  pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;                  pass2.vbv_maxrate = profiles[codec->config.profile].max_bitrate;
530                  pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */                  pass2.vbv_peakrate = profiles[codec->config.profile].vbv_peakrate;
531    
532                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
533                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
# Line 536  Line 557 
557          }          }
558    
559          /* lumimasking plugin */          /* lumimasking plugin */
560          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)) {
561                    memset(&masking, 0, sizeof(masking));
562                    masking.method = (codec->config.lum_masking==2);
563                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
564                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = &masking;
565                  create.num_plugins++;                  create.num_plugins++;
566          }          }
567    
568            if (config->debug > 0) {
569          plugins[create.num_plugins].func = vfw_debug;          plugins[create.num_plugins].func = vfw_debug;
570          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
571          create.num_plugins++;          create.num_plugins++;
572            }
573    
574          create.profile = profiles[codec->config.profile].id;          create.profile = profiles[codec->config.profile].id;
575    
# Line 553  Line 578 
578          create.fincr = codec->fincr;          create.fincr = codec->fincr;
579          create.fbase = codec->fbase;          create.fbase = codec->fbase;
580    
581          create.max_key_interval = codec->config.max_key_interval;          create.max_key_interval = quality_preset->max_key_interval;
582    
583          create.min_quant[0] = codec->config.min_iquant;          create.min_quant[0] = quality_preset->min_iquant;
584          create.max_quant[0] = codec->config.max_iquant;          create.max_quant[0] = quality_preset->max_iquant;
585          create.min_quant[1] = codec->config.min_pquant;          create.min_quant[1] = quality_preset->min_pquant;
586          create.max_quant[1] = codec->config.max_pquant;          create.max_quant[1] = quality_preset->max_pquant;
587          create.min_quant[2] = codec->config.min_bquant;          create.min_quant[2] = quality_preset->min_bquant;
588          create.max_quant[2] = codec->config.max_bquant;          create.max_quant[2] = quality_preset->max_bquant;
589    
590          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {          if ((profiles[codec->config.profile].flags & PROFILE_BVOP) && codec->config.use_bvop) {
591    
592        /* dxn: prevent bframes usage if interlacing is selected */
593        if (!((profiles[codec->config.profile].flags & PROFILE_EXTRA) && codec->config.interlacing)) {
594                  create.max_bframes = codec->config.max_bframes;                  create.max_bframes = codec->config.max_bframes;
595                  create.bquant_ratio = codec->config.bquant_ratio;                  create.bquant_ratio = codec->config.bquant_ratio;
596                  create.bquant_offset = codec->config.bquant_offset;                  create.bquant_offset = codec->config.bquant_offset;
# Line 572  Line 600 
600    
601                  create.global |= XVID_GLOBAL_CLOSED_GOP;                  create.global |= XVID_GLOBAL_CLOSED_GOP;
602    
603          }        /* restrict max bframes */
604          if ((create.max_bframes > profiles[codec->config.profile].xvid_max_bframes) && (profiles[codec->config.profile].xvid_max_bframes >= 0))
605            create.max_bframes = profiles[codec->config.profile].xvid_max_bframes;
606    
607          create.frame_drop_ratio = codec->config.frame_drop_ratio;        /* DXN: enable packed bframes */
608          if ((profiles[codec->config.profile].flags & PROFILE_PACKED)) {
609            create.global |= XVID_GLOBAL_PACKED;
610          }
611        }
612            }
613    
614          create.num_threads = codec->config.num_threads;      /* dxn: always write divx5 userdata */
615        if ((profiles[codec->config.profile].flags & PROFILE_EXTRA))
616          create.global |= XVID_GLOBAL_DIVX5_USERDATA;
617    
618            if ((profiles[codec->config.profile].flags & PROFILE_EXTRA) ||
619                    (profiles[codec->config.profile].flags & PROFILE_XVID)) {
620              create.frame_drop_ratio = 0;
621            } else {
622              create.frame_drop_ratio = quality_preset->frame_drop_ratio;
623            }
624    
625          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
626          {          {
# Line 609  Line 653 
653    
654  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
655  {  {
656      if (codec==NULL)
657        return ICERR_OK;
658    
659          if (codec->m_hdll != NULL) {          if (codec->m_hdll != NULL) {
660                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
661                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
# Line 662  Line 709 
709          xvid_enc_frame_t frame;          xvid_enc_frame_t frame;
710          xvid_enc_stats_t stats;          xvid_enc_stats_t stats;
711          int length;          int length;
712      const quality_t* quality_preset = (codec->config.quality==quality_table_num) ?
713        &codec->config.quality_user : &quality_table[codec->config.quality];
714    
715          memset(&frame, 0, sizeof(frame));          memset(&frame, 0, sizeof(frame));
716          frame.version = XVID_VERSION;          frame.version = XVID_VERSION;
# Line 697  Line 746 
746          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
747                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
748    
749          if (codec->config.ar_mode == 0) { /* PAR */    /* dxn: force 1:1 picture aspect ration */
750      if ((profiles[codec->config.profile].flags & PROFILE_EXTRA)) {
751        frame.par = XVID_PAR_11_VGA;
752      } else if (codec->config.ar_mode == 0) { /* PAR */
753                  if (codec->config.display_aspect_ratio != 5) {                  if (codec->config.display_aspect_ratio != 5) {
754                          frame.par = codec->config.display_aspect_ratio + 1;                          frame.par = codec->config.display_aspect_ratio + 1;
755                  } else {                  } else {
# Line 724  Line 776 
776          if (codec->config.vop_debug)          if (codec->config.vop_debug)
777                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
778    
779          if (codec->config.trellis_quant) {          if (quality_preset->trellis_quant) {
780                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;                  frame.vop_flags |= XVID_VOP_TRELLISQUANT;
781          }          }
782    
783          if (codec->config.motion_search > 4)    if ((profiles[codec->config.profile].flags & PROFILE_4MV)) {
784              if (quality_preset->motion_search > 4)
785                  frame.vop_flags |= XVID_VOP_INTER4V;                  frame.vop_flags |= XVID_VOP_INTER4V;
786      }
787    
788          if (codec->config.chromame)          if (quality_preset->chromame)
789                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
790    
791          if (codec->config.turbo)          if (quality_preset->turbo)
792                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
793                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
794                                                  XVID_ME_BFRAME_EARLYSTOP;                                                  XVID_ME_BFRAME_EARLYSTOP;
795    
796          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[quality_preset->motion_search];
797    
798          if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;          if (quality_preset->vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
799    
800    
801          switch (codec->config.vhq_mode)          switch (quality_preset->vhq_mode)
802          {          {
803          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
804                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;                  frame.vop_flags |= XVID_VOP_MODEDECISION_RD;
# Line 779  Line 833 
833                  break;                  break;
834          }          }
835    
836            if (quality_preset->vhq_metric == 1)
837                    frame.vop_flags |= XVID_VOP_RD_PSNRHVSM;
838    
839          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
840          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);
841    
# Line 802  Line 859 
859          }          }
860    
861          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
862          if (codec->config.motion_search == 0)          if (quality_preset->motion_search == 0)
863                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
864    
865          /* frame-based stuff */          /* frame-based stuff */
# Line 874  Line 931 
931  {  {
932          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;          BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
933          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;          BITMAPINFOHEADER * outhdr = &lpbiOutput->bmiHeader;
934            int in_csp = XVID_CSP_NULL, out_csp = XVID_CSP_NULL;
935    
936          if (lpbiInput == NULL)          if (lpbiInput == NULL)
937          {          {
938                  return ICERR_ERROR;                  return ICERR_ERROR;
939          }          }
940    
941          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 && inhdr->biCompression != FOURCC_MP4V &&
942                    inhdr->biCompression != FOURCC_xvid && inhdr->biCompression != FOURCC_divx && inhdr->biCompression != FOURCC_dx50 && inhdr->biCompression != FOURCC_mp4v &&
943                    (in_csp = get_colorspace(inhdr)) != XVID_CSP_YV12)
944          {          {
945                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
946          }          }
# Line 890  Line 950 
950                  return ICERR_OK;                  return ICERR_OK;
951          }          }
952    
953            out_csp = get_colorspace(outhdr);
954    
955          if (inhdr->biWidth != outhdr->biWidth ||          if (inhdr->biWidth != outhdr->biWidth ||
956                  inhdr->biHeight != outhdr->biHeight ||                  inhdr->biHeight != outhdr->biHeight ||
957                  get_colorspace(outhdr) == XVID_CSP_NULL)                  out_csp == XVID_CSP_NULL ||
958                    (in_csp == XVID_CSP_YV12 && in_csp != out_csp))
959          {          {
960                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
961          }          }
# Line 953  Line 1016 
1016    
1017  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
1018  {  {
1019            BITMAPINFOHEADER * inhdr = &lpbiInput->bmiHeader;
1020          xvid_gbl_init_t init;          xvid_gbl_init_t init;
1021            xvid_gbl_info_t info;
1022          xvid_dec_create_t create;          xvid_dec_create_t create;
1023          HKEY hKey;          HKEY hKey;
1024    
# Line 962  Line 1027 
1027          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
1028          init.version = XVID_VERSION;          init.version = XVID_VERSION;
1029          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
1030            init.debug = codec->config.debug;
1031          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
1032    
1033            memset(&info, 0, sizeof(info));
1034            info.version = XVID_VERSION;
1035            codec->xvid_global_func(0, XVID_GBL_INFO, &info, NULL);
1036    
1037          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
1038          create.version = XVID_VERSION;          create.version = XVID_VERSION;
1039          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
1040          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
1041            create.fourcc = inhdr->biCompression;
1042    
1043        /* Decoder threads */
1044        if (codec->config.cpu & XVID_CPU_FORCE)
1045                    create.num_threads = codec->config.num_threads;
1046            else
1047            create.num_threads = info.num_threads; /* Autodetect */
1048    
1049          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
1050          {          {
# Line 989  Line 1066 
1066          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);
1067    
1068          REG_GET_N("Brightness", pp_brightness, 0);          REG_GET_N("Brightness", pp_brightness, 0);
1069          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0);
1070          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0);
1071          REG_GET_N("Dering_Y",  pp_dry, 0)          REG_GET_N("Dering_Y",  pp_dry, 0);
1072          REG_GET_N("Dering_UV", pp_druv, 0)          REG_GET_N("Dering_UV", pp_druv, 0);
1073          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0);
1074    
1075          RegCloseKey(hKey);          RegCloseKey(hKey);
1076    
# Line 1021  Line 1098 
1098          /* --- yv12 --- */          /* --- yv12 --- */
1099          if (icd->lpbiInput->biCompression != FOURCC_XVID &&          if (icd->lpbiInput->biCompression != FOURCC_XVID &&
1100                   icd->lpbiInput->biCompression != FOURCC_DIVX &&                   icd->lpbiInput->biCompression != FOURCC_DIVX &&
1101                   icd->lpbiInput->biCompression != FOURCC_DX50)                   icd->lpbiInput->biCompression != FOURCC_DX50 &&
1102                     icd->lpbiInput->biCompression != FOURCC_MP4V &&
1103                     icd->lpbiInput->biCompression != FOURCC_xvid &&
1104                     icd->lpbiInput->biCompression != FOURCC_divx &&
1105                     icd->lpbiInput->biCompression != FOURCC_dx50 &&
1106                     icd->lpbiInput->biCompression != FOURCC_mp4v)
1107          {          {
1108                  xvid_gbl_convert_t convert;                  xvid_gbl_convert_t convert;
1109    

Legend:
Removed from v.1592  
changed lines
  Added in v.2138

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