Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] Wiretap's mpeg decoder has weak magic for MPEG-PES

From: Stephen Fisher <stephentfisher@xxxxxxxxx>
Date: Sun, 16 Nov 2008 19:55:00 -0700
On Sun, Nov 16, 2008 at 06:50:18PM -0800, Guy Harris wrote:

> ...and if PacketLogger files don't have a magic number, and if the 
> heuristics for it are stronger than those for PES sequences, you could 
> put the entry for it before the entry for the MPEG file reader.

Correct, PacketLogger files do not have a magic number.  Its current 
hueristic is:

	if(!((pl_hdr.len & 0xFFFF0000) == 0 && (pl_hdr.type < 0x04 ||
						pl_hdr.type == 0xFE ||
						pl_hdr.type == 0xFF)))

... which is partially borrowed from the Linux BlueZ bluetooth file 
Anazlyer for Gnome.


Steve