]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/zmbvenc.c
Replace int_fast integer types with their sized standard posix counterparts.
[ffmpeg] / libavcodec / zmbvenc.c
index 9caa6b811ac43a7b7ef15ea04fe982288b8d521a..271ab2dc96ca33702dd45f7d2747676ef5c725fd 100644 (file)
@@ -134,7 +134,7 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void
     if(c->curfrm == c->keyint)
         c->curfrm = 0;
     *p = *pict;
-    p->pict_type= keyframe ? FF_I_TYPE : FF_P_TYPE;
+    p->pict_type= keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
     p->key_frame= keyframe;
     chpal = !keyframe && memcmp(p->data[1], c->pal2, 1024);