Lines Matching refs:mppdec
126 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_set_property() local
130 if (mppdec->input_state) in gst_mpp_video_dec_set_property()
133 mppdec->format = g_value_get_enum (value); in gst_mpp_video_dec_set_property()
137 if (mppdec->input_state) in gst_mpp_video_dec_set_property()
140 mppdec->arm_afbc = g_value_get_boolean (value); in gst_mpp_video_dec_set_property()
154 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_get_property() local
158 g_value_set_enum (value, mppdec->format); in gst_mpp_video_dec_get_property()
161 g_value_set_boolean (value, mppdec->arm_afbc); in gst_mpp_video_dec_get_property()
174 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_set_format() local
179 mppdec->mpp_type = gst_mpp_video_dec_get_mpp_type (structure); in gst_mpp_video_dec_set_format()
180 g_return_val_if_fail (mppdec->mpp_type != MPP_VIDEO_CodingUnused, FALSE); in gst_mpp_video_dec_set_format()
183 if (mppdec->mpp_type == MPP_VIDEO_CodingAVC) { in gst_mpp_video_dec_set_format()
196 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_startup() local
197 GstVideoCodecState *state = mppdec->input_state; in gst_mpp_video_dec_startup()
209 mppdec->mpi->decode_put_packet (mppdec->mpp_ctx, mpkt); in gst_mpp_video_dec_startup()
216 if (mppdec->arm_afbc) { in gst_mpp_video_dec_startup()
218 mppdec->mpi->control (mppdec->mpp_ctx, MPP_DEC_SET_OUTPUT_FORMAT, in gst_mpp_video_dec_startup()
240 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_send_mpp_packet() local
245 ret = mppdec->mpi->decode_put_packet (mppdec->mpp_ctx, mpkt); in gst_mpp_video_dec_send_mpp_packet()
262 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_poll_mpp_frame() local
267 mppdec->mpi->control (mppdec->mpp_ctx, MPP_SET_OUTPUT_TIMEOUT, &timeout_ms); in gst_mpp_video_dec_poll_mpp_frame()
270 mppdec->mpi->decode_get_frame (mppdec->mpp_ctx, &mframe); in gst_mpp_video_dec_poll_mpp_frame()
278 GstMppDec *mppdec = GST_MPP_DEC (decoder); in gst_mpp_video_dec_shutdown() local
285 mppdec->mpi->reset (mppdec->mpp_ctx); in gst_mpp_video_dec_shutdown()
293 ret = mppdec->mpi->decode_put_packet (mppdec->mpp_ctx, mpkt); in gst_mpp_video_dec_shutdown()
336 GstMppDec *mppdec = GST_MPP_DEC (self); in gst_mpp_video_dec_init() local
337 mppdec->format = DEFAULT_PROP_FORMAT; in gst_mpp_video_dec_init()
338 mppdec->arm_afbc = DEFAULT_PROP_ARM_AFBC; in gst_mpp_video_dec_init()