aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-05-06 23:53:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-05-06 23:53:06 +0200
commit39f66edbeae5ccabefe38b2fcb25d6c242d868c0 (patch)
tree0cc5e445e6e10361bf3d40ec3d793fa1a91a9adf /libavfilter/avfilter.h
parentfa3eddc0110cb237cd57c3e82cafdbcbf798b3a1 (diff)
downloadffmpeg-39f66edbeae5ccabefe38b2fcb25d6c242d868c0.tar.gz
AVFilter: use picture pool to avoid malloc().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 5003152069..1a69aa397c 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -619,6 +619,8 @@ struct AVFilterLink {
* input link is assumed to be an unchangeable property.
*/
AVRational time_base;
+
+ struct AVFilterPool *pool;
};
/**