• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:current_frame

140     ThreadFrame current_frame;
287 if (s->current_frame.f)
288 ff_thread_release_buffer(avctx, &s->current_frame);
303 av_frame_free(&s->current_frame.f);
1312 ptrdiff_t stride = s->current_frame.f->linesize[plane];
1313 uint8_t *plane_data = s->current_frame.f->data[plane];
1426 ff_thread_report_progress(&s->current_frame,
1443 offset[0] = s->current_frame.f->linesize[0] * y;
1444 offset[1] = s->current_frame.f->linesize[1] * cy;
1445 offset[2] = s->current_frame.f->linesize[2] * cy;
1450 s->avctx->draw_horiz_band(s->avctx, s->current_frame.f, offset, y, 3, h);
1493 uint8_t *output_plane = s->current_frame.f->data[plane] +
1499 ptrdiff_t stride = s->current_frame.f->linesize[plane];
1699 s->current_frame.f = av_frame_alloc();
1703 if (!s->current_frame.f || !s->last_frame.f || !s->golden_frame.f) {
1704 av_frame_free(&s->current_frame.f);
1898 ret = ff_thread_ref_frame(&s->last_frame, &s->current_frame);
1904 ret = ff_thread_ref_frame(&s->golden_frame, &s->current_frame);
1908 ff_thread_release_buffer(avctx, &s->current_frame);
1923 if ((ret = ref_frame(dst, &dst->current_frame, &src->current_frame)) < 0 ||
1939 if (!s1->current_frame.f->data[0] ||
1948 if (!s->current_frame.f->data[0]) {
2070 s->current_frame.f->pict_type = s->keyframe ? AV_PICTURE_TYPE_I
2072 s->current_frame.f->key_frame = s->keyframe;
2073 if (ff_thread_get_buffer(avctx, &s->current_frame, AV_GET_BUFFER_FLAG_REF) < 0)
2077 s->edge_emu_buffer = av_malloc(9 * FFABS(s->current_frame.f->linesize[0]));
2142 s->data_offset[i] = (height - 1) * s->current_frame.f->linesize[i];
2156 if ((ret = av_frame_ref(data, s->current_frame.f)) < 0)
2169 ff_thread_report_progress(&s->current_frame, INT_MAX, 0);
2172 av_frame_unref(s->current_frame.f);