Skip to content
Snippets Groups Projects
Commit 2fa21ba7 authored by Pierre LALET's avatar Pierre LALET
Browse files

Changed RTP field name from `payload` to `payload_type`

fixes #5077 (reported by @immortalus)
suggested by Loïc Gremaud (@grelinfo)
parent 5d3dfe47
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ class RTP(Packet):
BitField('extension', 0, 1),
BitFieldLenField('numsync', None, 4, count_of='sync'),
BitField('marker', 0, 1),
BitEnumField('payload', 0, 7, _rtp_payload_types),
BitEnumField('payload_type', 0, 7, _rtp_payload_types),
ShortField('sequence', 0),
IntField('timestamp', 0),
IntField('sourcesync', 0),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment