summaryrefslogtreecommitdiff
path: root/libavfilter/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/video.c')
-rw-r--r--libavfilter/video.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/video.c b/libavfilter/video.c
index 1710126697..49091ad010 100644
--- a/libavfilter/video.c
+++ b/libavfilter/video.c
@@ -339,7 +339,8 @@ int ff_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
/* copy the slice if needed for permission reasons */
if (link->src_buf) {
- vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
+ const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
+ vsub = desc->log2_chroma_h;
for (i = 0; i < 4; i++) {
if (link->src_buf->data[i]) {