diff options
author | phintuka <phintuka> | 2008-02-04 23:05:34 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-02-04 23:05:34 +0000 |
commit | 97fbb5855c41341ac1b66ff02c6f0ca2128e292a (patch) | |
tree | 1e271c70dd7ad7cd6feae586708408d31504c01c | |
parent | 061400a77a3b26fbbe47bae3ce9b457ac81d00b0 (diff) | |
download | xineliboutput-97fbb5855c41341ac1b66ff02c6f0ca2128e292a.tar.gz xineliboutput-97fbb5855c41341ac1b66ff02c6f0ca2128e292a.tar.bz2 |
Initial import
-rw-r--r-- | tools.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools.c b/tools.c new file mode 100644 index 00000000..dcca8d1c --- /dev/null +++ b/tools.c @@ -0,0 +1,23 @@ +/* + * tools.c: VDR/C++ wrapper for common tools + * + * See the main source file 'xineliboutput.c' for copyright information and + * how to reach the author. + * + * $Id: tools.c,v 1.1 2008-02-04 23:05:34 phintuka Exp $ + * + */ + +#define __STDC_CONSTANT_MACROS +#include <stdint.h> +#define __STDC_FORMAT_MACROS +#include <inttypes.h> + +#include <vdr/tools.h> +#include "logdefs.h" + + +#include "tools/pes.c" +#include "tools/mpeg.c" +#include "tools/h264.c" + |