Lines Matching refs:p_strm
108 H264dCurStream_t *p_strm = NULL; in init_cur_ctx() local
112 p_strm = &p_Cur->strm; in init_cur_ctx()
113 p_strm->nalu_max_size = NALU_BUF_MAX_SIZE; in init_cur_ctx()
114 p_strm->nalu_buf = mpp_malloc_size(RK_U8, p_strm->nalu_max_size); in init_cur_ctx()
115 p_strm->head_max_size = HEAD_BUF_MAX_SIZE; in init_cur_ctx()
116 p_strm->head_buf = mpp_malloc_size(RK_U8, p_strm->head_max_size); in init_cur_ctx()
117 p_strm->tmp_max_size = HEAD_BUF_MAX_SIZE; in init_cur_ctx()
118 p_strm->tmp_buf = mpp_malloc_size(RK_U8, p_strm->head_max_size); in init_cur_ctx()
119 MEM_CHECK(ret, p_strm->nalu_buf && p_strm->head_buf); in init_cur_ctx()
120 p_strm->prefixdata = 0xffffffff; in init_cur_ctx()
406 H264dCurStream_t *p_strm = NULL; in h264d_reset() local
442 p_strm = &p_Dec->p_Cur->strm; in h264d_reset()
443 p_strm->prefixdata = 0xffffffff; in h264d_reset()
444 p_strm->nalu_offset = 0; in h264d_reset()
445 p_strm->nalu_len = 0; in h264d_reset()
446 if (p_strm->nalu_type != H264_NALU_TYPE_PPS && p_strm->nalu_type != H264_NALU_TYPE_SPS) in h264d_reset()
447 p_strm->head_offset = 0; in h264d_reset()
448 p_strm->tmp_offset = 0; in h264d_reset()
449 p_strm->first_mb_in_slice = 0; in h264d_reset()
450 p_strm->endcode_found = 0; in h264d_reset()
451 p_strm->startcode_found = p_Dec->p_Inp->is_nalff; in h264d_reset()