RFC2190: Fix bitmasks for several fields in mode A

Fixes some errors that the packet diagram helped make obvious.
Closes #17025.


(cherry picked from commit 5d374fed36)
This commit is contained in:
John Thacker 2020-11-18 01:13:06 +00:00
parent dd88e7a90b
commit 793142cbec
1 changed files with 5 additions and 5 deletions

View File

@ -317,7 +317,7 @@ proto_register_rfc2190(void)
FT_BOOLEAN,
8,
NULL,
0x08,
0x10,
"Picture coding type, intra-coded (false) or inter-coded (true)", HFILL
}
},
@ -329,7 +329,7 @@ proto_register_rfc2190(void)
FT_BOOLEAN,
8,
NULL,
0x10,
0x08,
"Unrestricted Motion Vector option for current picture", HFILL
}
},
@ -341,7 +341,7 @@ proto_register_rfc2190(void)
FT_BOOLEAN,
8,
NULL,
0x20,
0x04,
"Syntax-based Arithmetic Coding option for current picture", HFILL
}
},
@ -353,7 +353,7 @@ proto_register_rfc2190(void)
FT_BOOLEAN,
8,
NULL,
0x40,
0x02,
"Advanced Prediction option for current picture", HFILL
}
},
@ -533,7 +533,7 @@ proto_register_rfc2190(void)
FT_UINT16,
BASE_DEC,
NULL,
0x0380,
0x01E0,
"Reserved field that should contain zeroes", HFILL
}
},