summaryrefslogtreecommitdiffstats
path: root/tkmpeg/tkmpeg.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-01-07 19:24:27 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-01-07 19:24:27 (GMT)
commit3eacbfa27772fd77d216cfbbacd7aa029e55c195 (patch)
tree6599586aec54d9ca99f476326158de648530e72f /tkmpeg/tkmpeg.h
parentb79546a540f7d856c811d39024f0b47620ba0645 (diff)
downloadblt-3eacbfa27772fd77d216cfbbacd7aa029e55c195.zip
blt-3eacbfa27772fd77d216cfbbacd7aa029e55c195.tar.gz
blt-3eacbfa27772fd77d216cfbbacd7aa029e55c195.tar.bz2
update TEA 3.13
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