]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/targa.c
lavf/qsvvpp: bypass vpp if not needed.
[ffmpeg] / libavcodec / targa.c
index 9f0b2868133ce3a2a7e4ca38c3bf22331d4eebfe..ef8565f451c9d1fd86647f44438b0b115a279e06 100644 (file)
@@ -142,10 +142,9 @@ static int decode_frame(AVCodecContext *avctx,
         return AVERROR_INVALIDDATA;
     }
 
-    if ((ret = av_image_check_size(w, h, 0, avctx)) < 0)
+    if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
         return ret;
-    if(w != avctx->width || h != avctx->height)
-        avcodec_set_dimensions(avctx, w, h);
+
     if ((ret = ff_get_buffer(avctx, p, 0)) < 0){
         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
         return ret;
@@ -239,5 +238,5 @@ AVCodec ff_targa_decoder = {
     .id             = AV_CODEC_ID_TARGA,
     .priv_data_size = sizeof(TargaContext),
     .decode         = decode_frame,
-    .capabilities   = CODEC_CAP_DR1,
+    .capabilities   = AV_CODEC_CAP_DR1,
 };