• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:current_frame

135     AVFrame current_frame;
263 if (s->current_frame.data[0] == s->golden_frame.data[0])
264 memset(&s->current_frame, 0, sizeof(AVFrame));
268 if (s->current_frame.data[0] == s->last_frame.data[0])
269 memset(&s->current_frame, 0, sizeof(AVFrame));
272 if (s->current_frame.data[0])
273 ff_thread_release_buffer(avctx, &s->current_frame);
1288 int stride = s->current_frame.linesize[plane];
1289 uint8_t *plane_data = s->current_frame.data [plane];
1403 ff_thread_report_progress(&s->current_frame, y_flipped==s->avctx->height ? INT_MAX : y_flipped-1, 0);
1418 offset[0] = s->current_frame.linesize[0]*y;
1419 offset[1] = s->current_frame.linesize[1]*cy;
1420 offset[2] = s->current_frame.linesize[2]*cy;
1425 s->avctx->draw_horiz_band(s->avctx, &s->current_frame, offset, y, 3, h);
1467 uint8_t *output_plane = s->current_frame.data [plane] + s->data_offset[plane];
1470 int stride = s->current_frame.linesize[plane];
1822 s->current_frame.data[i] = NULL;
1845 s->last_frame= s->current_frame;
1850 s->golden_frame = s->current_frame;
1854 s->current_frame.data[0]= NULL; /* ensure that we catch any access to this released frame */
1864 if (!s1->current_frame.data[0]
1868 copy_fields(s, s1, golden_frame, current_frame);
1874 if (!s->current_frame.data[0]) {
1960 s->current_frame.reference = 3;
1961 s->current_frame.pict_type = s->keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
1962 if (ff_thread_get_buffer(avctx, &s->current_frame) < 0) {
1968 s->edge_emu_buffer = av_malloc(9*FFABS(s->current_frame.linesize[0]));
2033 s->data_offset[i] = (height-1) * s->current_frame.linesize[i];
2048 *(AVFrame*)data= s->current_frame;
2056 ff_thread_report_progress(&s->current_frame, INT_MAX, 0);
2059 avctx->release_buffer(avctx, &s->current_frame);