summaryrefslogtreecommitdiff
path: root/src/frame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame.cc')
-rw-r--r--src/frame.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frame.cc b/src/frame.cc
index 002ab43..ee5451d 100644
--- a/src/frame.cc
+++ b/src/frame.cc
@@ -31,6 +31,9 @@
/*
* $Log$
+ * Revision 1.7 2005/05/22 15:49:22 deva
+ * Added multithreaded encoding support.
+ *
* Revision 1.6 2005/05/03 08:31:59 deva
* Removed the error object, and replaced it with a more generic info object.
*
@@ -51,6 +54,7 @@ Frame::Frame(unsigned char *d, int sz)
data = (unsigned char *)malloc(sz);
if(d) memcpy(data, d, sz);
size = sz;
+ number = 0;
}
Frame::~Frame()