[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 1193, Tue Oct 28 23:42:09 2003 UTC revision 1393, Wed Mar 31 11:55:34 2004 UTC
# Line 49  Line 49 
49    
50  #include <windows.h>  #include <windows.h>
51  #include <vfw.h>  #include <vfw.h>
52    #include <stdio.h>
53  #include "vfwext.h"  #include "vfwext.h"
54    
55  #include <xvid.h>  #include <xvid.h>
# Line 57  Line 58 
58  #include "status.h"  #include "status.h"
59    
60    
61    
62  static const int pmvfast_presets[7] = {  static const int pmvfast_presets[7] = {
63          0, 0, 0, 0,          0, 0, 0, 0,
64          0 | XVID_ME_HALFPELREFINE16 | 0,          0 | XVID_ME_HALFPELREFINE16 | 0,
# Line 71  Line 73 
73          or XVID_CSP_NULL if failure          or XVID_CSP_NULL if failure
74  */  */
75    
76  int get_colorspace(BITMAPINFOHEADER * hdr)  static int get_colorspace(BITMAPINFOHEADER * hdr)
77  {  {
78          /* rgb only: negative height specifies top down image */          /* rgb only: negative height specifies top down image */
79          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);          int rgb_flip = (hdr->biHeight < 0 ? 0 : XVID_CSP_VFLIP);
# Line 253  Line 255 
255  }  }
256    
257    
258  const char type2char(int type)  static char type2char(int type)
259  {  {
260      if (type==XVID_TYPE_IVOP)      if (type==XVID_TYPE_IVOP)
261          return 'I';          return 'I';
# Line 264  Line 266 
266      return 'S';      return 'S';
267  }  }
268    
269  int vfw_debug(void *handle,  static int vfw_debug(void *handle,
270                           int opt,                           int opt,
271                           void *param1,                           void *param1,
272                           void *param2)                           void *param2)
273  {  {
274          switch (opt) {          switch (opt) {
         case XVID_PLG_INFO:  
275          case XVID_PLG_CREATE:          case XVID_PLG_CREATE:
276                    *((void**)param2) = NULL;
277            case XVID_PLG_INFO:
278          case XVID_PLG_DESTROY:          case XVID_PLG_DESTROY:
279          case XVID_PLG_BEFORE:          case XVID_PLG_BEFORE:
280                  return 0;                  return 0;
# Line 280  Line 283 
283                  {                  {
284                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;                          xvid_plg_data_t *data = (xvid_plg_data_t *) param1;
285    
286                          DPRINTF("[%5i]   type=%c   Q:%2i   length:%6i",                          /* We don't use DPRINTF here because it's active only for _DEBUG
287                             * builds and that activates lot of other debug printfs. We only
288                             * want these all the time */
289                            char buf[1024];
290                            sprintf(buf, "[%6i]   type=%c   Q:%2i   length:%6i",
291                                     data->frame_num,                                     data->frame_num,
292                     type2char(data->type),                     type2char(data->type),
293                     data->quant,                     data->quant,
294                     data->length);                     data->length);
295                            OutputDebugString(buf);
296    
297                          return 0;                          return 0;
298                  }                  }
299          }          }
# Line 292  Line 301 
301          return XVID_ERR_FAIL;          return XVID_ERR_FAIL;
302  }  }
303    
304    #define XVID_DLL_NAME "xvidcore.dll"
305    
306    static int init_dll(CODEC* codec)
307    {
308            if (codec->m_hdll != NULL)
309                    return 0;
310    
311            DPRINTF("init_dll");
312            codec->m_hdll = LoadLibrary(XVID_DLL_NAME);
313            if (codec->m_hdll == NULL) {
314                    DPRINTF("dll load failed");
315                    MessageBox(0, XVID_DLL_NAME " not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
316                    return XVID_ERR_FAIL;
317            }
318    
319            codec->xvid_global_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_global");
320            if (codec->xvid_global_func == NULL) {
321                    MessageBox(0, "xvid_global() not found", "Error", 0);
322                    return XVID_ERR_FAIL;
323            }
324    
325            codec->xvid_encore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_encore");
326            if (codec->xvid_encore_func == NULL) {
327                    MessageBox(0, "xvid_encore() not found", "Error", 0);
328                    return XVID_ERR_FAIL;
329            }
330    
331            codec->xvid_decore_func = (int (__cdecl *)(void *, int, void *, void *))GetProcAddress(codec->m_hdll, "xvid_decore");
332            if (codec->xvid_decore_func == NULL) {
333                    MessageBox(0, "xvid_decore() not found", "Error", 0);
334                    return XVID_ERR_FAIL;
335            }
336    
337            codec->xvid_plugin_single_func =
338                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_single"));
339            codec->xvid_plugin_2pass1_func =
340                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass1"));
341            codec->xvid_plugin_2pass2_func =
342                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_2pass2"));
343            codec->xvid_plugin_lumimasking_func =
344                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_lumimasking"));
345            codec->xvid_plugin_psnr_func =
346                    (int (__cdecl *)(void *, int, void *, void *))(GetProcAddress(codec->m_hdll, "xvid_plugin_psnr"));
347    
348            return 0;
349    }
350    
351    static int exit_dll(CODEC* codec)
352    {
353            if(codec->m_hdll)
354            {
355                    FreeLibrary(codec->m_hdll);
356                    codec->m_hdll = NULL;
357                    codec->xvid_global_func = NULL;
358                    codec->xvid_encore_func = NULL;
359                    codec->xvid_decore_func = NULL;
360                    codec->xvid_plugin_single_func = NULL;
361                    codec->xvid_plugin_2pass1_func = NULL;
362                    codec->xvid_plugin_2pass2_func = NULL;
363                    codec->xvid_plugin_lumimasking_func = NULL;
364                    codec->xvid_plugin_psnr_func = NULL;
365            }
366            return 0;
367    }
368    
369    /* constant-quant zones for fixed quant encoding */
370    static void
371    prepare_cquant_zones(CONFIG * config) {
372    
373            int i = 0;
374            if (config->num_zones == 0 || config->zones[0].frame != 0) {
375                    /* first zone does not start at frame 0 or doesn't exist */
376    
377                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
378    
379                    config->zones[config->num_zones].frame = 0;
380                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
381                    config->zones[config->num_zones].weight = 100;
382                    config->zones[config->num_zones].quant = config->desired_quant;
383                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
384                    config->zones[config->num_zones].greyscale = 0;
385                    config->zones[config->num_zones].chroma_opt = 0;
386                    config->zones[config->num_zones].bvop_threshold = 0;
387                    config->num_zones++;
388    
389                    sort_zones(config->zones, config->num_zones, &i);
390            }
391    
392            /* step 2: let's change all weight zones into quant zones */
393    
394            for(i = 0; i < config->num_zones; i++)
395                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
396                            config->zones[i].mode = RC_ZONE_QUANT;
397                            config->zones[i].quant = (100*config->desired_quant) / config->zones[i].weight;
398                    }
399    }
400    
401    /* full first pass zones */
402    static void
403    prepare_full1pass_zones(CONFIG * config) {
404    
405            int i = 0;
406            if (config->num_zones == 0 || config->zones[0].frame != 0) {
407                    /* first zone does not start at frame 0 or doesn't exist */
408    
409                    if (config->num_zones >= MAX_ZONES) config->num_zones--; /* we scrifice last zone */
410    
411                    config->zones[config->num_zones].frame = 0;
412                    config->zones[config->num_zones].mode = RC_ZONE_QUANT;
413                    config->zones[config->num_zones].weight = 100;
414                    config->zones[config->num_zones].quant = 200;
415                    config->zones[config->num_zones].type = XVID_TYPE_AUTO;
416                    config->zones[config->num_zones].greyscale = 0;
417                    config->zones[config->num_zones].chroma_opt = 0;
418                    config->zones[config->num_zones].bvop_threshold = 0;
419                    config->num_zones++;
420    
421                    sort_zones(config->zones, config->num_zones, &i);
422            }
423    
424            /* step 2: let's change all weight zones into quant zones */
425    
426            for(i = 0; i < config->num_zones; i++)
427                    if (config->zones[i].mode == RC_ZONE_WEIGHT) {
428                            config->zones[i].mode = RC_ZONE_QUANT;
429                            config->zones[i].quant = 200;
430                    }
431    }
432    
433    
434  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT compress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
# Line 303  Line 440 
440          xvid_plugin_2pass1_t pass1;          xvid_plugin_2pass1_t pass1;
441          xvid_plugin_2pass2_t pass2;          xvid_plugin_2pass2_t pass2;
442      int i;      int i;
443            HANDLE hFile;
444    
445            CONFIG tmpCfg; /* if we want to alter config to suit our needs, it shouldn't be visible to user later */
446            memcpy(&tmpCfg, &codec->config, sizeof(CONFIG));
447    
448            if (init_dll(codec) != 0) return ICERR_ERROR;
449      /* destroy previously created codec */      /* destroy previously created codec */
450          if(codec->ehandle) {          if(codec->ehandle) {
451                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                  codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
452                  codec->ehandle = NULL;                  codec->ehandle = NULL;
453          }          }
454    
# Line 314  Line 456 
456          init.version = XVID_VERSION;          init.version = XVID_VERSION;
457          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
458      init.debug = codec->config.debug;      init.debug = codec->config.debug;
459          xvid_global(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
460    
461          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
462          create.version = XVID_VERSION;          create.version = XVID_VERSION;
463    
     /* 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;  
     }  
   
464      /* plugins */      /* plugins */
465          create.plugins = plugins;          create.plugins = plugins;
466          switch (codec->config.mode)          switch (codec->config.mode)
# Line 345  Line 472 
472          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;          single.reaction_delay_factor = codec->config.rc_reaction_delay_factor;
473                  single.averaging_period = codec->config.rc_averaging_period;                  single.averaging_period = codec->config.rc_averaging_period;
474                  single.buffer = codec->config.rc_buffer;                  single.buffer = codec->config.rc_buffer;
475          plugins[create.num_plugins].func = xvid_plugin_single;                  plugins[create.num_plugins].func = codec->xvid_plugin_single_func;
476          plugins[create.num_plugins].param = &single;          plugins[create.num_plugins].param = &single;
477          create.num_plugins++;          create.num_plugins++;
478                    if (!codec->config.use_2pass_bitrate) /* constant-quant mode */
479                            prepare_cquant_zones(&tmpCfg);
480          break;          break;
481    
482          case RC_MODE_2PASS1 :          case RC_MODE_2PASS1 :
483          memset(&pass1, 0, sizeof(pass1));          memset(&pass1, 0, sizeof(pass1));
484              pass1.version = XVID_VERSION;              pass1.version = XVID_VERSION;
485          pass1.filename = codec->config.stats;          pass1.filename = codec->config.stats;
486                    if (codec->config.full1pass)
487          plugins[create.num_plugins].func = xvid_plugin_2pass1;                          prepare_full1pass_zones(&tmpCfg);
488                    plugins[create.num_plugins].func = codec->xvid_plugin_2pass1_func;
489          plugins[create.num_plugins].param = &pass1;          plugins[create.num_plugins].param = &pass1;
490          create.num_plugins++;          create.num_plugins++;
491                  break;                  break;
# Line 370  Line 500 
500          }          }
501                  pass2.filename = codec->config.stats;                  pass2.filename = codec->config.stats;
502    
503                    hFile = CreateFile(pass2.filename, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
504                    if (hFile == INVALID_HANDLE_VALUE)
505                    {
506                            MessageBox(0, "Statsfile not found!","Error!", MB_ICONEXCLAMATION|MB_OK);
507                            return XVID_ERR_FAIL;
508                    } else
509                    {
510                            CloseHandle(hFile);
511                    }
512    
513          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */          pass2.keyframe_boost = codec->config.keyframe_boost;   /* keyframe boost percentage: [0..100...]; */
         pass2.payback_method = codec->config.bitrate_payback_method;  
         pass2.bitrate_payback_delay = codec->config.bitrate_payback_delay;  
514          pass2.curve_compression_high = codec->config.curve_compression_high;          pass2.curve_compression_high = codec->config.curve_compression_high;
515          pass2.curve_compression_low = codec->config.curve_compression_low;          pass2.curve_compression_low = codec->config.curve_compression_low;
516                    pass2.overflow_control_strength = codec->config.overflow_control_strength;
517          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;          pass2.max_overflow_improvement = codec->config.twopass_max_overflow_improvement;
518          pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;          pass2.max_overflow_degradation = codec->config.twopass_max_overflow_degradation;
         pass2.kftreshold = codec->config.kftreshold;  
519              pass2.kfreduction = codec->config.kfreduction;              pass2.kfreduction = codec->config.kfreduction;
520          pass2.min_key_interval = codec->config.min_key_interval;                  pass2.kfthreshold = codec->config.kfthreshold;
521          pass2.container_frame_overhead = 24;    /* AVI */          pass2.container_frame_overhead = 24;    /* AVI */
522    
523          plugins[create.num_plugins].func = xvid_plugin_2pass2;                  plugins[create.num_plugins].func = codec->xvid_plugin_2pass2_func;
524          plugins[create.num_plugins].param = &pass2;          plugins[create.num_plugins].param = &pass2;
525          create.num_plugins++;          create.num_plugins++;
526                  break;                  break;
# Line 394  Line 532 
532                  break;                  break;
533          }          }
534    
535            /* zones  - copy from tmpCfg in case we automatically altered them above */
536            create.zones = malloc(sizeof(xvid_enc_zone_t) * tmpCfg.num_zones);
537            create.num_zones = tmpCfg.num_zones;
538            for (i=0; i < create.num_zones; i++) {
539                    create.zones[i].frame = tmpCfg.zones[i].frame;
540                    if (tmpCfg.zones[i].mode == RC_ZONE_QUANT) {
541                            create.zones[i].mode = XVID_ZONE_QUANT;
542                            create.zones[i].increment = tmpCfg.zones[i].quant;
543                    }else{
544                            create.zones[i].mode = XVID_ZONE_WEIGHT;
545                            create.zones[i].increment = tmpCfg.zones[i].weight;
546                    }
547                    create.zones[i].base = 100;
548            }
549    
550            /* lumimasking plugin */
551          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {          if ((profiles[codec->config.profile].flags & PROFILE_ADAPTQUANT) && codec->config.lum_masking) {
552          plugins[create.num_plugins].func = xvid_plugin_lumimasking;                  plugins[create.num_plugins].func = codec->xvid_plugin_lumimasking_func;
553          plugins[create.num_plugins].param = NULL;          plugins[create.num_plugins].param = NULL;
554          create.num_plugins++;          create.num_plugins++;
555          }          }
# Line 437  Line 591 
591    
592      create.num_threads = codec->config.num_threads;      create.num_threads = codec->config.num_threads;
593    
594          switch(xvid_encore(0, XVID_ENC_CREATE, &create, NULL))          switch(codec->xvid_encore_func(0, XVID_ENC_CREATE, &create, NULL))
595          {          {
596          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
597                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 467  Line 621 
621    
622  LRESULT compress_end(CODEC * codec)  LRESULT compress_end(CODEC * codec)
623  {  {
624            if (codec->m_hdll != NULL) {
625      if (codec->ehandle != NULL) {      if (codec->ehandle != NULL) {
626                  xvid_encore(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
627                  codec->ehandle = NULL;                  codec->ehandle = NULL;
628          }          }
629                    exit_dll(codec);
630            }
631    
632      if (codec->config.display_status)      if (codec->config.display_status)
633          status_destroy(&codec->status);          status_destroy(&codec->status);
# Line 484  Line 641 
641      int i;      int i;
642    
643      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;      for (i=0; i<config->num_zones && config->zones[i].frame <= framenum; i++) ;
     i--;  
644    
645            if (--i < 0) return; /* there are no zones, or we're before the first zone */
646    
647            if (framenum == config->zones[i].frame)
648      frame->type = config->zones[i].type;      frame->type = config->zones[i].type;
649    
650      if (config->zones[i].greyscale) {      if (config->zones[i].greyscale) {
# Line 550  Line 709 
709          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)          if ((profiles[codec->config.profile].flags & PROFILE_INTERLACE) && codec->config.interlacing)
710                  frame.vol_flags |= XVID_VOL_INTERLACING;                  frame.vol_flags |= XVID_VOL_INTERLACING;
711    
712            if (codec->config.ar_mode == 0) { /* PAR */
713                    if (codec->config.display_aspect_ratio != 5) {
714                            frame.par = codec->config.display_aspect_ratio + 1;
715                    } else {
716                            frame.par = XVID_PAR_EXT;
717                            frame.par_width = codec->config.par_x;
718                            frame.par_height= codec->config.par_y;
719                    }
720            } else { /* AR */
721                    /* custom pixel aspect ratio -> calculated from DAR */
722                    frame.par = XVID_PAR_EXT;
723                    frame.par_width = (100 * inhdr->biHeight) / codec->config.ar_y;
724                    frame.par_height= (100 * inhdr->biWidth) / codec->config.ar_x;
725            }
726    
727      /* vop stuff */      /* vop stuff */
728    
729          frame.vop_flags |= XVID_VOP_HALFPEL;          frame.vop_flags |= XVID_VOP_HALFPEL;
# Line 570  Line 744 
744    
745          if (codec->config.cartoon_mode) {          if (codec->config.cartoon_mode) {
746                  frame.vop_flags |= XVID_VOP_CARTOON;                  frame.vop_flags |= XVID_VOP_CARTOON;
 #if 0 /* Seems to cause crashes with P4 cpus */  
747                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;                  frame.motion |= XVID_ME_DETECT_STATIC_MOTION;
 #endif  
748          }          }
749    
750            if (codec->config.turbo)
751                    frame.motion |= XVID_ME_FASTREFINE16 | XVID_ME_FASTREFINE8 |
752                                                    XVID_ME_SKIP_DELTASEARCH | XVID_ME_FAST_MODEINTERPOLATE |
753                                                    XVID_ME_BFRAME_EARLYSTOP;
754    
755          frame.motion |= pmvfast_presets[codec->config.motion_search];          frame.motion |= pmvfast_presets[codec->config.motion_search];
756    
757          switch (codec->config.vhq_mode)          switch (codec->config.vhq_mode)
# Line 618  Line 795 
795          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)          if ((frame.input.csp = get_colorspace(inhdr)) == XVID_CSP_NULL)
796                  return ICERR_BADFORMAT;                  return ICERR_BADFORMAT;
797    
798          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) {
799                  frame.input.stride[0] = (frame.input.stride[0]*2)/3;                  frame.input.stride[0] = (4 * icc->lpbiInput->biWidth + 3) / 4;
800                    frame.input.stride[1] = frame.input.stride[2] = frame.input.stride[0] / 2 ;
801            }
802    
803          frame.bitstream = icc->lpOutput;          frame.bitstream = icc->lpOutput;
804          frame.length = icc->lpbiOutput->biSizeImage;          frame.length = icc->lpbiOutput->biSizeImage;
# Line 634  Line 813 
813    
814          // force keyframe spacing in 2-pass 1st pass          // force keyframe spacing in 2-pass 1st pass
815          if (codec->config.motion_search == 0)          if (codec->config.motion_search == 0)
         {  
816                  frame.type = XVID_TYPE_IVOP;                  frame.type = XVID_TYPE_IVOP;
         }  
         else if (codec->keyspacing < codec->config.min_key_interval && codec->framenum)  
         {  
                 DPRINTF("current frame forced to p-frame");  
                 frame.type = XVID_TYPE_PVOP;  
         }  
817    
818      /* frame-based stuff */      /* frame-based stuff */
819      apply_zone_modifiers(&frame, &codec->config, codec->framenum);      apply_zone_modifiers(&frame, &codec->config, codec->framenum);
# Line 651  Line 823 
823          memset(&stats, 0, sizeof(stats));          memset(&stats, 0, sizeof(stats));
824          stats.version = XVID_VERSION;          stats.version = XVID_VERSION;
825    
826      length = xvid_encore(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);          length = codec->xvid_encore_func(codec->ehandle, XVID_ENC_ENCODE, &frame, &stats);
827          switch (length)          switch (length)
828          {          {
829          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
# Line 780  Line 952 
952          return ICERR_OK;          return ICERR_OK;
953  }  }
954    
955    #define REG_GET_N(X, Y, Z) \
956    { \
957            DWORD size = sizeof(int); \
958            if (RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) { \
959                    Y=Z; \
960            } \
961    }while(0)
962    
963  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)  LRESULT decompress_begin(CODEC * codec, BITMAPINFO * lpbiInput, BITMAPINFO * lpbiOutput)
964  {  {
965          xvid_gbl_init_t init;          xvid_gbl_init_t init;
966          xvid_dec_create_t create;          xvid_dec_create_t create;
967            HKEY hKey;
968    
969            if (init_dll(codec) != 0) return ICERR_ERROR;
970    
971          memset(&init, 0, sizeof(init));          memset(&init, 0, sizeof(init));
972          init.version = XVID_VERSION;          init.version = XVID_VERSION;
973          init.cpu_flags = codec->config.cpu;          init.cpu_flags = codec->config.cpu;
974          xvid_global(0, XVID_GBL_INIT, &init, NULL);          codec->xvid_global_func(0, XVID_GBL_INIT, &init, NULL);
975    
976          memset(&create, 0, sizeof(create));          memset(&create, 0, sizeof(create));
977          create.version = XVID_VERSION;          create.version = XVID_VERSION;
978          create.width = lpbiInput->bmiHeader.biWidth;          create.width = lpbiInput->bmiHeader.biWidth;
979          create.height = lpbiInput->bmiHeader.biHeight;          create.height = lpbiInput->bmiHeader.biHeight;
980    
981          switch(xvid_decore(0, XVID_DEC_CREATE, &create, NULL))          switch(codec->xvid_decore_func(0, XVID_DEC_CREATE, &create, NULL))
982          {          {
983          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
984                  return ICERR_ERROR;                  return ICERR_ERROR;
# Line 813  Line 995 
995    
996          codec->dhandle = create.handle;          codec->dhandle = create.handle;
997    
998            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
999    
1000            REG_GET_N("Deblock_Y",  pp_dy, 0)
1001            REG_GET_N("Deblock_UV", pp_duv, 0)
1002            REG_GET_N("Dering",  pp_dr, 0)
1003            REG_GET_N("FilmEffect", pp_fe, 0)
1004    
1005            RegCloseKey(hKey);
1006    
1007          return ICERR_OK;          return ICERR_OK;
1008  }  }
1009    
1010    
1011  LRESULT decompress_end(CODEC * codec)  LRESULT decompress_end(CODEC * codec)
1012  {  {
1013          if (codec->dhandle != NULL)          if (codec->m_hdll != NULL) {
1014          {                  if (codec->dhandle != NULL) {
1015                  xvid_decore(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          }          }
1018                    exit_dll(codec);
1019            }
1020    
1021          return ICERR_OK;          return ICERR_OK;
1022  }  }
1023    
# Line 869  Line 1063 
1063                  convert.interlacing = 0;                  convert.interlacing = 0;
1064                  if (convert.input.csp == XVID_CSP_NULL ||                  if (convert.input.csp == XVID_CSP_NULL ||
1065                          convert.output.csp == XVID_CSP_NULL ||                          convert.output.csp == XVID_CSP_NULL ||
1066                          xvid_global(0, XVID_GBL_CONVERT, &convert, NULL) < 0)                          codec->xvid_global_func(0, XVID_GBL_CONVERT, &convert, NULL) < 0)
1067                  {                  {
1068                           return ICERR_BADFORMAT;                           return ICERR_BADFORMAT;
1069                  }                  }
# Line 899  Line 1093 
1093                  frame.output.csp = XVID_CSP_NULL;                  frame.output.csp = XVID_CSP_NULL;
1094          }          }
1095    
1096          switch (xvid_decore(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))          if (pp_dy)frame.general |= XVID_DEBLOCKY;
1097            if (pp_duv) frame.general |= XVID_DEBLOCKUV;
1098    /*      if (pp_dr) frame.general |= XVID_DERING; */
1099            if (pp_fe) frame.general |= XVID_FILMEFFECT;
1100    
1101            switch (codec->xvid_decore_func(codec->dhandle, XVID_DEC_DECODE, &frame, NULL))
1102          {          {
1103          case XVID_ERR_FAIL :          case XVID_ERR_FAIL :
1104                  return ICERR_ERROR;                  return ICERR_ERROR;

Legend:
Removed from v.1193  
changed lines
  Added in v.1393

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