summaryrefslogtreecommitdiffstats
path: root/gst-libs/ext/mplex/vector.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/ext/mplex/vector.cc')
-rw-r--r--gst-libs/ext/mplex/vector.cc23
1 files changed, 23 insertions, 0 deletions
diff --git a/gst-libs/ext/mplex/vector.cc b/gst-libs/ext/mplex/vector.cc
new file mode 100644
index 00000000..343b6284
--- /dev/null
+++ b/gst-libs/ext/mplex/vector.cc
@@ -0,0 +1,23 @@
+#include <config.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include "mjpeg_types.h"
+#include "vector.hh"
+
+
+AUStream::AUStream ():
+cur_rd (0), cur_wr (0), totalctr (0), size (0), buf (0)
+{
+ buf = new (Aunit *)[AUStream::BUF_SIZE];
+}
+
+
+void
+AUStream::init (Aunit * rec)
+{
+ buf[cur_wr] = rec;
+ ++cur_wr;
+ cur_wr = cur_wr >= AUStream::BUF_SIZE ? 0 : cur_wr;
+ cur_rd = cur_wr;
+}