Home
last modified time | relevance | path

Searched refs:GST_ROUND_UP_32 (Results 1 – 11 of 11) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dmsdk.c437 alignment->padding_bottom = GST_ROUND_UP_32 (alloc_h) - height; in gst_msdk_set_video_alignment()
481 GST_ROUND_UP_32 (GST_VIDEO_INFO_COMP_OFFSET (info, in gst_msdk_set_mfx_frame_info_from_video_info()
485 GST_ROUND_UP_32 (GST_VIDEO_INFO_SIZE (info) / in gst_msdk_set_mfx_frame_info_from_video_info()
Dgstmsdkvc1dec.c180 GST_ROUND_UP_32 (decoder->param.mfx.FrameInfo.Height); in gst_msdkvc1dec_preinit_decoder()
Dgstmsdkvp9enc.c184 GST_ROUND_UP_32 (encoder->param.mfx.FrameInfo.CropH); in gst_msdkvp9enc_configure()
Dgstmsdkdec.c565 GST_ROUND_UP_32 (thiz->param.mfx.FrameInfo.Height ? thiz->param.mfx. in gst_msdkdec_set_src_caps()
584 GST_ROUND_UP_32 (thiz->param.mfx.FrameInfo.Height ? thiz->param.mfx. in gst_msdkdec_set_src_caps()
1814 GST_ROUND_UP_32 (decoder->param.mfx.FrameInfo.Height); in gst_msdkdec_preinit_decoder()
Dgstmsdkenc.c548 thiz->vpp_param.vpp.In.Height = GST_ROUND_UP_32 (info->height); in gst_msdkenc_init_encoder()
654 thiz->param.mfx.FrameInfo.Height = GST_ROUND_UP_32 (info->height); in gst_msdkenc_init_encoder()
/third_party/gstreamer/gstplugins_good/ext/jpeg/
Dgstjpegdec.c687 if (G_UNLIKELY (!gst_jpeg_dec_ensure_buffers (dec, GST_ROUND_UP_32 (width)))) in gst_jpeg_dec_decode_grayscale()
737 if (G_UNLIKELY (!gst_jpeg_dec_ensure_buffers (dec, GST_ROUND_UP_32 (width)))) in gst_jpeg_dec_decode_rgb()
795 if (G_UNLIKELY (!gst_jpeg_dec_ensure_buffers (dec, GST_ROUND_UP_32 (width)))) in gst_jpeg_dec_decode_indirect()
820 memset (u_rows[i], GST_ROUND_UP_32 (width), 0x80); in gst_jpeg_dec_decode_indirect()
821 memset (v_rows[i], GST_ROUND_UP_32 (width), 0x80); in gst_jpeg_dec_decode_indirect()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-info.c1087 GST_ROUND_UP_32 (height) / 32); in fill_planes()
1092 info->offset[1] = GST_ROUND_UP_128 (width) * GST_ROUND_UP_32 (height); in fill_planes()
/third_party/gstreamer/gstplugins_good/ext/lame/
Dgstlamemp3enc.c432 if ((rate % 32) != 0) ___rate = GST_ROUND_UP_32 (rate); \
/third_party/gstreamer/gstplugins_good/ext/twolame/
Dgsttwolamemp2enc.c487 if ((rate % 32) != 0) ___rate = GST_ROUND_UP_32 (rate); \
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Daudio-resampler.c982 resampler->taps_stride = GST_ROUND_UP_32 (bps * (n_taps + TAPS_OVERREAD)); in alloc_taps_mem()
1002 GST_ROUND_UP_32 (bps * (n_taps + TAPS_OVERREAD)); in alloc_cache_mem()
/third_party/gstreamer/gstreamer/gst/
Dgstutils.h888 #define GST_ROUND_UP_32(num) (((num)+31)&~31) macro