Main Page   Namespace List   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   Related Pages  

a52a_syncword.h

00001 
00005 #include "a52a.h"
00006 /* test */
00007 
00014 class A52A_SYNCWORD {
00015     private:
00016         UINT    val;
00017         UINT    len;
00018         
00019     public:
00021         A52A_SYNCWORD();
00023         void print();
00025         ULONGLONG search(istream &f, ULONGLONG pos, int x = 0);
00026     };
00027     
00031 inline A52A_SYNCWORD::A52A_SYNCWORD() {
00032     val = 0xb77;
00033     len = 16;
00034     }
00035     
00039 inline void A52A_SYNCWORD::print() {
00040     cout << val << "(" << len << ")";
00041     }
00042 
00054 inline ULONGLONG A52A_SYNCWORD::search(istream &f, ULONGLONG pos, int x) {
00055     // Dummy return value.
00056     return 0;
00057     }
00058 

Generated on Sat Sep 25 14:06:33 2004 for ac3 by doxygen1.2.18