aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/mpeg-pes
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2007-12-08 17:45:02 +0000
committerJörg Mayer <jmayer@loplof.de>2007-12-08 17:45:02 +0000
commit1621df1080428c3881f7d63258e578d83a9ca307 (patch)
treebc81882dc512c85c8e848d11f23f17b5d013a912 /asn1/mpeg-pes
parentf4fcd1b1466936fbc54addc8b3b75fe8c8a0a288 (diff)
Warning fix:
- No comma after last element in enum Fix: - Call new_dissector_register for new style dissector. svn path=/trunk/; revision=23808
Diffstat (limited to 'asn1/mpeg-pes')
-rw-r--r--asn1/mpeg-pes/packet-mpeg-pes-template.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/mpeg-pes/packet-mpeg-pes-template.c b/asn1/mpeg-pes/packet-mpeg-pes-template.c
index 079eded62f..513b37e168 100644
--- a/asn1/mpeg-pes/packet-mpeg-pes-template.c
+++ b/asn1/mpeg-pes/packet-mpeg-pes-template.c
@@ -102,7 +102,7 @@ enum {
DSM_TRICK_MODE_FLAG = 0x08,
COPY_INFO_FLAG = 0x04,
CRC_FLAG = 0x02,
- EXTENSION_FLAG = 0x01,
+ EXTENSION_FLAG = 0x01
};
enum {
@@ -111,7 +111,7 @@ enum {
SEQUENCE_FLAG = 0x20,
PSTD_BUFFER_FLAG = 0x10,
MUST_BE_ONES = 0x07,
- EXTENSION_FLAG2 = 0x01,
+ EXTENSION_FLAG2 = 0x01
};
static guint64 tvb_get_ntoh40(tvbuff_t *tvb, unsigned offset)
@@ -562,7 +562,7 @@ proto_register_mpeg_pes(void)
"Packetized Elementary Stream", "MPEG PES", "mpeg-pes");
proto_register_field_array(proto_mpeg_pes, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
- register_dissector("mpeg-pes", dissect_mpeg_pes, proto_mpeg_pes);
+ new_register_dissector("mpeg-pes", dissect_mpeg_pes, proto_mpeg_pes);
}
void