]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/qdrw.c
Add MPL2 subtitles demuxer and decoder.
[ffmpeg] / libavcodec / qdrw.c
index 227ae1536c3519f853f460cdd4dcf6143fdc2d90..2be6e04b645750086eb7588709c8d04cca2ac41a 100644 (file)
@@ -35,7 +35,7 @@ typedef struct QdrawContext{
 } QdrawContext;
 
 static int decode_frame(AVCodecContext *avctx,
-                        void *data, int *data_size,
+                        void *data, int *got_frame,
                         AVPacket *avpkt)
 {
     const uint8_t *buf = avpkt->data;
@@ -140,7 +140,7 @@ static int decode_frame(AVCodecContext *avctx,
         outdata += a->pic.linesize[0];
     }
 
-    *data_size = sizeof(AVFrame);
+    *got_frame      = 1;
     *(AVFrame*)data = a->pic;
 
     return buf_size;