diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-01-11 23:53:17 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-11 23:53:17 +0000 |
commit | 36dc00de529fb4cd182e02f927597eef9514b886 (patch) | |
tree | 89c44d490147bdf5cd0fd1695a5ccf7293884806 /libavfilter/avfilter.h | |
parent | 4618637aca3b771b0bfb8fe15f3a080dacf9f0c0 (diff) | |
download | ffmpeg-36dc00de529fb4cd182e02f927597eef9514b886.tar.gz |
Add w,h,format back into AVFilterBuffer, these are required for direct rendering.
These fields are needed to be able to know which area of memory is allocated and
which is off limits.
This reverts 24291 and parts of r24424.
Originally committed as revision 26314 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 02b513fb75..597e7a71d0 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -27,7 +27,7 @@ #include "libavcore/samplefmt.h" #define LIBAVFILTER_VERSION_MAJOR 1 -#define LIBAVFILTER_VERSION_MINOR 72 +#define LIBAVFILTER_VERSION_MINOR 73 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ @@ -80,6 +80,9 @@ typedef struct AVFilterBuffer { * reallocating it from scratch. */ void (*free)(struct AVFilterBuffer *buf); + + int format; ///< media format + int w, h; ///< width and height of the allocated buffer } AVFilterBuffer; #define AV_PERM_READ 0x01 ///< can read from the buffer |