Lines Matching refs:frame_hdr10_plus
329 FrameHDR10Plus frame_hdr10_plus;
330 while (av_fifo_read(*fifo, &frame_hdr10_plus, 1) >= 0)
331 av_buffer_unref(&frame_hdr10_plus.hdr10_plus);
337 FrameHDR10Plus frame_hdr10_plus;
339 if (!pkt || av_fifo_peek(fifo, &frame_hdr10_plus, 1, 0) < 0)
341 if (!frame_hdr10_plus.hdr10_plus || frame_hdr10_plus.pts != pkt->pts)
345 data = av_packet_new_side_data(pkt, AV_PKT_DATA_DYNAMIC_HDR10_PLUS, frame_hdr10_plus.hdr10_plus->size);
347 av_buffer_unref(&frame_hdr10_plus.hdr10_plus);
351 memcpy(data, frame_hdr10_plus.hdr10_plus->data, frame_hdr10_plus.hdr10_plus->size);
352 av_buffer_unref(&frame_hdr10_plus.hdr10_plus);