]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mjpegdec.c
aacenc: remove TNS from the todo list
[ffmpeg] / libavcodec / mjpegdec.c
index 039fe0edfb44b5bc324a42ab40f9e88876f37c50..818f8c93008d0c04d8321c24e5aed5996937e0e4 100644 (file)
@@ -288,9 +288,6 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
     height = get_bits(&s->gb, 16);
     width  = get_bits(&s->gb, 16);
 
-    if (s->avctx->codec_id == AV_CODEC_ID_AMV && (height&15))
-        avpriv_request_sample(s->avctx, "non mod 16 height AMV");
-
     // HACK for odd_height.mov
     if (s->interlaced && s->width == width && s->height == height + 1)
         height= s->height;