use the CI+ value string for CI+ descriptor tags

Change-Id: I48f3304f74263672a65a74f523f14ebb7950d2d6
Reviewed-on: https://code.wireshark.org/review/1062
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Tested-by: Martin Kaiser <wireshark@kaiser.cx>
This commit is contained in:
Martin Kaiser 2014-04-10 22:59:19 +02:00
parent b84ce5ca43
commit b6cbf2374e
1 changed files with 2 additions and 1 deletions

View File

@ -2612,7 +2612,8 @@ proto_mpeg_descriptor_dissect_private_ciplus(tvbuff_t *tvb, guint offset, proto_
di = proto_tree_add_text(tree, tvb, offset_start, -1, "CI+ private descriptor Tag=0x%02x", tag);
descriptor_tree = proto_item_add_subtree(di, ett_mpeg_descriptor);
proto_tree_add_item(descriptor_tree, hf_mpeg_descriptor_tag, tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_uint_format(descriptor_tree, hf_mpeg_descriptor_tag,
tvb, offset, 1, tag, "Descriptor Tag: %s (0x%02x)", tag_str, tag);
offset += 1;
len = tvb_get_guint8(tvb, offset);