aboutsummaryrefslogtreecommitdiff
path: root/src/myriadstream.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-04-12 07:37:09 +0000
committerMike Buland <eichlan@xagasoft.com>2010-04-12 07:37:09 +0000
commit41c9581b48f055f6559335ffc0316f27ed1b3657 (patch)
tree22c6737ff5e6fd7732597dcd83a190ae917f0079 /src/myriadstream.h
parent943cf16f5661357086532b2241e6f85bfe43565a (diff)
downloadlibbu++-41c9581b48f055f6559335ffc0316f27ed1b3657.tar.gz
libbu++-41c9581b48f055f6559335ffc0316f27ed1b3657.tar.bz2
libbu++-41c9581b48f055f6559335ffc0316f27ed1b3657.tar.xz
libbu++-41c9581b48f055f6559335ffc0316f27ed1b3657.zip
Myriad is getting pretty close, just have to finish the writing code and
probably tweak the header init.
Diffstat (limited to 'src/myriadstream.h')
-rw-r--r--src/myriadstream.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/myriadstream.h b/src/myriadstream.h
index 29ab777..e2e3ba7 100644
--- a/src/myriadstream.h
+++ b/src/myriadstream.h
@@ -20,7 +20,7 @@ namespace Bu
20 /** 20 /**
21 * These can only be created by the Myriad class. 21 * These can only be created by the Myriad class.
22 */ 22 */
23 MyriadStream( Myriad &rMyriad, uint32_t uStream ); 23 MyriadStream( Myriad &rMyriad, Myriad::Stream *pStream );
24 24
25 public: 25 public:
26 virtual ~MyriadStream(); 26 virtual ~MyriadStream();
@@ -46,12 +46,10 @@ namespace Bu
46 46
47 private: 47 private:
48 Myriad &rMyriad; 48 Myriad &rMyriad;
49 uint32_t uStream; 49 Myriad::Stream *pStream;
50 char *pCurBlock; 50 Myriad::Block *pCurBlock;
51 uint32_t uCurBlock; 51 int iBlockSize;
52 uint32_t uSize; 52 int iPos;
53 uint32_t uBlockSize;
54 uint32_t uPos;
55 }; 53 };
56}; 54};
57 55