Lines Matching defs:buf
111 /* sprop-depack-buf-nalus: 0-32767 */
112 if (!strcmp(attr, "sprop-depack-buf-nalus")) {
115 av_log(s, AV_LOG_TRACE, "Found sprop-depack-buf-nalus in SDP, DON field usage is: %d\n",
119 /* sprop-depack-buf-bytes: 0-4294967295 */
120 /* depack-buf-cap */
179 const uint8_t *buf, int len, uint16_t seq,
182 const uint8_t *rtp_pl = buf;
208 nal_type = (buf[0] >> 1) & 0x3f;
209 lid = ((buf[0] << 5) & 0x20) | ((buf[1] >> 3) & 0x1f);
210 tid = buf[1] & 0x07;
248 memcpy(pkt->data + sizeof(start_sequence), buf, len);
254 buf += RTP_HEVC_PAYLOAD_HEADER_SIZE;
259 buf += RTP_HEVC_DONL_FIELD_SIZE;
263 res = ff_h264_handle_aggregated_packet(ctx, rtp_hevc_ctx, pkt, buf, len,
273 buf += RTP_HEVC_PAYLOAD_HEADER_SIZE;
288 first_fragment = buf[0] & 0x80;
289 last_fragment = buf[0] & 0x40;
290 fu_type = buf[0] & 0x3f;
293 buf += RTP_HEVC_FU_HEADER_SIZE;
298 buf += RTP_HEVC_DONL_FIELD_SIZE;
324 res = ff_h264_handle_frag_packet(pkt, buf, len, first_fragment,