]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cinepak.c
Silicon Graphics Movie (.mv) demuxer
[ffmpeg] / libavcodec / cinepak.c
index 9ae63b743264bede996cd7b3aa188a818f0e93d9..9c6d2901736efbb5d6841362795f47eb6090ec50 100644 (file)
@@ -425,7 +425,7 @@ static av_cold int cinepak_decode_init(AVCodecContext *avctx)
 }
 
 static int cinepak_decode_frame(AVCodecContext *avctx,
-                                void *data, int *data_size,
+                                void *data, int *got_frame,
                                 AVPacket *avpkt)
 {
     const uint8_t *buf = avpkt->data;
@@ -456,7 +456,7 @@ static int cinepak_decode_frame(AVCodecContext *avctx,
     if (s->palette_video)
         memcpy (s->frame.data[1], s->pal, AVPALETTE_SIZE);
 
-    *data_size = sizeof(AVFrame);
+    *got_frame = 1;
     *(AVFrame*)data = s->frame;
 
     /* report that the buffer was completely consumed */