• 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

130     int field_picture;          ///< whether or not the picture was encoded in separate fields
139 struct MpegEncContext *owner2; ///< pointer to the MpegEncContext that allocated this picture
181 /* temp variables for picture complexity calculation */
205 int width, height;///< picture size. must be a multiple of 16
242 int mb_num; ///< number of MBs of a picture
245 Picture *picture; ///< main picture buffer
274 * copy of the previous picture structure.
275 * note, linesize & data, might not match the previous picture (for field pictures)
280 * copy of the next picture structure.
281 * note, linesize & data, might not match the next picture (for field pictures)
286 * copy of the source picture structure for encoding.
287 * note, linesize & data, might not match the source picture (for field pictures)
292 * copy of the current picture structure.
293 * note, linesize & data, might not match the current picture (for field pictures)
295 Picture current_picture; ///< buffer to store the decompressed current picture
297 Picture *last_picture_ptr; ///< pointer to the previous picture.
298 Picture *next_picture_ptr; ///< pointer to the next picture (for bidir pred)
299 Picture *current_picture_ptr; ///< pointer to the current picture
301 int picture_range_start, picture_range_end; ///< the part of picture that this context can allocate in
340 int unrestricted_mv; ///< mv can point outside of the coded picture
606 int gop_picture_number; ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific
615 /* picture type */
640 int first_field; ///< is 1 for the first field of a field picture 0 otherwise
685 (pic >= old_ctx->picture && pic < old_ctx->picture+old_ctx->picture_count ?\
686 &new_ctx->picture[pic - old_ctx->picture] : pic - (Picture*)old_ctx + (Picture*)new_ctx)\