• 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 defs:picture

55     AVFrame          picture;
343 avctx->coded_frame = &s->picture;
586 y_stride = (s->picture.linesize[0] << ((!is_field_mode[mb_index]) * log2_blocksize));
590 y_ptr = s->picture.data[0] + ((mb_y * s->picture.linesize[0] + mb_x) << log2_blocksize);
591 linesize = s->picture.linesize[0] << is_field_mode[mb_index];
604 c_offset = (((mb_y >> (s->sys->pix_fmt == PIX_FMT_YUV420P)) * s->picture.linesize[1] +
607 uint8_t *c_ptr = s->picture.data[j] + c_offset;
614 for (y = 0; y < (1 << log2_blocksize); y++, c_ptr += s->picture.linesize[j], pixels += 8) {
616 c_ptr1 = c_ptr + (s->picture.linesize[j] << log2_blocksize);
625 s->picture.linesize[j] << ((!is_field_mode[mb_index]) * log2_blocksize);
626 linesize = s->picture.linesize[j] << is_field_mode[mb_index];
951 y_stride = s->picture.linesize[0] << 3;
955 y_ptr = s->picture.data[0] + ((mb_y * s->picture.linesize[0] + mb_x) << 3);
956 linesize = s->picture.linesize[0];
974 c_offset = (((mb_y >> (s->sys->pix_fmt == PIX_FMT_YUV420P)) * s->picture.linesize[1] +
977 uint8_t *c_ptr = s->picture.data[j] + c_offset;
978 linesize = s->picture.linesize[j];
979 y_stride = (mb_y == 134) ? 8 : (s->picture.linesize[j] << 3);
1075 if (s->picture.data[0])
1076 avctx->release_buffer(avctx, &s->picture);
1078 s->picture.reference = 0;
1079 s->picture.key_frame = 1;
1080 s->picture.pict_type = AV_PICTURE_TYPE_I;
1084 if (avctx->get_buffer(avctx, &s->picture) < 0) {
1088 s->picture.interlaced_frame = 1;
1089 s->picture.top_field_first = 0;
1099 *(AVFrame*)data = s->picture;
1175 (1 << 5) | /* frame change flag 0 -- same picture as before, 1 -- different */
1247 s->picture = *((AVFrame *)data);
1248 s->picture.key_frame = 1;
1249 s->picture.pict_type = AV_PICTURE_TYPE_I;
1267 if (s->picture.data[0])
1268 c->release_buffer(c, &s->picture);