diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:12:47 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:12:47 +0000 |
commit | 462f57dbd855bd3c57e7580730b15f4c66cad71e (patch) | |
tree | 3a61027b96789cd995b3408caa48a22960431d40 /libavfilter/avfilter.h | |
parent | 8fb48e7c44feb1e6263228e0427ad66cf06fdc6e (diff) | |
download | ffmpeg-462f57dbd855bd3c57e7580730b15f4c66cad71e.tar.gz |
Adjust the default start_frame() and end_frame() implementations to simplify
the implementation of simple filters.
Commited in SoC by Bobby Bingham on 2007-07-08 16:48:15
Originally committed as revision 12082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index c680504bb0..b14f814c63 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -196,6 +196,7 @@ struct AVFilterLink enum PixelFormat format; AVFilterPicRef *cur_pic; + AVFilterPicRef *outpic; }; /** Link two filters together */ |