Changeset 3314
- Timestamp:
- 08/24/04 10:43:53 (9 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgPlugins
- Files:
-
- 3 modified
-
mpeg/MpegImageStream.h (modified) (2 diffs)
-
obj/glm.cpp (modified) (5 diffs)
-
quicktime/QuicktimeImageStream.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/mpeg/MpegImageStream.h
r3285 r3314 35 35 #include <OpenThreads/Mutex> 36 36 37 #define NUM_CMD_INDEX 437 #define NUM_CMD_INDEX 20 38 38 39 39 namespace osg { … … 71 71 72 72 /// Rewind stream to beginning. 73 virtual void rewind() { setCmd(THREAD_REWIND); } 73 virtual void rewind() 74 { 75 osg::notify(osg::INFO)<<"Rewind video"<<this<<std::endl; 76 setCmd(THREAD_REWIND); 77 } 74 78 75 79 virtual void quit(bool wiatForThreadToExit); -
OpenSceneGraph/trunk/src/osgPlugins/obj/glm.cpp
r3284 r3314 19 19 #include <osg/Math> 20 20 21 #include <iostream> 21 22 22 23 /* defines */ … … 211 212 model->groups = group; 212 213 model->numgroups++; 214 215 std::cout<<"_glmAddGroup="<<name<<std::endl; 213 216 } 214 217 … … 608 611 609 612 while(fscanf(file, "%s", buf) != EOF) { 613 614 610 615 switch(buf[0]) { 611 616 case '#': /* comment */ … … 721 726 break; 722 727 } 728 729 std::cout<<"line="<<buf<<std::endl; 730 723 731 } 724 732 … … 851 859 char compositeName[128]; 852 860 createCompositeName(buf,compositeName); 853 854 861 group = _glmFindGroup(model, compositeName); 862 std::cout<<"compositeName="<<compositeName<<" group="<<group<<std::endl; 855 863 group->material = material; 856 864 firstGroup = false; -
OpenSceneGraph/trunk/src/osgPlugins/quicktime/QuicktimeImageStream.h
r3191 r3314 31 31 #include <OpenThreads/Mutex> 32 32 33 #define NUM_CMD_INDEX 433 #define NUM_CMD_INDEX 20 34 34 35 35 namespace osg {
