shithub: openh264

Download patch

ref: 4f1ea1c4f85604ce178ebe9474f831c33fef18cd
parent: 587a8b20f472f77ba0ac6e51c022455f2dcbb7d5
author: Martin Storsjö <martin@martin.st>
date: Tue Jun 10 07:35:56 EDT 2014

Remove some unused typedefs

--- a/codec/common/inc/utils.h
+++ b/codec/common/inc/utils.h
@@ -47,7 +47,6 @@
  *	Log output routines
  */
 
-typedef int32_t	iWelsLogLevel;
 enum {
   WELS_LOG_QUIET		= 0x00,		// Quiet mode
   WELS_LOG_ERROR		= 1 << 0,	// Error log iLevel
@@ -64,14 +63,6 @@
  */
 // wels log output
 typedef void (*PWelsLogCallbackFunc) (void* pCtx, const int32_t iLevel, const char* kpFmt, va_list argv);
-
-// wels psnr calc
-typedef float (*PWelsPsnrFunc) (const void* kpTarPic,
-                                const int32_t kiTarStride,
-                                const void* kpRefPic,
-                                const int32_t kiRefStride,
-                                const int32_t kiWidth,
-                                const int32_t kiHeight);