Commit 0bf7416c authored by vitor's avatar vitor

Make linesize a per-reference property

Commited in SoC by Bobby Bingham on 2007-06-30 16:15:14


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12078 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8df7be0c
......@@ -50,7 +50,8 @@ typedef struct AVFilterPic
/**
* A reference to an AVFilterPic. Since filters can manipulate the origin of
* a picture to, for example, crop image without any memcpy, the picture origin
* and dimensions are per-reference properties.
* and dimensions are per-reference properties. Linesize is also useful for
* image flipping, frame to field filters, etc, and so is also per-reference.
*
* TODO: add pts, and anything necessary for frame reordering
*/
......@@ -58,6 +59,7 @@ typedef struct AVFilterPicRef
{
AVFilterPic *pic;
uint8_t *data[4];
int linesize[4];
int w, h;
int perms; ///< permissions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment