summaryrefslogtreecommitdiffstats
path: root/ext/mplex/aunit.hh
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-07-27 05:24:15 +0000
committerDavid Schleef <ds@schleef.org>2003-07-27 05:24:15 +0000
commitd1f62e8a4f976e11634d2f9187821e8686cec76d (patch)
tree7aeb45681425dc71469510056d67f4aa20d3574b /ext/mplex/aunit.hh
parenta10432d76cb431d03e27b97d790d2ba7ae34f4b8 (diff)
downloadgst-plugins-bad-d1f62e8a4f976e11634d2f9187821e8686cec76d.tar.gz
gst-plugins-bad-d1f62e8a4f976e11634d2f9187821e8686cec76d.tar.bz2
gst-plugins-bad-d1f62e8a4f976e11634d2f9187821e8686cec76d.zip
Moved to gst-libs/ext/mplex
Original commit message from CVS: Moved to gst-libs/ext/mplex
Diffstat (limited to 'ext/mplex/aunit.hh')
-rw-r--r--ext/mplex/aunit.hh41
1 files changed, 0 insertions, 41 deletions
diff --git a/ext/mplex/aunit.hh b/ext/mplex/aunit.hh
deleted file mode 100644
index 0876887b..00000000
--- a/ext/mplex/aunit.hh
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef __AUNIT_H__
-#define __AUNIT_H__
-
-#include <config.h>
-#include "mjpeg_types.h"
-#include "bits.hh"
-
-typedef int64_t clockticks; // This value *must* be signed
-
- // because we frequently compute *offsets*
-
-class Aunit
-{
-public:
- Aunit ():length (0), PTS (0), DTS (0)
- {
- }
- void markempty ()
- {
- length = 0;
- }
- bitcount_t start;
- unsigned int length;
- clockticks PTS;
- int dorder;
-
- // Used only for video AU's but otherwise
- // you have to go crazy on templates.
- clockticks DTS;
- int porder;
- unsigned int type;
- bool seq_header;
- bool end_seq;
-
-};
-
-typedef Aunit VAunit;
-
-typedef Aunit AAunit;
-
-#endif // __AUNIT_H__