aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorS.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>2010-08-07 01:15:34 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-07 01:15:34 +0000
commit5d4890d73d77a75bd3bbb3e469de32da71742726 (patch)
treeda63fedb78b6c5553bd62436731240f8c558d88d /libavfilter/avfilter.h
parent7fce481a69053dd24dbf9f1cb0f5b51df2ec925c (diff)
downloadffmpeg-5d4890d73d77a75bd3bbb3e469de32da71742726.tar.gz
Rename fields:
AVFilterLink.srcpic -> AVFilterLink.src_buf AVFilterLink.cur_pic -> AVFilterLink.cur_buf AVFilterLink.outpic -> AVFilterLink.out_buf The new names are more generic and more consistent, since the struct they contain, which was named AVFilterPicRef, has been renamed to AVFilterBufferRef. Patch by S.N. Hemanth Meenakshisundaram %smeenaks%ucsd%edu%. Originally committed as revision 24732 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index a9e765b4de..3fc5e8cf23 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 30
+#define LIBAVFILTER_VERSION_MINOR 31
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
@@ -530,10 +530,10 @@ struct AVFilterLink
* for the destination. This should not be accessed directly by the
* filters.
*/
- AVFilterBufferRef *srcpic;
+ AVFilterBufferRef *src_buf;
- AVFilterBufferRef *cur_pic;
- AVFilterBufferRef *outpic;
+ AVFilterBufferRef *cur_buf;
+ AVFilterBufferRef *out_buf;
};
/**