]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/xwddec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / xwddec.c
index 2f8453734e56eefff44fc923d83f11cf4b7b8311..9923cdc34367021c919b750028f9aabca5398645 100644 (file)
@@ -36,7 +36,7 @@ static av_cold int xwd_decode_init(AVCodecContext *avctx)
 }
 
 static int xwd_decode_frame(AVCodecContext *avctx, void *data,
-                            int *data_size, AVPacket *avpkt)
+                            int *got_frame, AVPacket *avpkt)
 {
     AVFrame *p = avctx->coded_frame;
     const uint8_t *buf = avpkt->data;
@@ -245,7 +245,7 @@ static int xwd_decode_frame(AVCodecContext *avctx, void *data,
         ptr += p->linesize[0];
     }
 
-    *data_size = sizeof(AVFrame);
+    *got_frame       = 1;
     *(AVFrame *)data = *p;
 
     return buf_size;