[FFmpeg-devel] [PATCH 1/3] vcodec/gdv: Optimize unscaled loop

Michael Niedermayer michael at niedermayer.cc
Fri Jan 4 21:22:34 EET 2019


Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
 libavcodec/gdv.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/libavcodec/gdv.c b/libavcodec/gdv.c
index 538bc38e3e..132ec7288a 100644
--- a/libavcodec/gdv.c
+++ b/libavcodec/gdv.c
@@ -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];
         }
-- 
2.20.1



More information about the ffmpeg-devel mailing list