diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-01 13:24:35 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-01 13:24:35 +0200 |
commit | 835fdf48e59b57c81a634ecf8575bce5f1606572 (patch) | |
tree | 33458d5028abe37301eb8b1763742d161830ddc9 | |
parent | 5868e7f562fc49ebe8067392325b10a815e653fb (diff) | |
download | ffmpeg-835fdf48e59b57c81a634ecf8575bce5f1606572.tar.gz |
avfilter/vf_showpalette: fix small cosmetics issue
-rw-r--r-- | libavfilter/vf_showpalette.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_showpalette.c b/libavfilter/vf_showpalette.c index d886ab87a7..25904a88f4 100644 --- a/libavfilter/vf_showpalette.c +++ b/libavfilter/vf_showpalette.c @@ -96,7 +96,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) int ret; AVFrame *out; AVFilterContext *ctx = inlink->dst; - const ShowPaletteContext *s= ctx->priv; + const ShowPaletteContext *s = ctx->priv; AVFilterLink *outlink = ctx->outputs[0]; out = ff_get_video_buffer(outlink, outlink->w, outlink->h); |