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

144     int field_picture;          ///< whether or not the picture was encoded in separate fields
197 /* temp variables for picture complexity calculation */
236 int width, height;///< picture size. must be a multiple of 16
272 int mb_num; ///< number of MBs of a picture
275 Picture *picture; ///< main picture buffer
298 * copy of the previous picture structure.
299 * note, linesize & data, might not match the previous picture (for field pictures)
304 * copy of the next picture structure.
305 * note, linesize & data, might not match the next picture (for field pictures)
310 * copy of the source picture structure for encoding.
311 * note, linesize & data, might not match the source picture (for field pictures)
316 * copy of the current picture structure.
317 * note, linesize & data, might not match the current picture (for field pictures)
319 Picture current_picture; ///< buffer to store the decompressed current picture
321 Picture *last_picture_ptr; ///< pointer to the previous picture.
322 Picture *next_picture_ptr; ///< pointer to the next picture (for bidir pred)
323 Picture *current_picture_ptr; ///< pointer to the current picture
364 int unrestricted_mv; ///< mv can point outside of the coded picture
587 int gop_picture_number; ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific
595 // picture structure defines are loaded from mpegutils.h
618 int first_field; ///< is 1 for the first field of a field picture 0 otherwise
684 ((pic && pic >= old_ctx->picture && \
685 pic < old_ctx->picture + MAX_PICTURE_COUNT) ? \
686 &new_ctx->picture[pic - old_ctx->picture] : NULL)
886 void ff_mpeg_unref_picture(MpegEncContext *s, Picture *picture);