Home
last modified time | relevance | path

Searched refs:frame (Results 1 - 25 of 71) sorted by relevance

123

/device/soc/rockchip/rk3588/hardware/mpp/include/
H A Dmpp_frame.h26 /* progressive frame */
278 MPP_RET mpp_frame_init(MppFrame *frame);
279 MPP_RET mpp_frame_deinit(MppFrame *frame);
308 RK_U32 mpp_frame_get_width(const MppFrame frame);
309 void mpp_frame_set_width(MppFrame frame, RK_U32 width);
310 RK_U32 mpp_frame_get_height(const MppFrame frame);
311 void mpp_frame_set_height(MppFrame frame, RK_U32 height);
312 RK_U32 mpp_frame_get_hor_stride(const MppFrame frame);
313 void mpp_frame_set_hor_stride(MppFrame frame, RK_U32 hor_stride);
314 RK_U32 mpp_frame_get_ver_stride(const MppFrame frame);
[all...]
H A Drk_mpi.h44 * decode : both send video stream packet to decoder and get video frame from
47 * encode : both send video frame to encoder and get encoded video stream from
52 * decode_get_frame : get video frame from decoder only, async interface
54 * encode_put_frame : send video frame to encoder only, async interface
70 * reset : clear all data in mpp context, discard all packet and frame,
85 * @brief both send video stream packet to decoder and get video frame from
90 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
94 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
105 * @brief get video frame from decoder only, async interface
108 * @param[out] frame Th
[all...]
/device/soc/rockchip/rk3399/hardware/mpp/include/
H A Dmpp_frame.h24 /* progressive frame */
278 MPP_RET mpp_frame_init(MppFrame *frame);
279 MPP_RET mpp_frame_deinit(MppFrame *frame);
280 MppFrame mpp_frame_get_next(MppFrame frame);
309 RK_U32 mpp_frame_get_width(const MppFrame frame);
310 void mpp_frame_set_width(MppFrame frame, RK_U32 width);
311 RK_U32 mpp_frame_get_height(const MppFrame frame);
312 void mpp_frame_set_height(MppFrame frame, RK_U32 height);
313 RK_U32 mpp_frame_get_hor_stride(const MppFrame frame);
314 void mpp_frame_set_hor_stride(MppFrame frame, RK_U3
[all...]
H A Drk_mpi.h43 * decode : both send video stream packet to decoder and get video frame from
46 * encode : both send video frame to encoder and get encoded video stream from
51 * decode_get_frame : get video frame from decoder only, async interface
53 * encode_put_frame : send video frame to encoder only, async interface
69 * reset : clear all data in mpp context, discard all packet and frame,
84 * @brief both send video stream packet to decoder and get video frame from
89 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
93 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
104 * @brief get video frame from decoder only, async interface
107 * @param[out] frame Th
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/include/
H A Dmpp_frame.h24 /* progressive frame */
278 MPP_RET mpp_frame_init(MppFrame *frame);
279 MPP_RET mpp_frame_deinit(MppFrame *frame);
280 MppFrame mpp_frame_get_next(MppFrame frame);
309 RK_U32 mpp_frame_get_width(const MppFrame frame);
310 void mpp_frame_set_width(MppFrame frame, RK_U32 width);
311 RK_U32 mpp_frame_get_height(const MppFrame frame);
312 void mpp_frame_set_height(MppFrame frame, RK_U32 height);
313 RK_U32 mpp_frame_get_hor_stride(const MppFrame frame);
314 void mpp_frame_set_hor_stride(MppFrame frame, RK_U3
[all...]
H A Drk_mpi.h43 * decode : both send video stream packet to decoder and get video frame from
46 * encode : both send video frame to encoder and get encoded video stream from
51 * decode_get_frame : get video frame from decoder only, async interface
53 * encode_put_frame : send video frame to encoder only, async interface
69 * reset : clear all data in mpp context, discard all packet and frame,
84 * @brief both send video stream packet to decoder and get video frame from
89 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
93 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
104 * @brief get video frame from decoder only, async interface
107 * @param[out] frame Th
[all...]
/device/soc/rockchip/common/hardware/mpp/include/
H A Dmpp_frame.h25 /* progressive frame */
279 MPP_RET mpp_frame_init(MppFrame *frame);
280 MPP_RET mpp_frame_deinit(MppFrame *frame);
281 MppFrame mpp_frame_get_next(MppFrame frame);
310 unsigned int mpp_frame_get_width(const MppFrame frame);
311 void mpp_frame_set_width(MppFrame frame, unsigned int width);
312 unsigned int mpp_frame_get_height(const MppFrame frame);
313 void mpp_frame_set_height(MppFrame frame, unsigned int height);
314 unsigned int mpp_frame_get_hor_stride(const MppFrame frame);
315 void mpp_frame_set_hor_stride(MppFrame frame, unsigne
[all...]
H A Drk_mpi.h43 * decode : both send video stream packet to decoder and get video frame from
46 * encode : both send video frame to encoder and get encoded video stream from
51 * decode_get_frame : get video frame from decoder only, async interface
53 * encode_put_frame : send video frame to encoder only, async interface
69 * reset : clear all data in mpp context, discard all packet and frame,
84 * @brief both send video stream packet to decoder and get video frame from
89 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
93 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
104 * @brief get video frame from decoder only, async interface
107 * @param[out] frame Th
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hdmi/src/mkp/
H A Ddrv_hdmi_infoframe.c69 * @frame: HDMI AVI infoframe
72 * packs the information contained in the @frame structure into a binary
79 static hdmi_video_code_vic avi_header_pack(struct hdmi_avi_infoframe *frame, hi_void *buffer, hdmi_3d_mode _3d_mode) in avi_header_pack() argument
86 video_code = drv_hdmi_vic_search(frame->video_timing, frame->picture_aspect, _3d_enable); in avi_header_pack()
89 ptr[0] = frame->type; in avi_header_pack()
90 if (((hi_u32)frame->colorspace & HDMI_AVI_Y2_MASK) || (video_code > HDMI_5120X2160P100_64_27)) { in avi_header_pack()
92 frame->version = HDMI_AVI_VERSION3; in avi_header_pack()
93 } else if (frame->colorimetry == HDMI_COLORIMETRY_EXTEND && in avi_header_pack()
94 frame in avi_header_pack()
105 hdmi_avi_infoframe_pack(struct hdmi_avi_infoframe *frame, hi_void *buffer, hi_u32 size, hdmi_3d_mode _3d_mode) hdmi_avi_infoframe_pack() argument
163 hdmi_drm_infoframe_pack(hdmi_drm_infoframe *frame, hi_void *buffer, hi_u32 size) hdmi_drm_infoframe_pack() argument
233 hdmi_audio_infoframe_pack(struct hdmi_audio_infoframe *frame, hi_void *buffer, hi_u32 size) hdmi_audio_infoframe_pack() argument
278 hdmi_vendor_specific_infoframe_pack(struct hdmi_vendor_specific_infoframe *frame, hi_void *buffer, hi_u32 size) hdmi_vendor_specific_infoframe_pack() argument
[all...]
/device/soc/hisilicon/common/hal/display/hi3751v350/linux_standard/adapter/
H A Ddisplay_adapter_impl.cpp47 static int32_t DisplayFbFresh(int32_t devFd, DisplayFrameInfo *frame) in DisplayFbFresh() argument
49 if (frame == nullptr) { in DisplayFbFresh()
54 fbFrameInfo.rect.x = frame->rect.x; in DisplayFbFresh()
55 fbFrameInfo.rect.y = frame->rect.y; in DisplayFbFresh()
56 fbFrameInfo.rect.w = frame->rect.w; in DisplayFbFresh()
57 fbFrameInfo.rect.h = frame->rect.h; in DisplayFbFresh()
58 fbFrameInfo.in_fence = frame->inFence; in DisplayFbFresh()
59 fbFrameInfo.stride = frame->stride; in DisplayFbFresh()
60 fbFrameInfo.bufaddr = frame->bufaddr; in DisplayFbFresh()
61 fbFrameInfo.format = frame in DisplayFbFresh()
[all...]
/device/soc/rockchip/common/vendor/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger_arm.c170 static int report_trace(struct stackframe *frame, void *d) in report_trace() argument
175 sts->output->printf(sts->output, " pc: %px (%pF), lr %px (%pF), sp %px, fp %px\n", frame->pc, frame->pc, in report_trace()
176 frame->lr, frame->lr, frame->sp, frame->fp); in report_trace()
198 output->printf(output, " invalid frame pointer %px\n", tail); in user_backtrace()
202 output->printf(output, " failed to copy frame pointer %px\n", tail); in user_backtrace()
208 /* frame pointer in user_backtrace()
236 struct stackframe frame; fiq_debugger_dump_stacktrace() local
[all...]
H A Dfiq_debugger_arm64.c167 struct stackframe frame; in fiq_debugger_dump_stacktrace() local
168 frame.fp = regs->regs[0x1D]; in fiq_debugger_dump_stacktrace()
169 frame.pc = regs->pc; in fiq_debugger_dump_stacktrace()
171 walk_stackframe(current, &frame, report_trace, &sts); in fiq_debugger_dump_stacktrace()
/device/soc/rockchip/rk3568/hardware/mpp/mpp/legacy/inc/
H A Dmpp_frame_impl.h43 * 0 - frame
52 * current decoded frame whether to display
59 * send decoded frame belong which view
75 * info_change - set when buffer resized or frame infomation changed
114 * frame buffer compression (FBC) information
129 * pointer for multiple frame output at one time
138 MPP_RET mpp_frame_set_next(MppFrame frame, MppFrame next);
139 MPP_RET mpp_frame_copy(MppFrame frame, MppFrame next);
141 RK_U32 mpp_frame_get_fbc_offset(MppFrame frame);
142 RK_U32 mpp_frame_get_fbc_stride(MppFrame frame);
[all...]
/device/soc/rockchip/rk3568/hardware/codec/src/
H A Dhdi_mpp.c252 if (component->frame != NULL) { in CodecDestroy()
253 mppApi->HdiMppFrameDeinit(&component->frame); in CodecDestroy()
254 component->frame = NULL; in CodecDestroy()
273 HDF_LOGI("%{public}s: dec frame count : %{public}d, error count : %{public}d", __func__, in CodecDestroy()
278 HDF_LOGI("%{public}s: enc frame count : %{public}d", __func__, component->frameCount); in CodecDestroy()
310 HDF_LOGE("%{public}s: config set frame number failed", __func__); in SetExtMppParam()
404 HDF_LOGE("%{public}s: config set frame number failed", __func__); in GetExtMppParam()
578 MPP_RET DecodeGetFrame(RKHdiBaseComponent* component, MppCtx ctx, MppFrame *frame) in DecodeGetFrame() argument
584 ret = mpi->decode_get_frame(ctx, frame); in DecodeGetFrame()
599 int32_t HandleDecodeFrameInfoChange(RKHdiBaseComponent* component, MppFrame frame, MppCt argument
652 PutDecodeFrameToOutput(RKHdiBaseComponent* component, MppFrame frame, CodecBuffer *outInfo) PutDecodeFrameToOutput() argument
701 HandleDecodeFrameOutput(RKHdiBaseComponent* component, MppFrame frame, int32_t frm_eos, CodecBuffer *outInfo) HandleDecodeFrameOutput() argument
733 HandleDecodedFrame(RKHdiBaseComponent* component, MppFrame frame, MppCtx ctx, int32_t frm_eos, CodecBuffer *outInfo) HandleDecodedFrame() argument
765 MppFrame frame = NULL; CodecDecodeGetFrameLoop() local
853 GetEncodeFrameFromInput(RKHdiBaseComponent* component, MppFrame frame, MppBuffer mppBuffer, CodecBuffer *inputInfo) GetEncodeFrameFromInput() argument
1008 MppFrame frame = NULL; CodecEncode() local
[all...]
/device/soc/rockchip/rk3588/hardware/codec/src/
H A Dhdi_mpp.c252 if (component->frame != NULL) { in CodecDestroy()
253 mppApi->HdiMppFrameDeinit(&component->frame); in CodecDestroy()
254 component->frame = NULL; in CodecDestroy()
273 HDF_LOGI("%{public}s: dec frame count : %{public}d, error count : %{public}d", __func__, in CodecDestroy()
278 HDF_LOGI("%{public}s: enc frame count : %{public}d", __func__, component->frameCount); in CodecDestroy()
310 HDF_LOGE("%{public}s: config set frame number failed", __func__); in SetExtMppParam()
404 HDF_LOGE("%{public}s: config set frame number failed", __func__); in GetExtMppParam()
578 MPP_RET DecodeGetFrame(RKHdiBaseComponent* component, MppCtx ctx, MppFrame *frame) in DecodeGetFrame() argument
584 ret = mpi->decode_get_frame(ctx, frame); in DecodeGetFrame()
599 int32_t HandleDecodeFrameInfoChange(RKHdiBaseComponent* component, MppFrame frame, MppCt argument
652 PutDecodeFrameToOutput(RKHdiBaseComponent* component, MppFrame frame, CodecBuffer *outInfo) PutDecodeFrameToOutput() argument
701 HandleDecodeFrameOutput(RKHdiBaseComponent* component, MppFrame frame, int32_t frm_eos, CodecBuffer *outInfo) HandleDecodeFrameOutput() argument
733 HandleDecodedFrame(RKHdiBaseComponent* component, MppFrame frame, MppCtx ctx, int32_t frm_eos, CodecBuffer *outInfo) HandleDecodedFrame() argument
765 MppFrame frame = NULL; CodecDecodeGetFrameLoop() local
853 GetEncodeFrameFromInput(RKHdiBaseComponent* component, MppFrame frame, MppBuffer mppBuffer, CodecBuffer *inputInfo) GetEncodeFrameFromInput() argument
1008 MppFrame frame = NULL; CodecEncode() local
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/mpp/hdi_mpp/
H A Dhdi_mpp_mpi.h50 // mpp frame api
107 typedef MppFrameColorPrimaries (*hdimpp_frame_get_color_primaries)(const MppFrame frame);
108 typedef MppFrameColorTransferCharacteristic (*hdimpp_frame_get_color_trc)(const MppFrame frame);
109 typedef MppFrameColorRange (*hdimpp_frame_get_color_range)(const MppFrame frame);
110 typedef RK_U32 (*hdimpp_frame_get_mode)(const MppFrame frame);
113 typedef void (*hdimpp_frame_set_pts)(MppFrame frame, RK_S64 pts);
122 typedef MppFrameColorSpace (*hdimpp_frame_get_colorspace)(const MppFrame frame);
125 typedef MPP_RET (*hdimpp_task_meta_get_frame)(MppTask task, MppMetaKey key, MppFrame *frame);
126 typedef MPP_RET (*hdimpp_task_meta_set_frame)(MppTask task, MppMetaKey key, MppFrame frame);
128 typedef RK_U32 (*hdimpp_frame_get_poc)(const MppFrame frame);
[all...]
/device/soc/rockchip/common/hardware/mpp/mpp/hdi_mpp/
H A Dhdi_mpp_mpi.h50 // mpp frame api
107 typedef MppFrameColorPrimaries (*hdimpp_frame_get_color_primaries)(const MppFrame frame);
108 typedef MppFrameColorTransferCharacteristic (*hdimpp_frame_get_color_trc)(const MppFrame frame);
109 typedef MppFrameColorRange (*hdimpp_frame_get_color_range)(const MppFrame frame);
110 typedef unsigned int (*hdimpp_frame_get_mode)(const MppFrame frame);
113 typedef void (*hdimpp_frame_set_pts)(MppFrame frame, RK_S64 pts);
122 typedef MppFrameColorSpace (*hdimpp_frame_get_colorspace)(const MppFrame frame);
125 typedef MPP_RET (*hdimpp_task_meta_get_frame)(MppTask task, MppMetaKey key, MppFrame *frame);
126 typedef MPP_RET (*hdimpp_task_meta_set_frame)(MppTask task, MppMetaKey key, MppFrame frame);
128 typedef unsigned int (*hdimpp_frame_get_poc)(const MppFrame frame);
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/mpp/legacy/
H A Dvpu_api_legacy.cpp348 MppFrame frame = nullptr; in init_frame_info() local
376 (*(mRKMppApi.HdiMppFrameInit))(&frame); in init_frame_info()
378 (*(mRKMppApi.HdiMppFrameSetWidth))(frame, p->ImgWidth); in init_frame_info()
379 (*(mRKMppApi.HdiMppFrameSetHeight))(frame, p->ImgHeight); in init_frame_info()
380 (*(mRKMppApi.HdiMppFrameSetFormat))(frame, (MppFrameFormat)(p->CodecType | fbcOutFmt)); in init_frame_info()
382 ret = mpi->control(mpp_ctx, MPP_DEC_SET_FRAME_INFO, (MppParam)frame); in init_frame_info()
384 p->ImgHorStride = (*(mRKMppApi.HdiMppFrameGetHorStride))(frame); in init_frame_info()
385 p->ImgVerStride = (*(mRKMppApi.HdiMppFrameGetVerStride))(frame); in init_frame_info()
386 p->BufSize = (*(mRKMppApi.HdiMppFrameGetBufferSize))(frame); in init_frame_info()
388 (*(mRKMppApi.HdiMppFrameDeinit))(&frame); in init_frame_info()
1024 MppFrame frame = nullptr; encode() local
1265 MppFrame frame = nullptr; encoder_sendframe() local
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_cfgp2p.h54 P2P_SCAN_AFX_PEER_NORMAL, /**< scan for action frame search */
55 P2P_SCAN_AFX_PEER_REDUCED, /**< scan for action frame search with short time */
256 wl_cfgp2p_is_pub_action(void *frame, u32 frame_len);
258 wl_cfgp2p_is_p2p_action(void *frame, u32 frame_len);
260 wl_cfgp2p_is_gas_action(void *frame, u32 frame_len);
264 wl_cfgp2p_is_p2p_gas_action(void *frame, u32 frame_len);
266 wl_cfgp2p_print_actframe(bool tx, void *frame, u32 frame_len, u32 channel);
419 wl_cfgp2p_need_wait_actfrmae(struct bcm_cfg80211 *cfg, void *frame, u32 frame_len, bool tx);
441 * or the device discoverablity frame is destined to GO
447 #define IS_GAS_REQ(frame, le
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/media/usb/uvc/
H A Duvc_driver.c459 /* Convert a fraction to a frame interval in 100ns multiples. The idea here is
591 struct uvc_frame *frame; in uvc_parse_format() local
716 /* Create a dummy frame descriptor. */ in uvc_parse_format()
717 frame = &format->frame[0]; in uvc_parse_format()
718 memset(&format->frame[0], 0, sizeof(format->frame[0])); in uvc_parse_format()
719 frame->bFrameIntervalType = 1; in uvc_parse_format()
720 frame->dwDefaultFrameInterval = 1; in uvc_parse_format()
721 frame in uvc_parse_format()
850 struct uvc_frame *frame; uvc_parse_streaming() local
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/staging/android/fiq_debugger/
H A Dfiq_debugger_arm64.c191 struct stackframe frame; in fiq_debugger_dump_stacktrace() local
192 frame.fp = regs->regs[29]; in fiq_debugger_dump_stacktrace()
193 frame.pc = regs->pc; in fiq_debugger_dump_stacktrace()
194 frame.prev_type = STACK_TYPE_UNKNOWN; in fiq_debugger_dump_stacktrace()
196 walk_stackframe(current, &frame, report_trace, &sts); in fiq_debugger_dump_stacktrace()
/device/soc/rockchip/rk3399/hardware/mpp/src/
H A Dmpi_enc_utils.c81 /* set 8 frame lt-ref gap */ in mpi_enc_gen_ref_cfg()
85 lt_ref[REF_NUM_0].lt_gap = 8; // 8:set 8 frame in mpi_enc_gen_ref_cfg()
262 /* set 8 frame lt-ref gap */ in mpi_enc_gen_smart_gop_ref_cfg()
420 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
429 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
432 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
616 static void test_mpp_frame_set_param(MppFrame frame, MpiEncTestData *p) in test_mpp_frame_set_param() argument
618 mpp_frame_set_width(frame, p->width); in test_mpp_frame_set_param()
619 mpp_frame_set_height(frame, p->height); in test_mpp_frame_set_param()
620 mpp_frame_set_hor_stride(frame, in test_mpp_frame_set_param()
727 MppFrame frame = NULL; hal_mpp_encode() local
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/src/
H A Dmpi_enc_utils.c82 /* set 8 frame lt-ref gap */ in mpi_enc_gen_ref_cfg()
86 lt_ref[REF_NUM_0].lt_gap = 8; // 8:set 8 frame in mpi_enc_gen_ref_cfg()
263 /* set 8 frame lt-ref gap */ in mpi_enc_gen_smart_gop_ref_cfg()
418 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
427 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
430 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
608 static void test_mpp_frame_set_param(MppFrame frame, MpiEncTestData *p) in test_mpp_frame_set_param() argument
610 mpp_frame_set_width(frame, p->width); in test_mpp_frame_set_param()
611 mpp_frame_set_height(frame, p->height); in test_mpp_frame_set_param()
612 mpp_frame_set_hor_stride(frame, in test_mpp_frame_set_param()
719 MppFrame frame = NULL; hal_mpp_encode() local
[all...]
/device/soc/rockchip/common/hardware/mpp/src/
H A Dmpi_enc_utils.c61 /* set 8 frame lt-ref gap */ in mpi_enc_gen_ref_cfg()
65 lt_ref[0].lt_gap = 8; // 8:set 8 frame in mpi_enc_gen_ref_cfg()
244 /* set 8 frame lt-ref gap */ in mpi_enc_gen_smart_gop_ref_cfg()
404 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
413 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
416 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 0x1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
594 static void test_mpp_frame_set_param(MppFrame frame, MpiEncTestData *p) in test_mpp_frame_set_param() argument
596 mpp_frame_set_width(frame, p->width); in test_mpp_frame_set_param()
597 mpp_frame_set_height(frame, p->height); in test_mpp_frame_set_param()
598 mpp_frame_set_hor_stride(frame, in test_mpp_frame_set_param()
704 MppFrame frame = NULL; hal_mpp_encode() local
[all...]
/device/soc/rockchip/rk3588/hardware/mpp/src/
H A Dmpi_enc_utils.c53 mpp_log("jpege default encode only one frame. Use -n [num] for rc case\n"); in test_ctx_init()
207 /* fix input / output frame rate */ in test_mpp_enc_cfg_setup()
216 /* drop frame or not when bitrate overflow */ in test_mpp_enc_cfg_setup()
219 mpp_enc_cfg_set_u32(cfg, "rc:drop_gap", 1); /* Do not continuous drop frame */ in test_mpp_enc_cfg_setup()
489 MppFrame frame = NULL; in hal_mpp_encode() local
493 MPP_RET ret = mpp_frame_init(&frame); in hal_mpp_encode()
499 mpp_frame_set_width(frame, p->width); in hal_mpp_encode()
500 mpp_frame_set_height(frame, p->height); in hal_mpp_encode()
501 mpp_frame_set_hor_stride(frame, p->hor_stride); in hal_mpp_encode()
502 mpp_frame_set_ver_stride(frame, in hal_mpp_encode()
[all...]

Completed in 19 milliseconds

123