[xiph-commits] r11865 - trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora

illiminable at svn.xiph.org illiminable at svn.xiph.org
Sat Sep 30 01:40:51 PDT 2006


Author: illiminable
Date: 2006-09-30 01:40:47 -0700 (Sat, 30 Sep 2006)
New Revision: 11865

Modified:
   trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraDecoder.cpp
   trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.cpp
   trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.h
Log:
* Tidy up OOTheora lib

Modified: trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraDecoder.cpp
===================================================================
--- trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraDecoder.cpp	2006-09-27 20:04:25 UTC (rev 11864)
+++ trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraDecoder.cpp	2006-09-30 08:40:47 UTC (rev 11865)
@@ -1,5 +1,5 @@
 //===========================================================================
-//Copyright (C) 2003, 2004 Zentaro Kavanagh
+//Copyright (C) 2003-2006 Zentaro Kavanagh
 //
 //Redistribution and use in source and binary forms, with or without
 //modification, are permitted provided that the following conditions

Modified: trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.cpp
===================================================================
--- trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.cpp	2006-09-27 20:04:25 UTC (rev 11864)
+++ trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.cpp	2006-09-30 08:40:47 UTC (rev 11865)
@@ -1,5 +1,5 @@
 //===========================================================================
-//Copyright (C) 2003, 2004 Zentaro Kavanagh
+//Copyright (C) 2003-2006 Zentaro Kavanagh
 //
 //Redistribution and use in source and binary forms, with or without
 //modification, are permitted provided that the following conditions

Modified: trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.h
===================================================================
--- trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.h	2006-09-27 20:04:25 UTC (rev 11864)
+++ trunk/oggdsf/src/lib/codecs/theora/libs/libOOTheora/TheoraEncoder.h	2006-09-30 08:40:47 UTC (rev 11865)
@@ -1,5 +1,5 @@
 //===========================================================================
-//Copyright (C) 2003, 2004 Zentaro Kavanagh
+//Copyright (C) 2003-2006 Zentaro Kavanagh
 //
 //Redistribution and use in source and binary forms, with or without
 //modification, are permitted provided that the following conditions
@@ -42,31 +42,23 @@
 	TheoraEncoder(void);
 	~TheoraEncoder(void);
 
-
 	/// Initialise the code, We get back three packets we must delete.
 	StampedOggPacket** initCodec(theora_info inTheoraInfo);
 
 	/// Encode the frame buffer. We get back a packet to delete or NULL.
 	StampedOggPacket* encodeTheora(yuv_buffer* inYUVBuffer);
-	
-	
 
 	//bool resetPackCount();
 	//bool clearAll();
 protected:
 
-	/// Converts an xiph like ogg packet into a StampedOggPacket.
+	/// Converts a xiph like ogg packet into a StampedOggPacket.
 	StampedOggPacket* oldToNewPacket(ogg_packet* inPacket);
-	//bool encodeHeader();
 
 	theora_info mTheoraInfo;
 	theora_comment mTheoraComment;
 	theora_state mTheoraState;
 	
-	//yuv_buffer mYUVBuffer;		//Needed ??
-
-	//StampedOggPacket* mPartialPacket; //TEMP !!
-
 	unsigned long mHeadersSeen;
 	bool mFirstPacket;
 	bool mFirstHeader;



More information about the commits mailing list