]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/gdv: Optimize unscaled loop
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 4 Jan 2019 19:22:34 +0000 (20:22 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sat, 5 Jan 2019 21:36:12 +0000 (22:36 +0100)
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/gdv.c

index 538bc38e3eadf6feb9f68a9a3702cddf46f96b9e..132ec7288add7709a6f065a5cdc957149244c8b4 100644 (file)
@@ -470,12 +470,10 @@ static int gdv_decode_frame(AVCodecContext *avctx, void *data,
 
     if (!gdv->scale_v && !gdv->scale_h) {
         int sidx = PREAMBLE_SIZE, didx = 0;
-        int y, x;
+        int y;
 
         for (y = 0; y < avctx->height; y++) {
-            for (x = 0; x < avctx->width; x++) {
-                dst[x+didx] = gdv->frame[x+sidx];
-            }
+            memcpy(dst + didx, gdv->frame + sidx, avctx->width);
             sidx += avctx->width;
             didx += frame->linesize[0];
         }