[xiph-commits] r7724 - trunk/oggdsf/src/lib/codecs/theora/filters/dsfTheoraDecoder

illiminable at motherfish-iii.xiph.org illiminable at motherfish-iii.xiph.org
Thu Sep 9 08:03:57 PDT 2004


Author: illiminable
Date: 2004-09-09 08:03:57 -0700 (Thu, 09 Sep 2004)
New Revision: 7724

Modified:
   trunk/oggdsf/src/lib/codecs/theora/filters/dsfTheoraDecoder/TheoraDecodeFilter.cpp
Log:
* Add initialisation list to constructor.

Modified: trunk/oggdsf/src/lib/codecs/theora/filters/dsfTheoraDecoder/TheoraDecodeFilter.cpp
===================================================================
--- trunk/oggdsf/src/lib/codecs/theora/filters/dsfTheoraDecoder/TheoraDecodeFilter.cpp	2004-09-09 14:58:11 UTC (rev 7723)
+++ trunk/oggdsf/src/lib/codecs/theora/filters/dsfTheoraDecoder/TheoraDecodeFilter.cpp	2004-09-09 15:03:57 UTC (rev 7724)
@@ -55,6 +55,16 @@
 
 TheoraDecodeFilter::TheoraDecodeFilter() 
 	:	CVideoTransformFilter( NAME("Theora Decode Filter"), NULL, CLSID_TheoraDecodeFilter)
+	,	mHeight(0)
+	,	mWidth(0)
+	,	mFrameSize(0)
+	,	mFrameCount(0)
+	,	mYOffset(0)
+	,	mXOffset(0)
+	,	mFrameDuration(0)
+	,	mBegun(false)
+	,	mSeekTimeBase(0)
+	,	mLastSeenStartGranPos(0)
 {
 	debugLog.open("G:\\logs\\newtheofilter.log", ios_base::out);
 



More information about the commits mailing list