From: Shaun Jackman

This patch adds MPEG PES (packetized elementary stream) to the list of
magic types in wiretap/mpeg.c.


svn path=/trunk/; revision=22460
This commit is contained in:
Luis Ontanon 2007-08-06 22:34:26 +00:00
parent 9eb4bf072c
commit 96f81d7eba
1 changed files with 5 additions and 4 deletions

View File

@ -247,14 +247,15 @@ mpeg_close(wtap *wth)
g_free(wth->capture.mpeg);
}
/* XXX We probably need more magic to open more types */
struct _mpeg_magic {
size_t len;
const gchar* match;
} magic[] = {
{3,"TAG"},
{3,"ID3"},
{0,NULL}
{ 3, "TAG" }, /* ID3v1 */
{ 3, "ID3" }, /* ID3v2 */
{ 3, "\0\0\1" }, /* MPEG PES */
/* XXX MPEG audio is missing. */
{ 0, NULL }
};
int