Home
last modified time | relevance | path

Searched refs:body_size (Results 1 – 13 of 13) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/dvb/
Dcamutils.c207 guint body_size = 0; in cam_build_ca_pmt() local
221 body_size += 6 + len; in cam_build_ca_pmt()
232 body_size += 5 + len; in cam_build_ca_pmt()
235 GST_DEBUG ("Body Size %d", body_size); in cam_build_ca_pmt()
237 buffer = g_malloc0 (body_size); in cam_build_ca_pmt()
284 *size = body_size; in cam_build_ca_pmt()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspmessage.c591 gst_rtsp_message_set_body (cp, msg->body, msg->body_size); in gst_rtsp_message_copy()
970 msg->body_size = size; in gst_rtsp_message_take_body()
1005 ((GstRTSPMessage *) msg)->body_size = size; in gst_rtsp_message_get_body()
1009 *size = msg->body_size; in gst_rtsp_message_get_body()
1039 msg->body_size = size; in gst_rtsp_message_steal_body()
1043 *size = msg->body_size; in gst_rtsp_message_steal_body()
1046 msg->body_size = 0; in gst_rtsp_message_steal_body()
1094 msg->body_size = buffer ? gst_buffer_get_size (buffer) : 0; in gst_rtsp_message_take_body_buffer()
1152 msg->body_size = 0; in gst_rtsp_message_steal_body_buffer()
1273 g_print (" size: '%d'\n", msg->body_size); in gst_rtsp_message_dump()
Dgstrtspconnection.c1819 data_header[2] = (message->body_size >> 8) & 0xff; in serialize_message()
1820 data_header[3] = message->body_size & 0xff; in serialize_message()
1828 serialized_message->body_data_size = message->body_size; in serialize_message()
1857 if (message->body_size > 0) { in serialize_message()
1860 len = g_strdup_printf ("%d", message->body_size); in serialize_message()
1869 serialized_message->body_data_size = message->body_size; in serialize_message()
4160 guint body_size; in gst_rtsp_source_dispatch_write() local
4169 body_size = msg->body_data_size; in gst_rtsp_source_dispatch_write()
4171 body_size = gst_buffer_get_size (msg->body_buffer); in gst_rtsp_source_dispatch_write()
4173 body_size = 0; in gst_rtsp_source_dispatch_write()
[all …]
Dgstrtspmessage.h105 guint body_size; member
/third_party/ffmpeg/libavformat/
Diff.c112 uint32_t body_size; member
378 iff->body_size = iff->body_end - iff->body_pos; in read_dst_frame()
505 iff->body_size = data_size; in iff_read_header()
848 if (iff->body_size > INT_MAX || !iff->body_size) in iff_read_packet()
850 ret = av_get_packet(pb, pkt, iff->body_size); in iff_read_packet()
884 if (iff->body_size > INT_MAX || !iff->body_size) in iff_read_packet()
886 ret = av_get_packet(pb, pkt, iff->body_size); in iff_read_packet()
/third_party/mesa3d/src/panfrost/lib/tests/
Dtest-layout.cpp388 EXPECT_EQ(l.slices[0].afbc.body_size, 32768); in TEST()
428 EXPECT_EQ(l.slices[0].afbc.body_size, 2097152); in TEST()
455 EXPECT_EQ(l.slices[0].afbc.body_size, 32 * 8); in TEST()
483 EXPECT_EQ(l.slices[0].afbc.body_size, 32 * 8 * 8 * 8); in TEST()
/third_party/mesa3d/src/panfrost/lib/
Dpan_layout.c408 slice->afbc.body_size = slice_one_size; in pan_image_layout_init()
418 slice->afbc.body_size *= depth; in pan_image_layout_init()
Dpan_texture.h70 unsigned body_size; member
Dpan_cs.c520 cfg->afbc.body_size = slice->afbc.body_size; in pan_prepare_rt()
/third_party/mesa3d/docs/relnotes/
D21.0.3.rst59 - panfrost: Fix AFBC body_size for shared resources
D21.0.0.rst646 - panfrost: Add AFBC slice.body_size and slice.{row,surface}_stride fields
D21.1.0.rst715 - panfrost: Fix AFBC body_size for shared resources
/third_party/gstreamer/gstplugins_good/gst/rtsp/
Dgstrtspsrc.c9875 GST_LOG_OBJECT (src, " size: '%d'", msg->body_size); in gst_rtspsrc_print_rtsp_message()