aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h261.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-10-02 20:59:54 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-10-02 20:59:54 +0000
commit093040a179e3e8b1e6acd1070f9748ea4ea08dad (patch)
treea6eb40ef64a4d9137d4766cf588e95f8c5aee8e6 /epan/dissectors/packet-h261.c
parente11c4aac89754263c91d3aca19bd67a42a155bf7 (diff)
From Jeff Snyder
00-iax.diff Modifications to the IAX2 dissector so that it offers desegmentation to subdissectors using the same API as TCP offers (pinfo->desegment_len etc) 01-amr.diff Modifications to the AMR dissector to allow AMR IF2 data to be dissected via call_dissector() from packet-h223.c. This patch also causes the AMR dissector to append the frame type string to the info column, so that the info column shows what protocols an H.223 frame contains. 02-h263-data.diff Modifications to packet-h263.c to separate the dissection of h.263 RTP encpasulation from the dissection of the actual h.263 data. The data dissection functions are added as a second dissector. This data-only dissector is used to dissect the video channel in our h.223 streams. As with the AMR modification, this makes the H.263 dissector append to the info column. svn path=/trunk/; revision=16068
Diffstat (limited to 'epan/dissectors/packet-h261.c')
-rw-r--r--epan/dissectors/packet-h261.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-h261.c b/epan/dissectors/packet-h261.c
index 0061b215f0..4c064d1058 100644
--- a/epan/dissectors/packet-h261.c
+++ b/epan/dissectors/packet-h261.c
@@ -43,6 +43,7 @@
#include <string.h>
#include <epan/rtp_pt.h>
+#include "iax2_codec_type.h"
/* H.261 header fields */
static int proto_h261 = -1;
@@ -260,4 +261,5 @@ proto_reg_handoff_h261(void)
h261_handle = create_dissector_handle(dissect_h261, proto_h261);
dissector_add("rtp.pt", PT_H261, h261_handle);
+ dissector_add("iax2.codec", AST_FORMAT_H261, h261_handle);
}