]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/c93.c
Silicon Graphics Movie (.mv) demuxer
[ffmpeg] / libavcodec / c93.c
index b53ee1b7d6c3fbae3cd7e3211f3f93a7ff6defaa..4ccd767819da6f5c380e429876b7c7407d8c64d2 100644 (file)
@@ -117,7 +117,7 @@ static inline void draw_n_color(uint8_t *out, int stride, int width,
 }
 
 static int decode_frame(AVCodecContext *avctx, void *data,
-                            int *data_size, AVPacket *avpkt)
+                        int *got_frame, AVPacket *avpkt)
 {
     const uint8_t *buf = avpkt->data;
     int buf_size = avpkt->size;
@@ -243,7 +243,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
     }
 
     *picture = *newpic;
-    *data_size = sizeof(AVFrame);
+    *got_frame = 1;
 
     return buf_size;
 }