Searched refs:last_frame (Results 1 - 6 of 6) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dswapyv12buffer.c14 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame) argument
18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
22 temp = last_frame->y_buffer;
23 last_frame->y_buffer = new_frame->y_buffer;
26 temp = last_frame->u_buffer;
27 last_frame->u_buffer = new_frame->u_buffer;
30 temp = last_frame->v_buffer;
31 last_frame->v_buffer = new_frame->v_buffer;
H A Dswapyv12buffer.h21 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame);
/hardware/intel/common/libmix/mix_video/src/
H A Dmixvideoformat_mp42.h39 MixVideoFrame * last_frame; member in struct:_MixVideoFormat_MP42
H A Dmixvideoformat_mp42.c58 self->last_frame = NULL;
376 self->last_frame = NULL;
821 if (self->last_frame == NULL) {
834 mix_videoframe_ref(self->last_frame);
836 ret = mix_videoframe_get_frame_id(self->last_frame, &frame_id);
839 ret = mix_videoframe_set_real_frame(skip_frame, self->last_frame);
1085 if (self->last_frame != NULL) {
1086 mix_videoframe_unref(self->last_frame);
1088 self->last_frame = frame;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dfirstpass.c2628 static int test_candidate_kf(VP8_COMP *cpi, FIRSTPASS_STATS *last_frame, FIRSTPASS_STATS *this_frame, FIRSTPASS_STATS *next_frame) argument
2641 ((fabs(last_frame->coded_error - this_frame->coded_error) / DOUBLE_DIVIDE_CHECK(this_frame->coded_error) > .40) ||
2642 (fabs(last_frame->intra_error - this_frame->intra_error) / DOUBLE_DIVIDE_CHECK(this_frame->intra_error) > .40) ||
2720 FIRSTPASS_STATS last_frame; local
2780 vpx_memcpy(&last_frame, this_frame, sizeof(*this_frame));
2789 test_candidate_kf(cpi, &last_frame, this_frame, &next_frame) )
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_firstpass.c1822 const FIRSTPASS_STATS *last_frame,
1835 ((fabs(last_frame->coded_error - this_frame->coded_error) /
1837 (fabs(last_frame->intra_error - this_frame->intra_error) /
1902 FIRSTPASS_STATS last_frame; local
1943 last_frame = *this_frame;
1950 if (test_candidate_kf(cpi, &last_frame, this_frame, &next_frame))
1821 test_candidate_kf(VP9_COMP *cpi, const FIRSTPASS_STATS *last_frame, const FIRSTPASS_STATS *this_frame, const FIRSTPASS_STATS *next_frame) argument

Completed in 1933 milliseconds