X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fh263.h;h=3c3f1698ff1ed23eb49f47977e10fed40802bc71;hb=d95fee4425285e90604cda48375069f5ef090ce3;hp=904073e2f9e784aeeabf9ee2f284cda57fa248d8;hpb=cb59d29fd6b9472cd6aa29370208e59b63fe3678;p=ffmpeg diff --git a/libavcodec/h263.h b/libavcodec/h263.h index 904073e2f9e..3c3f1698ff1 100644 --- a/libavcodec/h263.h +++ b/libavcodec/h263.h @@ -116,7 +116,7 @@ static inline int h263_get_motion_length(int val, int f_code){ } static inline void ff_h263_encode_motion_vector(MpegEncContext * s, int x, int y, int f_code){ - if (s->avctx->flags2 & CODEC_FLAG2_NO_OUTPUT) { + if (s->avctx->flags2 & AV_CODEC_FLAG2_NO_OUTPUT) { skip_put_bits(&s->pb, h263_get_motion_length(x, f_code) +h263_get_motion_length(y, f_code));