aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValerii Zapodovnikov <val.zapod.vz@gmail.com>2021-03-10 11:17:03 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2021-03-11 09:26:44 +0000
commit584442fd6de4347dc62c1be731a12b9d867e71d9 (patch)
tree11a33168513487cc77e26e78da18f30a3363ad71
parenta52ab2801347c72ddb5023fa2f7083d6ad880e3c (diff)
VP8 RTP: fixed wrong bit for "show bit"
-rw-r--r--epan/dissectors/packet-vp8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vp8.c b/epan/dissectors/packet-vp8.c
index 2f30a67caa..eb9cc03629 100644
--- a/epan/dissectors/packet-vp8.c
+++ b/epan/dissectors/packet-vp8.c
@@ -503,7 +503,7 @@ proto_register_vp8(void)
},
{ &hf_vp8_hdr_show_bit,
{ "Show bit", "vp8.hdr.show",
- FT_BOOLEAN, 8, NULL, BIT_5_MASK,
+ FT_BOOLEAN, 8, NULL, BIT_4_MASK,
NULL, HFILL }
},
{ &hf_vp8_hdr_first_partition_size,