aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/mp2t.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-03-02 06:02:28 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-03-02 06:02:28 +0000
commite82ad19e58043b01aae46feb952255eafda31fad (patch)
treed701dc55debb15604f5f3c36840c8ec80f82cd4f /wiretap/mp2t.h
parentc58bbe0ad7744af1a981505f8809bac2f8bfdc37 (diff)
From Weston Schmidt: Add mpeg-ts capture file format support. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6894
svn path=/trunk/; revision=41286
Diffstat (limited to 'wiretap/mp2t.h')
-rw-r--r--wiretap/mp2t.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/wiretap/mp2t.h b/wiretap/mp2t.h
new file mode 100644
index 0000000000..bf4b2dde26
--- /dev/null
+++ b/wiretap/mp2t.h
@@ -0,0 +1,33 @@
+/* mp2t.h
+ *
+ * ISO/IEC 13818-1 MPEG2-TS file format decoder for the Wiretap library.
+ * Written by Weston Schmidt <weston_schmidt@alumni.purdue.edu>
+ * Copyright 2012 Weston Schmidt
+ *
+ * $Id$
+ *
+ * Wiretap Library
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __W_MP2T_H__
+#define __W_MP2T_H__
+
+#include <glib.h>
+#include <wtap.h>
+
+int mp2t_open(wtap *wth, int *err, gchar **err_info);
+
+#endif