diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-06 13:29:37 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-10-12 12:45:39 +0200 |
commit | 59ee9f78b0cc4fb84ae606fa317d8102ad32a627 (patch) | |
tree | 253bd434e8b7416d62d8d5f16f1f443cf05c7bd4 /libavfilter/vf_hflip.c | |
parent | 50ba57e0ce63d9904269ea0728936a0c79f8bfb5 (diff) | |
download | ffmpeg-59ee9f78b0cc4fb84ae606fa317d8102ad32a627.tar.gz |
lavfi: do not use av_pix_fmt_descriptors directly.
Diffstat (limited to 'libavfilter/vf_hflip.c')
-rw-r--r-- | libavfilter/vf_hflip.c | 6 |
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; } |