/* cout << "freq = " << ((double) freq.QuadPart) << endl; */
/* t is the high resolution performance counter (see MSDN) */
QueryPerformanceCounter ( & t ) ;
- return ( t.QuadPart /(OPJ_FLOAT64) freq.QuadPart ) ;
+ return freq.QuadPart ? ( t.QuadPart /(OPJ_FLOAT64) freq.QuadPart ) : 0 ;
#else
/* Unix or Linux: use resource usage */
struct rusage t;
if(raw_cp.rawComps) free(raw_cp.rawComps);
t = opj_clock() - t;
- fprintf(stdout, "encode time: %d ms \n", (int)((t * 1000)/num_compressed_files));
- scanf("%d");
+ if (num_compressed_files)
+ fprintf(stdout, "encode time: %d ms \n", (int)((t * 1000)/num_compressed_files));
+ //getch());
return 0;
}
/* cout << "freq = " << ((double) freq.QuadPart) << endl; */
/* t is the high resolution performance counter (see MSDN) */
QueryPerformanceCounter ( & t ) ;
- return ( t.QuadPart /(OPJ_FLOAT64) freq.QuadPart ) ;
+ return freq.QuadPart ? (t.QuadPart / (OPJ_FLOAT64)freq.QuadPart) : 0;
#else
/* Unix or Linux: use resource usage */
struct rusage t;
if(failed) remove(parameters.outfile);
}
destroy_parameters(¶meters);
- fprintf(stdout, "decode time: %d ms \n", (int)( (tCumulative * 1000) / numDecompressedImages));
- scanf("%d");
+ if (numDecompressedImages)
+ fprintf(stdout, "decode time: %d ms \n", (int)( (tCumulative * 1000) / numDecompressedImages));
+ //getch();
return failed ? EXIT_FAILURE : EXIT_SUCCESS;
}
/*end main*/
#endif
#endif
+
+
/* MSVC before 2013 and Borland C do not have lrintf */
-#if defined(_MSC_VER) || defined(__BORLANDC__)
+#if defined(_MSC_VER)
+#include <intrin.h>
static INLINE long lrintf(float f){
#ifdef _M_X64
- return (long)((f>0.0f) ? (f + 0.5f):(f -0.5f));
+ return _mm_cvt_ss2si(_mm_load_ss(&f));
+
+ // commented out line breaks many tests
+ ///return (long)((f>0.0f) ? (f + 0.5f):(f -0.5f));
#else
int i;
-
- _asm{
+ _asm{
fld f
fistp i
};
}
#endif
+#if defined(__BORLANDC__)
+static INLINE long lrintf(float f) {
+#ifdef _M_X64
+ return (long)((f>0.0f) ? (f + 0.5f):(f -0.5f));
+#else
+ int i;
+
+ _asm {
+ fld f
+ fistp i
+ };
+
+ return i;
+#endif
+}
+#endif
+
+
+
#if defined(_MSC_VER) && (_MSC_VER < 1400)
#define vsnprintf _vsnprintf
#endif