summaryrefslogtreecommitdiffstats
path: root/tkmpeg/tkmpeg.h
diff options
context:
space:
mode:
Diffstat (limited to 'tkmpeg/tkmpeg.h')
-rw-r--r--tkmpeg/tkmpeg.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/tkmpeg/tkmpeg.h b/tkmpeg/tkmpeg.h
deleted file mode 100644
index c84b400..0000000
--- a/tkmpeg/tkmpeg.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 1999-2015
-// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
-// For conditions of distribution and use, see copyright notice in "copyright"
-
-#ifndef __tkmpeg_h__
-#define __tkmpeg_h__
-
-extern "C" {
-#include "ezmpeg.h"
-}
-
-class TkMPEG {
- private:
- Tcl_Interp* interp;
- ezMPEGStream ms;
- int width;
- int height;
- int fps;
- int gop;
- int quality;
-
- public:
- TkMPEG(Tcl_Interp*);
- ~TkMPEG();
-
- int create(int, const char*[]);
- int add(int, const char*[]);
- int close(int, const char*[]);
-};
-
-extern TkMPEG* tkmpeg;
-
-#endif