diff options
author | S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu> | 2010-07-17 18:13:17 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-17 18:13:17 +0000 |
commit | b5c582fa9db0a4d360506a05ab66a01394e51c56 (patch) | |
tree | 90559ee49ff1f38ff8b71ca5b90e21c73279e7ef /libavfilter/avfilter.h | |
parent | eedc4ee5d8644dab5ec5faa764af97996e029fc5 (diff) | |
download | ffmpeg-b5c582fa9db0a4d360506a05ab66a01394e51c56.tar.gz |
Remove AVFilterBuffer w and h fields.
These fields are never used, and they do not seem to belong to
AVFilterBuffer anymore, now that it is now a media-independent
structure and these fields are video-related.
Patch by S.N. Hemanth Meenakshisundaram smeenaks ! ucsd ! edu.
Originally committed as revision 24291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 44842e4ce5..75b872616a 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -25,7 +25,7 @@ #include "libavutil/avutil.h" #define LIBAVFILTER_VERSION_MAJOR 1 -#define LIBAVFILTER_VERSION_MINOR 24 +#define LIBAVFILTER_VERSION_MINOR 25 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ @@ -84,8 +84,6 @@ typedef struct AVFilterBuffer * reallocating it from scratch. */ void (*free)(struct AVFilterBuffer *pic); - - int w, h; ///< width and height of the allocated buffer } AVFilterBuffer; /** |