diff options
author | Clément Bœsch <u@pkh.me> | 2014-05-03 22:39:31 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-05-08 22:59:47 +0200 |
commit | 362ab940fc5d1ba5ad55a3e797a38d98beda78a0 (patch) | |
tree | 12383935c2824d25e0ff933f3e4445a7ccf08c9f | |
parent | 996fffbbb3c2a511ce285d651a4edb1734ccde0f (diff) | |
download | ffmpeg-362ab940fc5d1ba5ad55a3e797a38d98beda78a0.tar.gz |
avfilter/phase: add comment on the context cached frame.
-rw-r--r-- | libavfilter/vf_phase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_phase.c b/libavfilter/vf_phase.c index 2dcc6faa49..281f73636b 100644 --- a/libavfilter/vf_phase.c +++ b/libavfilter/vf_phase.c @@ -42,7 +42,7 @@ enum PhaseMode { typedef struct PhaseContext { const AVClass *class; enum PhaseMode mode; - AVFrame *frame; + AVFrame *frame; /* previous frame */ int nb_planes; int planeheight[4]; int linesize[4]; |