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

992      * pointer to the picture/channel planes.
1000 * Size, in bytes, of the data for each picture/channel plane.
1011 * pointer to the first allocated byte of the picture. Can be used in get_buffer/release_buffer.
1040 * picture number in bitstream order
1046 * picture number in display order
1067 * is this picture used as reference
1150 * When decoding, this signals how much the picture must be delayed.
1163 * The content of the picture is interlaced.
1402 * picture width / height.
1996 * the picture in the bitstream
2575 * of the picture.
3059 * Indicates number of picture subdivisions. Used for parallelized
3089 * This is used by multithreading - shared tables and picture pointers
3314 * Called at the beginning of each frame or field picture.
3343 * Called at the end of each frame or field picture.
3345 * The whole picture is parsed at this point and can now be sent
3609 * Allocate memory for a picture. Call avpicture_free() to free it.
3613 * @param picture the picture to be filled in
3614 * @param pix_fmt the format of the picture
3615 * @param width the width of the picture
3616 * @param height the height of the picture
3619 int avpicture_alloc(AVPicture *picture, enum PixelFormat pix_fmt, int width, int height);
3622 * Free a picture previously allocated by avpicture_alloc().
3626 * @param picture the AVPicture to be freed
3628 void avpicture_free(AVPicture *picture);
3633 * which points to the image data buffer. Depending on the specified picture
3636 * the different picture planes and the line sizes of the different planes
3643 * @param picture AVPicture whose fields are to be filled in
3645 * @param pix_fmt The format in which the picture data is stored.
3650 int avpicture_fill(AVPicture *picture, uint8_t *ptr,
3661 * @param[in] pix_fmt The format in which the picture data is stored.
3664 * @param[out] dest A buffer into which picture data will be copied.
3672 * Calculate the size in bytes that a picture of the given width and height
3673 * would occupy if stored in the given picture format.
3678 * @param pix_fmt the given picture format
3777 /* deinterlace a picture */
4173 * Decode the video frame of size avpkt->size from avpkt->data into picture.
4196 * @param[out] picture The AVFrame in which the decoded video frame will be stored.
4213 int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
4337 * The input picture should be
4343 * @param[in] pict the input picture to encode
4386 * Return a single letter to describe the given picture type pict_type.
4388 * @param[in] pict_type the picture type
4389 * @return A single character representing the picture type.
4458 * old-style fallback using AV_PICTURE_TYPE_I picture type as key frames