diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-12 17:04:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-12 17:04:58 +0200 |
commit | 13afee951a49964abb6d3e2d11644ac9d5ded2c7 (patch) | |
tree | ba98a70ac6f80dea08f21badfbbb64319541d826 /libavfilter/vf_gradfun.c | |
parent | af7dd79a323090b14a7fb9ef24a3f6a24dc6d2db (diff) | |
parent | 59ee9f78b0cc4fb84ae606fa317d8102ad32a627 (diff) | |
download | ffmpeg-13afee951a49964abb6d3e2d11644ac9d5ded2c7.tar.gz |
Merge commit '59ee9f78b0cc4fb84ae606fa317d8102ad32a627'
* commit '59ee9f78b0cc4fb84ae606fa317d8102ad32a627':
lavfi: do not use av_pix_fmt_descriptors directly.
Conflicts:
libavfilter/buffersrc.c
libavfilter/drawutils.c
libavfilter/filtfmts.c
libavfilter/vf_ass.c
libavfilter/vf_boxblur.c
libavfilter/vf_drawtext.c
libavfilter/vf_lut.c
libavfilter/vf_pad.c
libavfilter/vf_scale.c
libavfilter/vf_showinfo.c
libavfilter/vf_transpose.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_gradfun.c')
-rw-r--r-- | libavfilter/vf_gradfun.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/vf_gradfun.c b/libavfilter/vf_gradfun.c index d97bc09e5b..ec7a786549 100644 --- a/libavfilter/vf_gradfun.c +++ b/libavfilter/vf_gradfun.c @@ -167,8 +167,9 @@ static int query_formats(AVFilterContext *ctx) static int config_input(AVFilterLink *inlink) { GradFunContext *gf = inlink->dst->priv; - int hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w; - int vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h; + const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); + int hsub = desc->log2_chroma_w; + int vsub = desc->log2_chroma_h; gf->buf = av_mallocz((FFALIGN(inlink->w, 16) * (gf->radius + 1) / 2 + 32) * sizeof(uint16_t)); if (!gf->buf) |