--- trunk/xvidcore/examples/xvid_encraw.c 2007/01/09 20:08:53 1769 +++ trunk/xvidcore/examples/xvid_encraw.c 2008/11/27 19:45:28 1811 @@ -21,7 +21,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: xvid_encraw.c,v 1.34 2007-01-09 20:08:53 Isibaar Exp $ + * $Id: xvid_encraw.c,v 1.36 2008-11-27 19:45:28 Isibaar Exp $ * ****************************************************************************/ @@ -1919,7 +1919,9 @@ } if (ARG_SSIM>=0 || ARG_SSIM_PATH != NULL) { - plugins[xvid_enc_create.num_plugins].func = xvid_plugin_ssim; + memset(&ssim, 0, sizeof(xvid_plugin_ssim_t)); + + plugins[xvid_enc_create.num_plugins].func = xvid_plugin_ssim; if( ARG_SSIM >=0){ ssim.b_printstat = 1; @@ -2021,7 +2023,11 @@ fprintf(stderr, "SSE "); if (xvid_gbl_info.cpu_flags & XVID_CPU_SSE2) fprintf(stderr, "SSE2 "); - if (xvid_gbl_info.cpu_flags & XVID_CPU_3DNOW) + if (xvid_gbl_info.cpu_flags & XVID_CPU_SSE3) + fprintf(stderr, "SSE3 "); + if (xvid_gbl_info.cpu_flags & XVID_CPU_SSE41) + fprintf(stderr, "SSE41 "); + if (xvid_gbl_info.cpu_flags & XVID_CPU_3DNOW) fprintf(stderr, "3DNOW "); if (xvid_gbl_info.cpu_flags & XVID_CPU_3DNOWEXT) fprintf(stderr, "3DNOWEXT ");