summaryrefslogtreecommitdiff
path: root/contrib/vdr2jpeg/mpegdec.h
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2010-11-27 13:36:09 +0000
committerAndreas Brachold <vdr07@deltab.de>2010-11-27 13:36:09 +0000
commitf279ccbfdfcaa4e7301b56ade829cb974aeb5636 (patch)
tree2bff18b8a4738140684fa9536fb49a263ab79011 /contrib/vdr2jpeg/mpegdec.h
parent1f7ff5d00b83cbeb0afee85042d60aa2e60dbdd0 (diff)
downloadxxv-f279ccbfdfcaa4e7301b56ade829cb974aeb5636.tar.gz
xxv-f279ccbfdfcaa4e7301b56ade829cb974aeb5636.tar.bz2
* Release vdr2jpeg-0.1.9
Support new vdr filestructure and fileformat(since VDR-1.7.3)
Diffstat (limited to 'contrib/vdr2jpeg/mpegdec.h')
-rw-r--r--contrib/vdr2jpeg/mpegdec.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/vdr2jpeg/mpegdec.h b/contrib/vdr2jpeg/mpegdec.h
new file mode 100644
index 0000000..b28c32d
--- /dev/null
+++ b/contrib/vdr2jpeg/mpegdec.h
@@ -0,0 +1,17 @@
+/*
+ * Simple program to grab images from VDR Recording
+ *
+ * Copyright(c) 2010 Andreas Brachold
+ *
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
+ */
+
+#ifndef __MPEGDEC_H__
+#define __MPEGDEC_H__
+
+void demux_reset(void);
+int demuxPES (unsigned char * buf, unsigned char * end, const char* szFileName, int flags);
+int demuxTS(unsigned char * buffer, unsigned char * end, const char* szFileName, int flags=0 );
+
+#endif