]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpegvideo_enc.c
sonic: replace divide() by ROUNDED_DIV()
[ffmpeg] / libavcodec / mpegvideo_enc.c
index 6a0f3b50ce55baff94708c7a63d9c4a7f2db3f5f..de018e33acc382c66a6fd913203f131267950879 100644 (file)
@@ -535,7 +535,8 @@ av_cold int ff_MPV_encode_init(AVCodecContext *avctx)
     }
 
     // FIXME mpeg2 uses that too
-    if (s->mpeg_quant && s->codec_id != AV_CODEC_ID_MPEG4) {
+    if (s->mpeg_quant && (   s->codec_id != AV_CODEC_ID_MPEG4
+                          && s->codec_id != AV_CODEC_ID_MPEG2VIDEO)) {
         av_log(avctx, AV_LOG_ERROR,
                "mpeg2 style quantization not supported by codec\n");
         return -1;