Lines Matching refs:outbuf
119 GstBuffer * outbuf, gboolean keyframe, GstClockTime timestamp,
199 GstBuffer *outbuf; in gst_rtp_h265_depay_drain() local
204 outbuf = gst_rtp_h265_complete_au (rtph265depay, ×tamp, &keyframe); in gst_rtp_h265_depay_drain()
205 if (outbuf) in gst_rtp_h265_depay_drain()
206 gst_rtp_h265_depay_push (rtph265depay, outbuf, keyframe, timestamp, FALSE); in gst_rtp_h265_depay_drain()
974 GstBuffer *outbuf; in gst_rtp_h265_complete_au() local
982 outbuf = gst_rtp_h265_depay_allocate_output_buffer (rtph265depay, outsize); in gst_rtp_h265_complete_au()
984 if (outbuf == NULL) in gst_rtp_h265_complete_au()
987 if (!gst_buffer_map (outbuf, &outmap, GST_MAP_WRITE)) in gst_rtp_h265_complete_au()
1011 gst_rtp_copy_video_meta (rtph265depay, outbuf, buf); in gst_rtp_h265_complete_au()
1014 gst_buffer_unmap (outbuf, &outmap); in gst_rtp_h265_complete_au()
1022 return outbuf; in gst_rtp_h265_complete_au()
1058 gst_rtp_h265_depay_push (GstRtpH265Depay * rtph265depay, GstBuffer * outbuf, in gst_rtp_h265_depay_push() argument
1064 gst_rtp_copy_video_meta (rtph265depay, rtph265depay->codec_data, outbuf); in gst_rtp_h265_depay_push()
1065 outbuf = gst_buffer_append (rtph265depay->codec_data, outbuf); in gst_rtp_h265_depay_push()
1069 outbuf = gst_buffer_make_writable (outbuf); in gst_rtp_h265_depay_push()
1071 gst_rtp_drop_non_video_meta (rtph265depay, outbuf); in gst_rtp_h265_depay_push()
1073 GST_BUFFER_PTS (outbuf) = timestamp; in gst_rtp_h265_depay_push()
1076 GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT); in gst_rtp_h265_depay_push()
1078 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT); in gst_rtp_h265_depay_push()
1081 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_MARKER); in gst_rtp_h265_depay_push()
1083 gst_rtp_base_depayload_push (GST_RTP_BASE_DEPAYLOAD (rtph265depay), outbuf); in gst_rtp_h265_depay_push()
1093 GstBuffer *outbuf = NULL; in gst_rtp_h265_depay_handle_nal() local
1157 outbuf = gst_rtp_h265_complete_au (rtph265depay, &out_timestamp, in gst_rtp_h265_depay_handle_nal()
1170 outbuf = gst_rtp_h265_complete_au (rtph265depay, &out_timestamp, in gst_rtp_h265_depay_handle_nal()
1175 outbuf = nal; in gst_rtp_h265_depay_handle_nal()
1179 if (outbuf) { in gst_rtp_h265_depay_handle_nal()
1180 gst_rtp_h265_depay_push (rtph265depay, outbuf, out_keyframe, out_timestamp, in gst_rtp_h265_depay_handle_nal()
1201 GstBuffer *outbuf; in gst_rtp_h265_finish_fragmentation_unit() local
1206 outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize); in gst_rtp_h265_finish_fragmentation_unit()
1208 gst_buffer_map (outbuf, &map, GST_MAP_WRITE); in gst_rtp_h265_finish_fragmentation_unit()
1216 gst_buffer_unmap (outbuf, &map); in gst_rtp_h265_finish_fragmentation_unit()
1220 gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, in gst_rtp_h265_finish_fragmentation_unit()
1228 GstBuffer *outbuf = NULL; in gst_rtp_h265_depay_process() local
1352 outbuf = gst_buffer_new_and_alloc (outsize); in gst_rtp_h265_depay_process()
1354 gst_buffer_map (outbuf, &map, GST_MAP_WRITE); in gst_rtp_h265_depay_process()
1366 gst_buffer_unmap (outbuf, &map); in gst_rtp_h265_depay_process()
1368 gst_rtp_copy_video_meta (rtph265depay, outbuf, rtp->buffer); in gst_rtp_h265_depay_process()
1373 gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp, in gst_rtp_h265_depay_process()
1453 outbuf = gst_buffer_new_and_alloc (outsize); in gst_rtp_h265_depay_process()
1455 gst_buffer_map (outbuf, &map, GST_MAP_WRITE); in gst_rtp_h265_depay_process()
1465 gst_buffer_unmap (outbuf, &map); in gst_rtp_h265_depay_process()
1467 gst_rtp_copy_video_meta (rtph265depay, outbuf, rtp->buffer); in gst_rtp_h265_depay_process()
1472 gst_adapter_push (rtph265depay->adapter, outbuf); in gst_rtp_h265_depay_process()
1501 outbuf = gst_buffer_new_and_alloc (outsize); in gst_rtp_h265_depay_process()
1502 gst_buffer_fill (outbuf, 0, payload, outsize); in gst_rtp_h265_depay_process()
1504 gst_rtp_copy_video_meta (rtph265depay, outbuf, rtp->buffer); in gst_rtp_h265_depay_process()
1509 gst_adapter_push (rtph265depay->adapter, outbuf); in gst_rtp_h265_depay_process()
1512 outbuf = NULL; in gst_rtp_h265_depay_process()
1538 outbuf = gst_buffer_new_and_alloc (outsize); in gst_rtp_h265_depay_process()
1540 gst_buffer_map (outbuf, &map, GST_MAP_WRITE); in gst_rtp_h265_depay_process()
1547 gst_buffer_unmap (outbuf, &map); in gst_rtp_h265_depay_process()
1549 gst_rtp_copy_video_meta (rtph265depay, outbuf, rtp->buffer); in gst_rtp_h265_depay_process()
1551 gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp, marker); in gst_rtp_h265_depay_process()