FFmpeg
|
Functions for working with AVPicture. More...
Data Structures | |
struct | AVPicture |
Picture data structure. More... | |
Functions for working with AVPicture.
attribute_deprecated int avpicture_alloc | ( | AVPicture * | picture, |
enum AVPixelFormat | pix_fmt, | ||
int | width, | ||
int | height | ||
) |
Definition at line 57 of file avpicture.c.
attribute_deprecated void avpicture_free | ( | AVPicture * | picture | ) |
Definition at line 70 of file avpicture.c.
attribute_deprecated int avpicture_fill | ( | AVPicture * | picture, |
const uint8_t * | ptr, | ||
enum AVPixelFormat | pix_fmt, | ||
int | width, | ||
int | height | ||
) |
Definition at line 37 of file avpicture.c.
attribute_deprecated int avpicture_layout | ( | const AVPicture * | src, |
enum AVPixelFormat | pix_fmt, | ||
int | width, | ||
int | height, | ||
unsigned char * | dest, | ||
int | dest_size | ||
) |
Definition at line 44 of file avpicture.c.
attribute_deprecated int avpicture_get_size | ( | enum AVPixelFormat | pix_fmt, |
int | width, | ||
int | height | ||
) |
Definition at line 52 of file avpicture.c.
attribute_deprecated void av_picture_copy | ( | AVPicture * | dst, |
const AVPicture * | src, | ||
enum AVPixelFormat | pix_fmt, | ||
int | width, | ||
int | height | ||
) |
Definition at line 75 of file avpicture.c.
attribute_deprecated int av_picture_crop | ( | AVPicture * | dst, |
const AVPicture * | src, | ||
enum AVPixelFormat | pix_fmt, | ||
int | top_band, | ||
int | left_band | ||
) |
Definition at line 107 of file imgconvert.c.
attribute_deprecated int av_picture_pad | ( | AVPicture * | dst, |
const AVPicture * | src, | ||
int | height, | ||
int | width, | ||
enum AVPixelFormat | pix_fmt, | ||
int | padtop, | ||
int | padbottom, | ||
int | padleft, | ||
int | padright, | ||
int * | color | ||
) |
Definition at line 138 of file imgconvert.c.