diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-05-06 23:53:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-06 23:53:06 +0200 |
commit | 39f66edbeae5ccabefe38b2fcb25d6c242d868c0 (patch) | |
tree | 0cc5e445e6e10361bf3d40ec3d793fa1a91a9adf /libavfilter/avfilter.h | |
parent | fa3eddc0110cb237cd57c3e82cafdbcbf798b3a1 (diff) | |
download | ffmpeg-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.h | 2 |
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; }; /** |