gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog server/video_stream_instance.cp...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/video_stream_instance.cp...
Date: Mon, 28 May 2007 13:26:36 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/05/28 13:26:36

Modified files:
        .              : ChangeLog 
        server         : video_stream_instance.cpp 
                         video_stream_instance.h 

Log message:
                * server/video_stream_instance.{cpp,h}: add brief class 
description,
                  drop unused member.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3378&r2=1.3379
http://cvs.savannah.gnu.org/viewcvs/gnash/server/video_stream_instance.cpp?cvsroot=gnash&r1=1.23&r2=1.24
http://cvs.savannah.gnu.org/viewcvs/gnash/server/video_stream_instance.h?cvsroot=gnash&r1=1.12&r2=1.13

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3378
retrieving revision 1.3379
diff -u -b -r1.3378 -r1.3379
--- ChangeLog   28 May 2007 12:43:27 -0000      1.3378
+++ ChangeLog   28 May 2007 13:26:35 -0000      1.3379
@@ -1,5 +1,7 @@
 2007-05-28 Sandro Santilli <address@hidden>
 
+       * server/video_stream_instance.{cpp,h}: add brief class description,
+         drop unused member.
        * testsuite/misc-ming.all/matrix_test.c: Really round numbers, don't
          just truncate them up to 2nd decimal position.
 

Index: server/video_stream_instance.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/video_stream_instance.cpp,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- server/video_stream_instance.cpp    4 May 2007 12:16:07 -0000       1.23
+++ server/video_stream_instance.cpp    28 May 2007 13:26:35 -0000      1.24
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 // 
 
-// $Id: video_stream_instance.cpp,v 1.23 2007/05/04 12:16:07 strk Exp $
+// $Id: video_stream_instance.cpp,v 1.24 2007/05/28 13:26:35 strk Exp $
 
 #include "sprite_instance.h"
 #include "video_stream_instance.h"
@@ -65,7 +65,7 @@
        :
        character(parent, id),
        m_def(def),
-       m_video_source(NULL),
+       //m_video_source(NULL),
        _ns(NULL),
        m_decoder(m_def->get_decoder()) // should abort if m_def is null
 {

Index: server/video_stream_instance.h
===================================================================
RCS file: /sources/gnash/gnash/server/video_stream_instance.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- server/video_stream_instance.h      24 May 2007 13:01:46 -0000      1.12
+++ server/video_stream_instance.h      28 May 2007 13:26:36 -0000      1.13
@@ -15,7 +15,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 // 
-// $Id: video_stream_instance.h,v 1.12 2007/05/24 13:01:46 strk Exp $
+// $Id: video_stream_instance.h,v 1.13 2007/05/28 13:26:36 strk Exp $
 
 #ifndef GNASH_VIDEO_STREAM_INSTANCE_H
 #define GNASH_VIDEO_STREAM_INSTANCE_H
@@ -32,6 +32,12 @@
 
 namespace gnash {
 
+/// VideoStream ActionScript object
+//
+/// A VideoStream provides audio/video frames either
+/// embedded into the SWF itself or loaded from the
+/// network using an associated NetStream object.
+///
 class video_stream_instance : public character
 {
 
@@ -39,11 +45,6 @@
 
        video_stream_definition*        m_def;
        
-       // m_video_source - A Camera object that is capturing video data or a 
NetStream object.
-       // To drop the connection to the Video object, pass null for source.
-       // FIXME: don't use as_object, but a more meaningful type
-       as_object* m_video_source;
-
        video_stream_instance(video_stream_definition* def,
                        character* parent, int id);
 
@@ -70,6 +71,11 @@
 
 private:
 
+       // m_video_source - A Camera object that is capturing video data or a 
NetStream object.
+       // To drop the connection to the Video object, pass null for source.
+       // FIXME: don't use as_object, but a more meaningful type
+       //as_object* m_video_source;
+
        // Who owns this ? Should it be an intrusive ptr ?
        boost::intrusive_ptr<NetStream> _ns;
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]