Lines Matching refs:f
762 H264_FrameStore_t *f = mpp_calloc(H264_FrameStore_t, 1); in alloc_frame_store() local
763 MEM_CHECK(ret, f); in alloc_frame_store()
765 f->is_used = 0; in alloc_frame_store()
766 f->is_reference = 0; in alloc_frame_store()
767 f->is_long_term = 0; in alloc_frame_store()
768 f->is_orig_reference = 0; in alloc_frame_store()
769 f->is_output = 0; in alloc_frame_store()
771 f->frame = NULL; in alloc_frame_store()
772 f->top_field = NULL; in alloc_frame_store()
773 f->bottom_field = NULL; in alloc_frame_store()
775 return f; in alloc_frame_store()
1540 void free_frame_store(H264_DecCtx_t *p_Dec, H264_FrameStore_t* f) in free_frame_store() argument
1542 if (f) { in free_frame_store()
1543 if (f->frame) { in free_frame_store()
1544 free_storable_picture(p_Dec, f->frame); in free_frame_store()
1545 f->frame = NULL; in free_frame_store()
1547 if (f->top_field) { in free_frame_store()
1548 free_storable_picture(p_Dec, f->top_field); in free_frame_store()
1549 f->top_field = NULL; in free_frame_store()
1551 if (f->bottom_field) { in free_frame_store()
1552 free_storable_picture(p_Dec, f->bottom_field); in free_frame_store()
1553 f->bottom_field = NULL; in free_frame_store()
1555 MPP_FREE(f); in free_frame_store()