From 799d6fd057b0c20a7692a1181d811a8ff3a88d04 Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Sun, 15 Nov 2015 16:51:45 -0500 Subject: create_dissector_handle -> new_create_dissector_handle Picking off "easy" dissectors that only have one or two exit points at most. Change-Id: I96aa9cf53533cbb07105aa400d42922baf3016b3 Reviewed-on: https://code.wireshark.org/review/11860 Petri-Dish: Michael Mann Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann --- epan/dissectors/packet-mpeg1.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'epan/dissectors/packet-mpeg1.c') diff --git a/epan/dissectors/packet-mpeg1.c b/epan/dissectors/packet-mpeg1.c index 4044a463fb..88c53c4fc2 100644 --- a/epan/dissectors/packet-mpeg1.c +++ b/epan/dissectors/packet-mpeg1.c @@ -76,8 +76,8 @@ static const value_string rtp_mpg_picture_types_vals[] = { 0, NULL }, }; -static void -dissect_mpeg1( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree ) +static int +dissect_mpeg1( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_ ) { proto_item *ti; proto_tree *mpg_tree; @@ -125,6 +125,7 @@ dissect_mpeg1( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree ) /* The rest of the packet is the MPEG-1 stream */ proto_tree_add_item( mpg_tree, hf_rtp_mpg_data, tvb, offset, -1, ENC_NA ); + return tvb_captured_length(tvb); } void @@ -327,7 +328,7 @@ proto_reg_handoff_mpeg1(void) { dissector_handle_t mpeg1_handle; - mpeg1_handle = create_dissector_handle(dissect_mpeg1, proto_mpg); + mpeg1_handle = new_create_dissector_handle(dissect_mpeg1, proto_mpg); dissector_add_uint("rtp.pt", PT_MPV, mpeg1_handle); } -- cgit v1.2.3