summaryrefslogtreecommitdiff
path: root/libavfilter/vf_vflip.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-10-06 13:29:37 +0200
committerAnton Khirnov <anton@khirnov.net>2012-10-12 12:45:39 +0200
commit59ee9f78b0cc4fb84ae606fa317d8102ad32a627 (patch)
tree253bd434e8b7416d62d8d5f16f1f443cf05c7bd4 /libavfilter/vf_vflip.c
parent50ba57e0ce63d9904269ea0728936a0c79f8bfb5 (diff)
lavfi: do not use av_pix_fmt_descriptors directly.
Diffstat (limited to 'libavfilter/vf_vflip.c')
-rw-r--r--libavfilter/vf_vflip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_vflip.c b/libavfilter/vf_vflip.c
index 04791036e0..f12290aa03 100644
--- a/libavfilter/vf_vflip.c
+++ b/libavfilter/vf_vflip.c
@@ -36,8 +36,9 @@ typedef struct {
static int config_input(AVFilterLink *link)
{
FlipContext *flip = link->dst->priv;
+ const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
- flip->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
+ flip->vsub = desc->log2_chroma_h;
return 0;
}