[xiph-commits] r14051 - trunk/theora/lib/enc

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Fri Oct 26 07:28:55 PDT 2007


Author: xiphmont
Date: 2007-10-26 07:28:55 -0700 (Fri, 26 Oct 2007)
New Revision: 14051

Modified:
   trunk/theora/lib/enc/codec_internal.h
Log:
Correct several changes that leaked into commit:

remove 'inline' from GetFrameType and SetFrameType


Modified: trunk/theora/lib/enc/codec_internal.h
===================================================================
--- trunk/theora/lib/enc/codec_internal.h	2007-10-25 23:28:11 UTC (rev 14050)
+++ trunk/theora/lib/enc/codec_internal.h	2007-10-26 14:28:55 UTC (rev 14051)
@@ -848,11 +848,11 @@
 extern void ScanYUVInit( PP_INSTANCE *  ppi,
                          SCAN_CONFIG_DATA * ScanConfigPtr);
 
-static inline int GetFrameType(PB_INSTANCE *pbi){
+static int GetFrameType(PB_INSTANCE *pbi){
   return pbi->FrameType;
 }
 
-static inline void SetFrameType( PB_INSTANCE *pbi,unsigned char FrType ){
+static void SetFrameType( PB_INSTANCE *pbi,unsigned char FrType ){
   pbi->FrameType = FrType;
 }
 



More information about the commits mailing list