diff options
author | Martin Storsjö <martin@martin.st> | 2012-12-11 19:35:03 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-12-12 12:18:22 +0200 |
commit | e66d448c7564424e958332212083beecbc6e1868 (patch) | |
tree | 7ef585df692ae32a21550ba5c086a1e1c5b9199a | |
parent | 81ef5192529dd9ff6b7dc34b6528b9d8dafdd100 (diff) | |
download | ffmpeg-e66d448c7564424e958332212083beecbc6e1868.tar.gz |
rtpdec: Remove unused context variables
These stem from back when both the rtp muxer and rtp depacketizing
shared the same struct.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/rtpdec.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index da3680d6ab..f643fa20a9 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -176,15 +176,12 @@ struct RTPDemuxContext { unsigned int packet_count; // TODO: move into statistics (outgoing) unsigned int octet_count; // TODO: move into statistics (outgoing) unsigned int last_octet_count; // TODO: move into statistics (outgoing) - int first_packet; /* buffer for output */ uint8_t buf[RTP_MAX_PACKET_LENGTH]; - uint8_t *buf_ptr; /* dynamic payload stuff */ DynamicPayloadPacketHandlerProc parse_packet; ///< This is also copied from the dynamic protocol handler structure PayloadContext *dynamic_protocol_context; ///< This is a copy from the values setup from the sdp parsing, in rtsp.c don't free me. - int max_frames_per_packet; }; void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler); |