• 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:picture_ptr

103     if (!s->picture_ptr) {
107 s->picture_ptr = s->picture;
358 s->picture_ptr->interlaced_frame = 1;
359 s->picture_ptr->top_field_first = !s->interlace_polarity;
554 av_frame_unref(s->picture_ptr);
555 if (ff_get_buffer(s->avctx, s->picture_ptr, AV_GET_BUFFER_FLAG_REF) < 0)
557 s->picture_ptr->pict_type = AV_PICTURE_TYPE_I;
558 s->picture_ptr->key_frame = 1;
562 s->linesize[i] = s->picture_ptr->linesize[i] << s->interlaced;
903 uint8_t *ptr = s->picture_ptr->data[0] + (linesize * mb_y);
1037 ptr = s->picture_ptr->data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
1057 ptr16 = (uint16_t*)(s->picture_ptr->data[c] + 2*(linesize * (v * mb_y + y)) + 2*(h * mb_x + x)); //FIXME optimize this crap
1105 ptr = s->picture_ptr->data[c] +
1113 ptr16 = (uint16_t*)(s->picture_ptr->data[c] + 2*(linesize * (v * mb_y + y)) + 2*(h * mb_x + x)); //FIXME optimize this crap
1191 data[c] = s->picture_ptr->data[c];
1282 uint8_t *data = s->picture_ptr->data[c];
1353 av_assert0(s->picture_ptr->data[0]);
1443 av_assert0(s->picture_ptr == s->picture);
1464 av_assert0(s->picture_ptr == s->picture);
2017 if ((ret = av_frame_ref(frame, s->picture_ptr)) < 0)
2095 uint8_t *line = s->picture_ptr->data[p];
2126 uint8_t *dst = &((uint8_t *)s->picture_ptr->data[p])[(s->height - 1) * s->linesize[p]];
2133 uint8_t *src1 = &((uint8_t *)s->picture_ptr->data[p])[i / 2 * s->linesize[p]];
2134 uint8_t *src2 = &((uint8_t *)s->picture_ptr->data[p])[(i + 1) / 2 * s->linesize[p]];
2149 uint8_t *dst = s->picture_ptr->data[index];
2150 int w = s->picture_ptr->width;
2151 int h = s->picture_ptr->height;
2157 uint8_t *dst2 = dst + s->picture_ptr->linesize[index]*(h-1);
2161 dst += s->picture_ptr->linesize[index];
2162 dst2 -= s->picture_ptr->linesize[index];
2168 int w = s->picture_ptr->width;
2169 int h = s->picture_ptr->height;
2174 dst[index] = s->picture_ptr->data[index]
2175 + s->picture_ptr->linesize[index]*i;
2190 int w = s->picture_ptr->width;
2191 int h = s->picture_ptr->height;
2196 dst[index] = s->picture_ptr->data[index]
2197 + s->picture_ptr->linesize[index]*i;
2241 s->picture_ptr = NULL;
2242 } else if (s->picture_ptr)
2243 av_frame_unref(s->picture_ptr);