Home
last modified time | relevance | path

Searched refs:GST_ROUND_UP_8 (Results 1 – 25 of 30) sorted by relevance

12

/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstbitwriter.c205 data = g_memdup2 (data, GST_ROUND_UP_8 (bitwriter->bit_size) >> 3); in gst_bit_writer_reset_and_get_data()
234 size = GST_ROUND_UP_8 (bitwriter->bit_size) >> 3; in gst_bit_writer_reset_and_get_buffer()
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtpjpegpay.c340 pay->height = GST_ROUND_UP_8 (height) / 8; in gst_rtp_jpeg_pay_setcaps()
341 pay->width = GST_ROUND_UP_8 (width) / 8; in gst_rtp_jpeg_pay_setcaps()
552 pay->height = GST_ROUND_UP_8 (height) / 8; in gst_rtp_jpeg_pay_read_sof()
553 pay->width = GST_ROUND_UP_8 (width) / 8; in gst_rtp_jpeg_pay_read_sof()
Dgstrtpvrawpay.c333 buffers_per_list = GST_ROUND_UP_8 (buffers_per_list); in gst_rtp_vraw_pay_handle_buffer()
Dgstrtph261pay.c747 return (GST_ROUND_UP_8 (last) - GST_ROUND_DOWN_8 (first)) / 8; in bitrange_to_bytes()
/third_party/gstreamer/gstplugins_good/gst/debugutils/
Dgstnavigationtest.c114 #define GST_VIDEO_I420_U_ROWSTRIDE(width) (GST_ROUND_UP_8(width)/2)
115 #define GST_VIDEO_I420_V_ROWSTRIDE(width) ((GST_ROUND_UP_8(GST_VIDEO_I420_Y_ROWSTRIDE(width)))/2)
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-info.c797 bpp = GST_ROUND_UP_8 (bpp) / 8; in fill_planes()
856 info->stride[0] = GST_ROUND_UP_8 (width * 4); in fill_planes()
930 info->stride[1] = GST_ROUND_UP_8 (width) / 2; in fill_planes()
936 info->size = (info->stride[0] + GST_ROUND_UP_8 (width)) * height; in fill_planes()
/third_party/gstreamer/gstplugins_base/sys/xvimage/
Dxvimageallocator.c422 pitches[1] = GST_ROUND_UP_8 (padded_width) / 2; in gst_xvimage_allocator_alloc()
425 pitches[2] = GST_ROUND_UP_8 (pitches[0]) / 2; in gst_xvimage_allocator_alloc()
/third_party/gstreamer/gstplugins_bad/ext/opencv/
Dgstdewarp.cpp510 *out_width = GST_ROUND_UP_8 ((gint) ((2.0 * G_PI) * ((r2 + r1) / 2.0))); in gst_dewarp_calculate_dimensions()
511 *out_height = GST_ROUND_UP_8 ((gint) (r2 - r1)); in gst_dewarp_calculate_dimensions()
/third_party/gstreamer/gstplugins_bad/ext/sndfile/
Dgstsfsrc.c499 depth = GST_ROUND_UP_8 (width); in gst_sf_src_fixate()
Dgstsfsink.c336 depth = GST_ROUND_UP_8 (width); in gst_sf_sink_fixate()
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dtextoverlay.c29 #define I420_U_ROWSTRIDE(width) (GST_ROUND_UP_8(width)/2)
30 #define I420_V_ROWSTRIDE(width) ((GST_ROUND_UP_8(I420_Y_ROWSTRIDE(width)))/2)
/third_party/gstreamer/gstplugins_good/gst/audioparsers/
Dgstsbcparse.c493 GST_MEMDUMP ("crc bytes", crc_data, GST_ROUND_UP_8 (crc_bits) / 8); in gst_sbc_parse_header()
/third_party/gstreamer/gstplugins_bad/gst/mxf/
Dmxfaes-bwf.c1277 (GST_ROUND_UP_8 (descriptor->quantization_bits) * in mxf_bwf_create_caps()
1309 (GST_ROUND_UP_8 (descriptor->quantization_bits) * in mxf_bwf_create_caps()
1390 (GST_ROUND_UP_8 (descriptor->quantization_bits) * in mxf_aes3_create_caps()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Did3v2frames.c698 for (i = 0; i < (GST_ROUND_UP_8 (peak_bits) / 8) && datalen > 0; ++i) { in parse_relative_volume_adjustment_two()
707 peak = peak << (64 - GST_ROUND_UP_8 (peak_bits)); in parse_relative_volume_adjustment_two()
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dvideo.c169 p->ustride = GST_ROUND_UP_8 (p->width) / 2; in paint_setup_I420()
171 p->vstride = GST_ROUND_UP_8 (p->ystride) / 2; in paint_setup_I420()
181 p->vstride = GST_ROUND_UP_8 (p->ystride) / 2; in paint_setup_YV12()
183 p->ustride = GST_ROUND_UP_8 (p->ystride) / 2; in paint_setup_YV12()
257 p->ustride = GST_ROUND_UP_8 (p->width) / 2; in paint_setup_Y42B()
259 p->vstride = GST_ROUND_UP_8 (p->width) / 2; in paint_setup_Y42B()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/riff/
Driff-media.c1241 wd = GST_ROUND_UP_8 (strf->bits_per_sample); in gst_riff_create_audio_caps()
1247 wd = GST_ROUND_UP_8 (strf->bits_per_sample); in gst_riff_create_audio_caps()
/third_party/gstreamer/gstplugins_good/ext/lame/
Dgstlamemp3enc.c426 if ((rate % 8) != 0) ___rate = GST_ROUND_UP_8 (rate); \
/third_party/gstreamer/gstplugins_base/gst/rawparse/
Dgstrawaudioparse.c685 width = GST_ROUND_UP_8 (width); in gst_raw_audio_parse_get_alignment()
/third_party/gstreamer/gstplugins_good/ext/twolame/
Dgsttwolamemp2enc.c481 if ((rate % 8) != 0) ___rate = GST_ROUND_UP_8 (rate); \
/third_party/gstreamer/gstplugins_good/ext/wavpack/
Dgstwavpackenc.c451 enc->wp_config->bytes_per_sample = GST_ROUND_UP_8 (enc->depth) / 8; in gst_wavpack_enc_set_wp_config()
/third_party/gstreamer/gstreamer/gst/
Dgstutils.h874 #define GST_ROUND_UP_8(num) (((num)+7)&~7) macro
Dgststructure.c207 MAX (GST_ROUND_UP_8 (impl->fields_len + 1), impl->fields_alloc * 2); in _structure_append_val()
279 n_alloc = GST_ROUND_UP_8 (prealloc); in gst_structure_new_id_empty_with_size()
/third_party/gstreamer/gstplugins_bad/gst/aiff/
Daiffparse.c722 aiff->width = GST_ROUND_UP_8 (aiff->depth); in gst_aiff_parse_parse_comm()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Daudio-resampler.c1111 resampler->n_taps = GST_ROUND_UP_8 (resampler->n_taps); in resampler_calculate_taps()
Dgstaudiobasesink.c1025 depth = GST_ROUND_UP_8 (width); in gst_audio_base_sink_fixate()

12