[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 1382, Mon Mar 22 22:36:25 2004 UTC revision 1588, Sat Jan 8 12:28:48 2005 UTC
# Line 57  Line 57 
57  #include "codec.h"  #include "codec.h"
58  #include "status.h"  #include "status.h"
59    
 HINSTANCE m_hdll;  
 int (*xvid_global_func)(void *handle, int opt, void *param1, void *param2);  
 int (*xvid_encore_func)(void *handle, int opt, void *param1, void *param2);  
 int (*xvid_decore_func)(void *handle, int opt, void *param1, void *param2);  
   
 xvid_plugin_func *xvid_plugin_single_func,  
                                 *xvid_plugin_2pass1_func,  
                                 *xvid_plugin_2pass2_func,  
                                 *xvid_plugin_lumimasking_func,  
                                 *xvid_plugin_psnr_func;  
   
60    
61    
62  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
# Line 314  Line 303 
303    
304  #define XVID_DLL_NAME "xvidcore.dll"  #define XVID_DLL_NAME "xvidcore.dll"
305    
306  static int init_dll()  static int init_dll(CODEC* codec)
307  {  {
308          if (m_hdll != NULL) return 0;          if (codec->m_hdll != NULL)
309                    return 0;
310    
311          DPRINTF("init_dll");          DPRINTF("init_dll");
312          m_hdll = LoadLibrary(XVID_DLL_NAME);          codec->m_hdll = LoadLibrary(XVID_DLL_NAME);
313          if (m_hdll == NULL) {          if (codec->m_hdll == NULL) {
314                  DPRINTF("dll load failed");                  DPRINTF("dll load failed");
315                  MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);                  MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
316                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
317          }          }
318    
319          xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global");          codec->xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_global");
320          if (xvid_global_func == NULL) {          if (codec->xvid_global_func == NULL) {
321                  MessageBox(0, "xvid_global() not found", "Error", 0);                  MessageBox(0, "xvid_global() not found", "Error", 0);
322                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
323          }          }
324    
325          xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_encore");          codec->xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_encore");
326          if (xvid_encore_func == NULL) {          if (codec->xvid_encore_func == NULL) {
327                  MessageBox(0, "xvid_encore() not found", "Error", 0);                  MessageBox(0, "xvid_encore() not found", "Error", 0);
328                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
329          }          }
330    
331          xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_decore");          codec->xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_decore");
332          if (xvid_decore_func == NULL) {          if (codec->xvid_decore_func == NULL) {
333                  MessageBox(0, "xvid_decore() not found", "Error", 0);                  MessageBox(0, "xvid_decore() not found", "Error", 0);
334                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
335          }          }
336    
337          xvid_plugin_single_func =          codec->xvid_plugin_single_func =
338                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_single"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_single"));
339          xvid_plugin_2pass1_func =          codec->xvid_plugin_2pass1_func =
340                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass1"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass1"));
341          xvid_plugin_2pass2_func =          codec->xvid_plugin_2pass2_func =
342                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_2pass2"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass2"));
343          xvid_plugin_lumimasking_func =          codec->xvid_plugin_lumimasking_func =
344                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_lumimasking"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_lumimasking"));
345          xvid_plugin_psnr_func =          codec->xvid_plugin_psnr_func =
346                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(m_hdll, "xvid_plugin_psnr"));                  (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_psnr"));
347    
348          return 0;          return 0;
349  }  }
# Line 437  Line 427 
427          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 */
428          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));          memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
429    
430          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
431          /* destroy previously created codec */          /* destroy previously created codec */
432          if(codec->ehandle) {          if(codec->ehandle) {
433                  xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
434                  codec->ehandle = NULL;                  codec->ehandle = NULL;
435          }          }
436    
# Line 448  Line 438 
438          init.version = XVID_VERSION;          init.version = XVID_VERSION;
439          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
440          init.debug = codec->config.debug;          init.debug = codec->config.debug;
441          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
442    
443          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
444          create.version = XVID_VERSION;          create.version = XVID_VERSION;
# Line 464  Line 454 
454                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;                  single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
455                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
456                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
457                  plugins[create.num_plugins].func = xvid_plugin_single_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
458                  plugins[create.num_plugins].param = &single;                  plugins[create.num_plugins].param = &single;
459                  create.num_plugins++;                  create.num_plugins++;
460                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */                  if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
# Line 477  Line 467 
467                  pass1.filename = codec->config.stats;                  pass1.filename = codec->config.stats;
468                  if (codec->config.full1pass)                  if (codec->config.full1pass)
469                          prepare_full1pass_zones(&tmpCfg);                          prepare_full1pass_zones(&tmpCfg);
470                  plugins[create.num_plugins].func = xvid_plugin_2pass1_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
471                  plugins[create.num_plugins].param = &pass1;                  plugins[create.num_plugins].param = &pass1;
472                  create.num_plugins++;                  create.num_plugins++;
473                  break;                  break;
# Line 512  Line 502 
502                  pass2.kfthreshold = codec->config.kfthreshold;                  pass2.kfthreshold = codec->config.kfthreshold;
503                  pass2.container_frame_overhead = 24;    /* AVI */                  pass2.container_frame_overhead = 24;    /* AVI */
504    
505                  plugins[create.num_plugins].func = xvid_plugin_2pass2_func;                  /* VBV */
506                    pass2.vbv_size = profiles[codec->config.profile].max_vbv_size;
507                    pass2.vbv_initial = (profiles[codec->config.profile].max_vbv_size*3)/4;
508                    pass2.vbv_maxrate = 1000*profiles[codec->config.profile].max_bitrate;
509                    pass2.vbv_peakrate = 10000000; /* 10mbps -- fixme */
510    
511                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
512                  plugins[create.num_plugins].param = &pass2;                  plugins[create.num_plugins].param = &pass2;
513                  create.num_plugins++;                  create.num_plugins++;
514                  break;                  break;
# Line 541  Line 537 
537    
538          /* lumimasking plugin */          /* lumimasking plugin */
539          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
540                  plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
541                  plugins[create.num_plugins].param = NULL;                  plugins[create.num_plugins].param = NULL;
542                  create.num_plugins++;                  create.num_plugins++;
543          }          }
# Line 583  Line 579 
579    
580          create.num_threads = codec->config.num_threads;          create.num_threads = codec->config.num_threads;
581    
582          switch(xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
583          {          {
584          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
585                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 598  Line 594 
594                  return ICERR_UNSUPPORTED;                  return ICERR_UNSUPPORTED;
595          }          }
596    
597            free(create.zones);
598          codec->ehandle = create.handle;          codec->ehandle = create.handle;
599          codec->framenum = 0;          codec->framenum = 0;
600          codec->keyspacing = 0;          codec->keyspacing = 0;
# Line 613  Line 610 
610    
611  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
612  {  {
613          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
614                  if (codec->ehandle != NULL) {                  if (codec->ehandle != NULL) {
615                          xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
616                          codec->ehandle = NULL;                          codec->ehandle = NULL;
617                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
618          }          }
619    
620          if (codec->config.display_status)          if (codec->config.display_status)
# Line 648  Line 643 
643                  frame->vop_flags |= XVID_VOP_CHROMAOPT;                  frame->vop_flags |= XVID_VOP_CHROMAOPT;
644          }          }
645    
646            if (config->zones[i].cartoon_mode) {
647                    frame->vop_flags |= XVID_VOP_CARTOON;
648                    frame->motion |= XVID_ME_DETECT_STATIC_MOTION;
649            }
650    
651          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {          if ((profiles[config->profile].flags & PROFILE_BVOP) && config->use_bvop) {
652                  frame->bframe_threshold = config->zones[i].bvop_threshold;                  frame->bframe_threshold = config->zones[i].bvop_threshold;
653          }          }
654  }  }
655    
656    
657    #define CALC_BI_STRIDE(width,bitcount)  ((((width * bitcount) + 31) & ~31) >> 3)
658    
659  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)  LRESULT compress(CODEC * codec, ICCOMPRESS * icc)
660  {  {
661          BITMAPINFOHEADER * inhdr = icc->lpbiInput;          BITMAPINFOHEADER * inhdr = icc->lpbiInput;
# Line 722  Line 724 
724          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
725          frame.vop_flags |= XVID_VOP_HQACPRED;          frame.vop_flags |= XVID_VOP_HQACPRED;
726    
727            if (codec->config.interlacing && codec->config.tff)
728                    frame.vop_flags |= XVID_VOP_TOPFIELDFIRST;
729    
730    
731          if (codec->config.vop_debug)          if (codec->config.vop_debug)
732                  frame.vop_flags |= XVID_VOP_DEBUG;                  frame.vop_flags |= XVID_VOP_DEBUG;
733    
# Line 735  Line 741 
741          if (codec->config.chromame)          if (codec->config.chromame)
742                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;                  frame.motion |= XVID_ME_CHROMA_PVOP + XVID_ME_CHROMA_BVOP;
743    
         if (codec->config.cartoon_mode) {  
                 frame.vop_flags |= XVID_VOP_CARTOON;  
                 frame.motion |= XVID_ME_DETECT_STATIC_MOTION;  
         }  
   
744          if (codec->config.turbo)          if (codec->config.turbo)
745                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |                  frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
746                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |                                                  XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
# Line 747  Line 748 
748    
749          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
750    
751            if (codec->config.vhq_bframe) frame.vop_flags |= XVID_VOP_RD_BVOP;
752    
753    
754          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
755          {          {
756          case VHQ_MODE_DECISION :          case VHQ_MODE_DECISION :
# Line 783  Line 787 
787          }          }
788    
789          frame.input.plane[0] = icc->lpInput;          frame.input.plane[0] = icc->lpInput;
790          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);
791    
792          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
793                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
# Line 816  Line 820 
820          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
821          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
822    
823          length = xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
824          switch (length)          switch (length)
825          {          {
826          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 936  Line 940 
940          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
941          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
942          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 */
943          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biHeight * CALC_BI_STRIDE(outhdr->biWidth, outhdr->biBitCount);
944    
945          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
946          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
947          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 959  Line 964 
964          xvid_dec_create_t create;          xvid_dec_create_t create;
965          HKEY hKey;          HKEY hKey;
966    
967          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll(codec) != 0) return ICERR_ERROR;
968    
969          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
970          init.version = XVID_VERSION;          init.version = XVID_VERSION;
971          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
972          xvid_global_func(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
973    
974          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
975          create.version = XVID_VERSION;          create.version = XVID_VERSION;
976          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
977          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
978    
979          switch(xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
980          {          {
981          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
982                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 990  Line 995 
995    
996          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);
997    
998            REG_GET_N("Brightness", pp_brightness, 0);
999          REG_GET_N("Deblock_Y",  pp_dy, 0)          REG_GET_N("Deblock_Y",  pp_dy, 0)
1000          REG_GET_N("Deblock_UV", pp_duv, 0)          REG_GET_N("Deblock_UV", pp_duv, 0)
1001          REG_GET_N("Dering",  pp_dr, 0)          REG_GET_N("Dering_Y",  pp_dry, 0)
1002            REG_GET_N("Dering_UV", pp_druv, 0)
1003          REG_GET_N("FilmEffect", pp_fe, 0)          REG_GET_N("FilmEffect", pp_fe, 0)
1004    
1005          RegCloseKey(hKey);          RegCloseKey(hKey);
# Line 1003  Line 1010 
1010    
1011  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1012  {  {
1013          if (m_hdll != NULL) {          if (codec->m_hdll != NULL) {
1014                  if (codec->dhandle != NULL) {                  if (codec->dhandle != NULL) {
1015                          xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
1016                          codec->dhandle = NULL;                          codec->dhandle = NULL;
1017                  }                  }
                 FreeLibrary(m_hdll);  
                 m_hdll = NULL;  
1018          }          }
1019    
1020          return ICERR_OK;          return ICERR_OK;
# Line 1042  Line 1047 
1047    
1048                  convert.input.csp = get_colorspace(icd->lpbiInput);                  convert.input.csp = get_colorspace(icd->lpbiInput);
1049                  convert.input.plane[0] = icd->lpInput;                  convert.input.plane[0] = icd->lpInput;
1050                  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);
1051                  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)
1052                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;                          convert.input.stride[0] = (convert.input.stride[0]*2)/3;
1053    
1054                  convert.output.csp = get_colorspace(icd->lpbiOutput);                  convert.output.csp = get_colorspace(icd->lpbiOutput);
1055                  convert.output.plane[0] = icd->lpOutput;                  convert.output.plane[0] = icd->lpOutput;
1056                  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);
1057                  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)
1058                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;                          convert.output.stride[0] = (convert.output.stride[0]*2)/3;
1059    
# Line 1057  Line 1062 
1062                  convert.interlacing = 0;                  convert.interlacing = 0;
1063                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1064                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1065                          xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1066                  {                  {
1067                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1068                  }                  }
# Line 1078  Line 1083 
1083                          return ICERR_BADFORMAT;                          return ICERR_BADFORMAT;
1084                  }                  }
1085                  frame.output.plane[0] = icd->lpOutput;                  frame.output.plane[0] = icd->lpOutput;
1086                  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);
1087                  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)
1088                          frame.output.stride[0] = (frame.output.stride[0]*2)/3;                          frame.output.stride[0] = CALC_BI_STRIDE(icd->lpbiOutput->biWidth, 8);
1089          }          }
1090          else          else
1091          {          {
# Line 1089  Line 1094 
1094    
1095          if (pp_dy)frame.general |= XVID_DEBLOCKY;          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1096          if (pp_duv) frame.general |= XVID_DEBLOCKUV;          if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1097  /*      if (pp_dr) frame.general |= XVID_DERING; */          if (pp_dry) frame.general |= XVID_DERINGY;
1098            if (pp_druv) frame.general |= XVID_DERINGUV;
1099          if (pp_fe) frame.general |= XVID_FILMEFFECT;          if (pp_fe) frame.general |= XVID_FILMEFFECT;
1100    
1101          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          frame.brightness = pp_brightness;
1102    
1103            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1104          {          {
1105          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1106                  return ICERR_ERROR;                  return ICERR_ERROR;

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

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