diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-27 16:58:48 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-27 16:58:48 +0000 |
commit | acc0490f09acdc878e5eb30bb2c06f51291ef0d7 (patch) | |
tree | 407d7bf0cb3b2f03d1d01581de20dce8442e1c7e /libavfilter/avfilter.h | |
parent | b3dd5e59713a40b019610f0ed372449a6534291c (diff) | |
download | ffmpeg-acc0490f09acdc878e5eb30bb2c06f51291ef0d7.tar.gz |
Make AVFilterLink store the pointers to the source and destination
pads, rather than their index.
Originally committed as revision 25227 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 99a3d8c6d7..b1d565b103 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -25,8 +25,8 @@ #include "libavutil/avutil.h" #define LIBAVFILTER_VERSION_MAJOR 1 -#define LIBAVFILTER_VERSION_MINOR 46 -#define LIBAVFILTER_VERSION_MICRO 1 +#define LIBAVFILTER_VERSION_MINOR 47 +#define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ @@ -556,10 +556,10 @@ struct AVFilterContext { */ struct AVFilterLink { AVFilterContext *src; ///< source filter - unsigned int srcpad; ///< index of the output pad on the source filter + AVFilterPad *srcpad; ///< output pad on the source filter AVFilterContext *dst; ///< dest filter - unsigned int dstpad; ///< index of the input pad on the dest filter + AVFilterPad *dstpad; ///< input pad on the dest filter /** stage of the initialization of the link properties (dimensions, etc) */ enum { |