Lines Matching refs:ssrc
78 guint32 ssrc, guint16 lost_seq) in rtp_storage_get_packets_for_recovery() argument
86 lost_seq, fec_pt, ssrc); in rtp_storage_get_packets_for_recovery()
91 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_get_packets_for_recovery()
95 GST_ERROR_OBJECT (self, "Cant find ssrc = 0x08%x", ssrc); in rtp_storage_get_packets_for_recovery()
100 " lost_seq=%u for ssrc=%08x", fec_pt, lost_seq, ssrc); in rtp_storage_get_packets_for_recovery()
105 GST_DEBUG_OBJECT (self, "Empty RTP storage for ssrc=%08x", ssrc); in rtp_storage_get_packets_for_recovery()
114 rtp_storage_get_redundant_packet (RtpStorage * self, guint32 ssrc, in rtp_storage_get_redundant_packet() argument
122 " seq=%u for ssrc=%08x, but size is 0", lost_seq, ssrc); in rtp_storage_get_redundant_packet()
127 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_get_redundant_packet()
131 GST_ERROR_OBJECT (self, "Cant find ssrc = 0x%x", ssrc); in rtp_storage_get_redundant_packet()
137 GST_DEBUG_OBJECT (self, "Empty RTP storage for ssrc=%08x", ssrc); in rtp_storage_get_redundant_packet()
147 GstBuffer * buffer, guint8 pt, guint32 ssrc, guint16 seq) in rtp_storage_do_put_recovered_packet() argument
152 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_do_put_recovered_packet()
159 GST_PTR_FORMAT, ssrc, pt, seq, buffer); in rtp_storage_do_put_recovered_packet()
168 GstBuffer * buffer, guint8 pt, guint32 ssrc, guint16 seq) in rtp_storage_put_recovered_packet() argument
170 rtp_storage_do_put_recovered_packet (self, buffer, pt, ssrc, seq); in rtp_storage_put_recovered_packet()
179 guint32 ssrc; in rtp_storage_append_buffer() local
196 ssrc = gst_rtp_buffer_get_ssrc (&rtpbuf); in rtp_storage_append_buffer()
202 stream = g_hash_table_lookup (self->streams, GUINT_TO_POINTER (ssrc)); in rtp_storage_append_buffer()
205 "New media stream (ssrc=0x%08x, pt=%u) detected", ssrc, pt); in rtp_storage_append_buffer()
206 stream = rtp_storage_stream_new (ssrc); in rtp_storage_append_buffer()
207 g_hash_table_insert (self->streams, GUINT_TO_POINTER (ssrc), stream); in rtp_storage_append_buffer()
214 ssrc, pt, seq, buf); in rtp_storage_append_buffer()