X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fdnxhddata.c;h=64c444705bb68faee837f3285c590af19394363d;hb=94d68a41fabb55dd8c7e59b88fe4a28a637d1e5f;hp=ef918b0214142c55ca9eff7fabfdb3686c56bd98;hpb=dae79a185fa53cdc6c0d1892fda857172d48c0b9;p=ffmpeg diff --git a/libavcodec/dnxhddata.c b/libavcodec/dnxhddata.c index ef918b02141..64c444705bb 100644 --- a/libavcodec/dnxhddata.c +++ b/libavcodec/dnxhddata.c @@ -1119,7 +1119,7 @@ int ff_dnxhd_find_cid(AVCodecContext *avctx, int bit_depth) for (i = 0; i < FF_ARRAY_ELEMS(ff_dnxhd_cid_table); i++) { const CIDEntry *cid = &ff_dnxhd_cid_table[i]; if (cid->width == avctx->width && cid->height == avctx->height && - cid->interlaced == !!(avctx->flags & CODEC_FLAG_INTERLACED_DCT) && + cid->interlaced == !!(avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT) && cid->bit_depth == bit_depth) { for (j = 0; j < FF_ARRAY_ELEMS(cid->bit_rates); j++) { if (cid->bit_rates[j] == mbs)