summaryrefslogtreecommitdiffstats
path: root/core/Mux.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/Mux.h')
-rw-r--r--core/Mux.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/core/Mux.h b/core/Mux.h
deleted file mode 100644
index fbd1fd98f..000000000
--- a/core/Mux.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* $Id: Mux.h,v 1.2 2004/05/02 16:25:00 titer Exp $
-
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.m0k.org/>.
- It may be used under the terms of the GNU General Public License. */
-
-#ifndef HB_MUX_H
-#define HB_MUX_H
-
-#define HB_MUX_COMMON_MEMBERS \
- int (*start) ( HBMux * ); \
- int (*muxVideo) ( HBMux *, void *, HBBuffer * ); \
- int (*muxAudio) ( HBMux *, void *, HBBuffer * ); \
- int (*end) ( HBMux * );
-
-typedef struct HBMux HBMux;
-
-HBMuxThread * HBMuxThreadInit( HBHandle *, HBTitle * );
-void HBMuxThreadClose( HBMuxThread ** );
-
-#endif