[svn] / branches / dev-api-4 / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /branches/dev-api-4/xvidcore/vfw/src/codec.c

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

revision 1305, Sat Jan 3 12:06:11 2004 UTC revision 1356, Sun Feb 8 12:57:07 2004 UTC
# Line 72  Line 72 
72          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
73  */  */
74    
75  int get_colorspace(BITMAPINFOHEADER * hdr)  static int get_colorspace(BITMAPINFOHEADER * hdr)
76  {  {
77          /* rgb only: negative height specifies top down image */          /* rgb only: negative height specifies top down image */
78          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);
# Line 254  Line 254 
254  }  }
255    
256    
257  const char type2char(int type)  static char type2char(int type)
258  {  {
259      if (type==XVID_TYPE_IVOP)      if (type==XVID_TYPE_IVOP)
260          return 'I';          return 'I';
# Line 265  Line 265 
265      return 'S';      return 'S';
266  }  }
267    
268  int vfw_debug(void *handle,  static int vfw_debug(void *handle,
269                           int opt,                           int opt,
270                           void *param1,                           void *param1,
271                           void *param2)                           void *param2)
272  {  {
273          switch (opt) {          switch (opt) {
         case XVID_PLG_INFO:  
274          case XVID_PLG_CREATE:          case XVID_PLG_CREATE:
275                    *((void**)param2) = NULL;
276            case XVID_PLG_INFO:
277          case XVID_PLG_DESTROY:          case XVID_PLG_DESTROY:
278          case XVID_PLG_BEFORE:          case XVID_PLG_BEFORE:
279                  return 0;                  return 0;
# Line 309  Line 310 
310          m_hdll = LoadLibrary(XVID_DLL_NAME);          m_hdll = LoadLibrary(XVID_DLL_NAME);
311          if (m_hdll == NULL) {          if (m_hdll == NULL) {
312                  DPRINTF("dll load failed");                  DPRINTF("dll load failed");
313                  MessageBox(0, XVID_DLL_NAME " not found","Error", 0);                  MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
314                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
315          }          }
316    
# Line 345  Line 346 
346          return 0;          return 0;
347  }  }
348    
349    /* constant-quant zones for fixed quant encoding */
350    static void
351    prepare_cquant_zones(CONFIG * config) {
352    
353            int i = 0;
354            if (config->num_zones == 0 || config->zones[0].frame != 0) {
355                    /* first zone does not start at frame 0 or doesn't exist */
356    
357                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
358    
359                    config->zones[config->num_zones].frame = 0;
360                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
361                    config->zones[config->num_zones].weight = 100;
362                    config->zones[config->num_zones].quant = config->desired_quant;
363                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
364                    config->zones[config->num_zones].greyscale = 0;
365                    config->zones[config->num_zones].chroma_opt = 0;
366                    config->zones[config->num_zones].bvop_threshold = 0;
367                    config->num_zones++;
368    
369                    sort_zones(config->zones, config->num_zones, &i);
370            }
371    
372            /* step 2: let's change all weight zones into quant zones */
373    
374            for(i = 0; i < config->num_zones; i++)
375                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
376                            config->zones[i].mode = RC_ZONE_QUANT;
377                            config->zones[i].quant = (100*config->desired_quant) / config->zones[i].weight;
378                    }
379    }
380    
381    /* full first pass zones */
382    static void
383    prepare_full1pass_zones(CONFIG * config) {
384    
385            int i = 0;
386            if (config->num_zones == 0 || config->zones[0].frame != 0) {
387                    /* first zone does not start at frame 0 or doesn't exist */
388    
389                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
390    
391                    config->zones[config->num_zones].frame = 0;
392                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
393                    config->zones[config->num_zones].weight = 100;
394                    config->zones[config->num_zones].quant = 200;
395                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
396                    config->zones[config->num_zones].greyscale = 0;
397                    config->zones[config->num_zones].chroma_opt = 0;
398                    config->zones[config->num_zones].bvop_threshold = 0;
399                    config->num_zones++;
400    
401                    sort_zones(config->zones, config->num_zones, &i);
402            }
403    
404            /* step 2: let's change all weight zones into quant zones */
405    
406            for(i = 0; i < config->num_zones; i++)
407                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
408                            config->zones[i].mode = RC_ZONE_QUANT;
409                            config->zones[i].quant = 200;
410                    }
411    }
412    
413    
414  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
415  {  {
# Line 355  Line 420 
420          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
421          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
422      int i;      int i;
423            HANDLE hFile;
424    
425            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
426            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
427    
428          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll() != 0) return ICERR_ERROR;
429      /* destroy previously created codec */      /* destroy previously created codec */
# Line 372  Line 441 
441          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
442          create.version = XVID_VERSION;          create.version = XVID_VERSION;
443    
     /* zones */  
     create.zones = malloc(sizeof(xvid_enc_zone_t) * codec->config.num_zones);  
     create.num_zones = codec->config.num_zones;  
     for (i=0; i < create.num_zones; i++) {  
         create.zones[i].frame = codec->config.zones[i].frame;  
         if (codec->config.zones[i].mode == RC_ZONE_QUANT) {  
             create.zones[i].mode = XVID_ZONE_QUANT;  
             create.zones[i].increment = codec->config.zones[i].quant;  
         }else{  
             create.zones[i].mode = XVID_ZONE_WEIGHT;  
             create.zones[i].increment = codec->config.zones[i].weight;  
         }  
         create.zones[i].base = 100;  
     }  
   
444      /* plugins */      /* plugins */
445          create.plugins = plugins;          create.plugins = plugins;
446          switch (codec->config.mode)          switch (codec->config.mode)
# Line 401  Line 455 
455          plugins[create.num_plugins].func = xvid_plugin_single_func;          plugins[create.num_plugins].func = xvid_plugin_single_func;
456          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
457          create.num_plugins++;          create.num_plugins++;
458                    if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
459                            prepare_cquant_zones(&tmpCfg);
460          break;          break;
461    
462          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
463          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
464              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
465          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
466                    if (codec->config.full1pass)
467                            prepare_full1pass_zones(&tmpCfg);
468          plugins[create.num_plugins].func = xvid_plugin_2pass1_func;          plugins[create.num_plugins].func = xvid_plugin_2pass1_func;
469          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
470          create.num_plugins++;          create.num_plugins++;
# Line 423  Line 480 
480          }          }
481                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
482    
483                    hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
484                    if (hFile == INVALID_HANDLE_VALUE)
485                    {
486                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
487                            return XVID_ERR_FAIL;
488                    } else
489                    {
490                            CloseHandle(hFile);
491                    }
492    
493          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
494          pass2.curve_compression_high = codec->config.curve_compression_high;          pass2.curve_compression_high = codec->config.curve_compression_high;
495          pass2.curve_compression_low = codec->config.curve_compression_low;          pass2.curve_compression_low = codec->config.curve_compression_low;
# Line 445  Line 512 
512                  break;                  break;
513          }          }
514    
515            /* zones  - copy from tmpCfg in case we automatically altered them above */
516            create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
517            create.num_zones = tmpCfg.num_zones;
518            for (i=0; i < create.num_zones; i++) {
519                    create.zones[i].frame = tmpCfg.zones[i].frame;
520                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
521                            create.zones[i].mode = XVID_ZONE_QUANT;
522                            create.zones[i].increment = tmpCfg.zones[i].quant;
523                    }else{
524                            create.zones[i].mode = XVID_ZONE_WEIGHT;
525                            create.zones[i].increment = tmpCfg.zones[i].weight;
526                    }
527                    create.zones[i].base = 100;
528            }
529    
530            /* lumimasking plugin */
531          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
532          plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;          plugins[create.num_plugins].func = xvid_plugin_lumimasking_func;
533          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
# Line 693  Line 776 
776          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
777                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
778    
779          if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12)          if (frame.input.csp == XVID_CSP_I420 || frame.input.csp == XVID_CSP_YV12) {
780                  frame.input.stride[0] = (frame.input.stride[0]*2)/3;                  frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
781                    frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
782            }
783    
784          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
785          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
# Line 848  Line 933 
933          return ICERR_OK;          return ICERR_OK;
934  }  }
935    
936    #define REG_GET_N(X, Y, Z) \
937    { \
938            DWORD size = sizeof(int); \
939            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
940                    Y=Z; \
941            } \
942    }while(0)
943    
944  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
945  {  {
946          xvid_gbl_init_t init;          xvid_gbl_init_t init;
947          xvid_dec_create_t create;          xvid_dec_create_t create;
948            HKEY hKey;
949    
950          if (init_dll() != 0) return ICERR_ERROR;          if (init_dll() != 0) return ICERR_ERROR;
951    
# Line 883  Line 976 
976    
977          codec->dhandle = create.handle;          codec->dhandle = create.handle;
978    
979            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
980    
981            REG_GET_N("Deblock_Y",  pp_dy, 0)
982            REG_GET_N("Deblock_UV", pp_duv, 0)
983            REG_GET_N("Dering",  pp_dr, 0)
984            REG_GET_N("FilmEffect", pp_fe, 0)
985    
986            RegCloseKey(hKey);
987    
988          return ICERR_OK;          return ICERR_OK;
989  }  }
990    
# Line 973  Line 1075 
1075                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1076          }          }
1077    
1078            if (pp_dy)frame.general |= XVID_DEBLOCKY;
1079            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1080    /*      if (pp_dr) frame.general |= XVID_DERING; */
1081            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1082    
1083          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          switch (xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1084          {          {
1085          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :

Legend:
Removed from v.1305  
changed lines
  Added in v.1356

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