diff options
author | S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu> | 2010-08-11 15:25:42 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-11 15:25:42 +0000 |
commit | c1db7bff66182d9e3fe48b122345ef92f011ae39 (patch) | |
tree | e2b5c88a17686037894e95e9a0dca2de858dc8c7 /libavfilter/avfilter.h | |
parent | e1f4dd6d41f2ef8cd6db444a3b70946d7a1e29a9 (diff) | |
download | ffmpeg-c1db7bff66182d9e3fe48b122345ef92f011ae39.tar.gz |
Resize data and linesize in AVFilterBufferRef to 8.
This is required to make AVFilterBufferRef able to contain also audio
data, required by audio filtering integration.
Patch by S.N. Hemanth Meenakshisundaram smeen?ks@ucsd.ed?.
Originally committed as revision 24773 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 0045215ee3..ec02e362a8 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 33 +#define LIBAVFILTER_VERSION_MINOR 34 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ @@ -113,8 +113,8 @@ typedef struct AVFilterBufferRefVideoProps typedef struct AVFilterBufferRef { AVFilterBuffer *buf; ///< the buffer that this is a reference to - uint8_t *data[4]; ///< picture data for each plane - int linesize[4]; ///< number of bytes per line + uint8_t *data[8]; ///< picture data for each plane + int linesize[8]; ///< number of bytes per line int format; ///< media format int64_t pts; ///< presentation timestamp in units of 1/AV_TIME_BASE |