aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpeg-descriptor.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-10-30 22:18:55 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-10-30 22:18:55 +0000
commit63325bdab85b239b8aeb58d107080f51cc6d82fd (patch)
treeed5659001e4b8e086e4be71215b968ed4b90db0a /epan/dissectors/packet-mpeg-descriptor.c
parent3e2863e6b8979126f6d17957c95572f26990d6aa (diff)
add one more private data specifier
svn path=/trunk/; revision=52986
Diffstat (limited to 'epan/dissectors/packet-mpeg-descriptor.c')
-rw-r--r--epan/dissectors/packet-mpeg-descriptor.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-mpeg-descriptor.c b/epan/dissectors/packet-mpeg-descriptor.c
index b0b839a2d7..6756eb68c0 100644
--- a/epan/dissectors/packet-mpeg-descriptor.c
+++ b/epan/dissectors/packet-mpeg-descriptor.c
@@ -1930,14 +1930,16 @@ proto_mpeg_descriptor_dissect_terrestrial_delivery(tvbuff_t *tvb, guint offset,
/* 0x5F Private Data Specifier */
static int hf_mpeg_descr_private_data_specifier_id = -1;
-#define PRIVATE_DATA_SPECIFIER_RESERVED 0x00000000
-#define PRIVATE_DATA_SPECIFIER_NORDIG 0x00000029
-#define PRIVATE_DATA_SPECIFIER_CIPLUS_LLP 0x00000040
+#define PRIVATE_DATA_SPECIFIER_RESERVED 0x00000000
+#define PRIVATE_DATA_SPECIFIER_NORDIG 0x00000029
+#define PRIVATE_DATA_SPECIFIER_CIPLUS_LLP 0x00000040
+#define PRIVATE_DATA_SPECIFIER_EUTELSAT_SA 0x0000055F
static const value_string mpeg_descr_data_specifier_id_vals[] = {
{ PRIVATE_DATA_SPECIFIER_RESERVED, "reserved" },
{ PRIVATE_DATA_SPECIFIER_NORDIG, "NorDig" },
{ PRIVATE_DATA_SPECIFIER_CIPLUS_LLP, "CI+ LLP" },
+ { PRIVATE_DATA_SPECIFIER_EUTELSAT_SA, "Eutelsat S.A." },
/* See dvbservices.com for complete and current list */
{ 0, NULL }