mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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>
This commit is contained in:
parent
81ef519252
commit
e66d448c75
@ -176,15 +176,12 @@ struct RTPDemuxContext {
|
|||||||
unsigned int packet_count; // TODO: move into statistics (outgoing)
|
unsigned int packet_count; // TODO: move into statistics (outgoing)
|
||||||
unsigned int octet_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)
|
unsigned int last_octet_count; // TODO: move into statistics (outgoing)
|
||||||
int first_packet;
|
|
||||||
/* buffer for output */
|
/* buffer for output */
|
||||||
uint8_t buf[RTP_MAX_PACKET_LENGTH];
|
uint8_t buf[RTP_MAX_PACKET_LENGTH];
|
||||||
uint8_t *buf_ptr;
|
|
||||||
|
|
||||||
/* dynamic payload stuff */
|
/* dynamic payload stuff */
|
||||||
DynamicPayloadPacketHandlerProc parse_packet; ///< This is also copied from the dynamic protocol handler structure
|
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.
|
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);
|
void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler);
|
||||||
|
Loading…
Reference in New Issue
Block a user