diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-30 13:31:46 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-24 11:19:10 +0100 |
commit | 3567fab6e2a5d8a61aa4eff19431582ce48f3c44 (patch) | |
tree | 0cdfd82f3e682ac23c49075d2890e0dcc7ad1070 | |
parent | 17756882920cbc8620251b81da433374cd685dda (diff) | |
download | ffmpeg-3567fab6e2a5d8a61aa4eff19431582ce48f3c44.tar.gz |
avformat/rtpdec: Remove next pointer from Protocol Handlers
Forgotten in 61974537610d82bd35b6e3ac91ccd270c6bdc711 (notice that
RTPDynamicProtocolHandler is not a public struct, so one can remove
the linked-list pointer immediately (unlike in most other patches of
this kind)).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavformat/rtpdec.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 9144edbe8b..701ce072b6 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -134,8 +134,6 @@ struct RTPDynamicProtocolHandler { /** Parse handler for this dynamic packet */ DynamicPayloadPacketHandlerProc parse_packet; int (*need_keyframe)(PayloadContext *context); - - struct RTPDynamicProtocolHandler *next; }; typedef struct RTPPacket { |