summaryrefslogtreecommitdiff
path: root/libavfilter/vf_hflip.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_hflip.c')
-rw-r--r--libavfilter/vf_hflip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index ea1db4fe29..3ae0fc6062 100644
--- a/libavfilter/vf_hflip.c
+++ b/libavfilter/vf_hflip.c
@@ -75,11 +75,11 @@ static int query_formats(AVFilterContext *ctx)
static int config_props(AVFilterLink *inlink)
{
FlipContext *flip = inlink->dst->priv;
- const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
+ const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format);
av_image_fill_max_pixsteps(flip->max_step, NULL, pix_desc);
- flip->hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
- flip->vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
+ flip->hsub = pix_desc->log2_chroma_w;
+ flip->vsub = pix_desc->log2_chroma_h;
return 0;
}