summaryrefslogtreecommitdiff
path: root/libavfilter/vf_phase.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2014-05-03 22:39:31 +0200
committerClément Bœsch <u@pkh.me>2014-05-08 22:59:47 +0200
commit362ab940fc5d1ba5ad55a3e797a38d98beda78a0 (patch)
tree12383935c2824d25e0ff933f3e4445a7ccf08c9f /libavfilter/vf_phase.c
parent996fffbbb3c2a511ce285d651a4edb1734ccde0f (diff)
avfilter/phase: add comment on the context cached frame.
Diffstat (limited to 'libavfilter/vf_phase.c')
-rw-r--r--libavfilter/vf_phase.c2
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];