Lines Matching refs:picture
35 AVFrame *picture[2]; /* pictures array */
36 int picture_index; /* index of current picture */
43 unsigned mb_width, mb_height; /* size of picture in MB's from MXM header */
56 av_frame_free(&s->picture[i]);
69 s->picture[0] = av_frame_alloc();
70 s->picture[1] = av_frame_alloc();
71 if (!s->picture[0] || !s->picture[1])
74 s->jpg.picture_ptr = s->picture[0];
174 "Dimensions of current and reference picture mismatch\n");
275 "First picture has no SOF, skipping\n");
283 /* use stored SOF data to allocate current picture */
297 AVFrame *reference_ptr = s->picture[s->picture_index ^ 1];
301 /* allocate dummy reference picture if needed */
332 jpg->picture_ptr = s->picture[s->picture_index];