diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-09-23 14:28:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-09-24 12:37:12 +0200 |
commit | 87f5e79732bb295765b5669eb03fc2d9676e588f (patch) | |
tree | 4cc7cb184a812ea285999d0189687011c235ea02 | |
parent | 3de684206e940454a5276756620b794b0673d8b9 (diff) | |
download | ffmpeg-87f5e79732bb295765b5669eb03fc2d9676e588f.tar.gz |
vf_drawtext: use ctx for expressing outlink and dtext in end_frame
(Very) slighly improve readability.
-rw-r--r-- | libavfilter/vf_drawtext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index 888c99620e..bebe0d1652 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -798,9 +798,9 @@ static void null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir) { } static void end_frame(AVFilterLink *inlink) { - AVFilterLink *outlink = inlink->dst->outputs[0]; AVFilterContext *ctx = inlink->dst; - DrawTextContext *dtext = inlink->dst->priv; + AVFilterLink *outlink = ctx->outputs[0]; + DrawTextContext *dtext = ctx->priv; AVFilterBufferRef *picref = inlink->cur_buf; dtext->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ? |