comparison rtsp.c @ 3975:44561554cb7e libavformat

Rename RTP payload contexts to PayloadContext, suggested by Luca in "RDT/Realmedia patches #2" thread on ML.
author rbultje
date Sat, 04 Oct 2008 04:11:12 +0000
parents 4fd67f05bad9
children 1f1c4535f421
comparison
equal deleted inserted replaced
3974:a8383d02c686 3975:44561554cb7e
90 int sdp_ttl; /* IP TTL (from SDP content - not used in RTSP) */ 90 int sdp_ttl; /* IP TTL (from SDP content - not used in RTSP) */
91 int sdp_payload_type; /* payload type - only used in SDP */ 91 int sdp_payload_type; /* payload type - only used in SDP */
92 rtp_payload_data_t rtp_payload_data; /* rtp payload parsing infos from SDP */ 92 rtp_payload_data_t rtp_payload_data; /* rtp payload parsing infos from SDP */
93 93
94 RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure) 94 RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure)
95 void *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol) 95 PayloadContext *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol)
96 } RTSPStream; 96 } RTSPStream;
97 97
98 static int rtsp_read_play(AVFormatContext *s); 98 static int rtsp_read_play(AVFormatContext *s);
99 99
100 /* XXX: currently, the only way to change the protocols consists in 100 /* XXX: currently, the only way to change the protocols consists in