[svn] / branches / release-1_0-branch / xvidcore / vfw / src / codec.c Repository:
ViewVC logotype

Diff of /branches/release-1_0-branch/xvidcore/vfw/src/codec.c

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

revision 1396, Wed Mar 31 19:35:31 2004 UTC revision 1457, Wed May 26 09:29:35 2004 UTC
# Line 348  Line 348 
348          return 0;          return 0;
349  }  }
350    
 static int exit_dll(CODEC* codec)  
 {  
         if(codec->m_hdll)  
         {  
                 FreeLibrary(codec->m_hdll);  
                 codec->m_hdll = NULL;  
                 codec->xvid_global_func = NULL;  
                 codec->xvid_encore_func = NULL;  
                 codec->xvid_decore_func = NULL;  
                 codec->xvid_plugin_single_func = NULL;  
                 codec->xvid_plugin_2pass1_func = NULL;  
                 codec->xvid_plugin_2pass2_func = NULL;  
                 codec->xvid_plugin_lumimasking_func = NULL;  
                 codec->xvid_plugin_psnr_func = NULL;  
         }  
         return 0;  
 }  
   
351  /* constant-quant zones for fixed quant encoding */  /* constant-quant zones for fixed quant encoding */
352  static void  static void
353  prepare_cquant_zones(CONFIG * config) {  prepare_cquant_zones(CONFIG * config) {
# Line 626  Line 608 
608                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);                          codec->xvid_encore_func(codec->ehandle, XVID_ENC_DESTROY, NULL, NULL);
609                          codec->ehandle = NULL;                          codec->ehandle = NULL;
610                  }                  }
                 exit_dll(codec);  
611          }          }
612    
613          if (codec->config.display_status)          if (codec->config.display_status)
# Line 943  Line 924 
924          outhdr->biPlanes = 1;          outhdr->biPlanes = 1;
925          outhdr->biBitCount = 24;          outhdr->biBitCount = 24;
926          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 */
927          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount;          outhdr->biSizeImage = outhdr->biWidth * outhdr->biHeight * outhdr->biBitCount / 8;
928          outhdr->biXPelsPerMeter = 0;          outhdr->biXPelsPerMeter = 0;
929          outhdr->biYPelsPerMeter = 0;          outhdr->biYPelsPerMeter = 0;
930          outhdr->biClrUsed = 0;          outhdr->biClrUsed = 0;
# Line 1015  Line 996 
996                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);                          codec->xvid_decore_func(codec->dhandle, XVID_DEC_DESTROY, NULL, NULL);
997                          codec->dhandle = NULL;                          codec->dhandle = NULL;
998                  }                  }
                 exit_dll(codec);  
999          }          }
1000    
1001          return ICERR_OK;          return ICERR_OK;

Legend:
Removed from v.1396  
changed lines
  Added in v.1457

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