summaryrefslogtreecommitdiffstats
path: root/wiretap/mpeg.h
blob: 008c7a19828dc279d6e638467dd5fbda517fcc61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @file
 *
 * MPEG file format decoder for the Wiretap library.
 * Written by Shaun Jackman <sjackman@gmail.com>
 * Copyright 2007 Shaun Jackman
 *
 * Wiretap Library
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef __W_MPEG_H__
#define __W_MPEG_H__

#include <glib.h>
#include "wtap.h"

wtap_open_return_val mpeg_open(wtap *wth, int *err, char **err_info);

#endif