diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:14:17 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:14:17 +0000 |
commit | 2621f4a36b6bffd8c12a50793bae2880428057f0 (patch) | |
tree | ad1c6c2fb39f3749e3fcb83605d9abb0fc581f10 /libavfilter/avfilter.h | |
parent | b3ab2f7e8485a94d446ec4e91b4f5162d699e35f (diff) | |
download | ffmpeg-2621f4a36b6bffd8c12a50793bae2880428057f0.tar.gz |
Add pixel aspect ratio to AVFilterPicRef structure
Commited in SoC by Bobby Bingham on 2007-08-20 14:33:24
Originally committed as revision 12104 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 27fb22b228..ad2d067f86 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -74,6 +74,8 @@ typedef struct AVFilterPicRef int64_t pts; ///< presentation timestamp in units of 1/AV_TIME_BASE + AVRational pixel_aspect; ///< pixel aspect ratio + int perms; ///< permissions #define AV_PERM_READ 0x01 ///< can read from the buffer #define AV_PERM_WRITE 0x02 ///< can write to the buffer |