blob: 5dbcd96f3ab70d1f86eca841a19db7c63173cf7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/** @file
*
* MP4 (ISO/IEC 14496-12) file format decoder for the Wiretap library.
*
* Wiretap Library
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __W_MP4_H__
#define __W_MP4_H__
#include "wtap.h"
wtap_open_return_val mp4_open(wtap *wth, int *err, gchar **err_info);
#endif
|