~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to avidemux/ADM_mplex/bits.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
typedef uint64_t bitcount_t;
8
8
 
9
 
 
 
9
#include "streamType.h"
10
10
class BitStreamBuffering
11
11
{
12
12
public:
120
120
class IBitStream : public IBitStreamUndo 
121
121
{
122
122
public:
123
 
        IBitStream() :
 
123
        mplexStreamDescriptor      streamDesc;
 
124
        IBitStream(mplexStreamDescriptor *desc) :
124
125
                IBitStreamUndo(),
125
126
                streamname( "unnamed" )
126
127
                {
 
128
                    streamDesc=*desc;
127
129
                }
128
130
        virtual ~IBitStream() { Release(); }
129
131