Home
last modified time | relevance | path

Searched refs:frame_ref (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/tools/
Dscale_slice_test.c47 AVFrame *frame_ref; member
62 pd->frame_ref->width, pd->frame_ref->height, in process_frame()
63 pd->frame_ref->format, 0, NULL, NULL, NULL); in process_frame()
72 pd->frame_ref->data, pd->frame_ref->linesize); in process_frame()
98 for (int i = 0; i < 4 && pd->frame_ref->data[i]; i++) { in process_frame()
101 if (memcmp(pd->frame_ref->data[i], pd->frame_dst->data[i], in process_frame()
102 pd->frame_ref->linesize[i] * (pd->frame_ref->height >> shift))) { in process_frame()
170 if (i) pd.frame_ref = frame; in main()
186 av_frame_free(&pd.frame_ref); in main()
/third_party/ffmpeg/libavcodec/
Damfenc.c553 AVFrame *frame_ref; in amf_create_buffer_with_frame_ref() local
557 …res = context->pVtbl->AllocBuffer(context, AMF_MEMORY_HOST, sizeof(frame_ref), &frame_ref_storage_… in amf_create_buffer_with_frame_ref()
559 frame_ref = av_frame_clone(frame); in amf_create_buffer_with_frame_ref()
560 if (frame_ref) { in amf_create_buffer_with_frame_ref()
561 …ame_ref_storage_buffer->pVtbl->GetNative(frame_ref_storage_buffer), &frame_ref, sizeof(frame_ref)); in amf_create_buffer_with_frame_ref()
572 AVFrame *frame_ref; in amf_release_buffer_with_frame_ref() local
573 …memcpy(&frame_ref, frame_ref_storage_buffer->pVtbl->GetNative(frame_ref_storage_buffer), sizeof(fr… in amf_release_buffer_with_frame_ref()
574 av_frame_free(&frame_ref); in amf_release_buffer_with_frame_ref()
Dvp56.c430 AVFrame *frame_current, *frame_ref; in vp56_render_mb() local
436 frame_ref = s->frames[ref_frame]; in vp56_render_mb()
437 if (mb_type != VP56_MB_INTRA && !frame_ref->data[0]) in vp56_render_mb()
458 frame_ref->data[plane] + off, in vp56_render_mb()
476 vp56_mc(s, b, plane, frame_ref->data[plane], s->stride[plane], in vp56_render_mb()