]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/bethsoftvideo.c
Flip (M)JPEG frames encoded by Intel JPEG library.
[ffmpeg] / libavcodec / bethsoftvideo.c
index 54bc46c555f8a2f1defb7a245d1e04765c4d0180..6b4a5acabd70c13f33f38448662e58fd9a80ada6 100644 (file)
@@ -58,8 +58,10 @@ static void set_palette(AVFrame * frame, const uint8_t * palette_buffer)
 
 static int bethsoftvid_decode_frame(AVCodecContext *avctx,
                               void *data, int *data_size,
-                              const uint8_t *buf, int buf_size)
+                              AVPacket *avpkt)
 {
+    const uint8_t *buf = avpkt->data;
+    int buf_size = avpkt->size;
     BethsoftvidContext * vid = avctx->priv_data;
     char block_type;
     uint8_t * dst;
@@ -136,5 +138,6 @@ AVCodec bethsoftvid_decoder = {
     .init = bethsoftvid_decode_init,
     .close = bethsoftvid_decode_end,
     .decode = bethsoftvid_decode_frame,
+    .capabilities = CODEC_CAP_DR1,
     .long_name = NULL_IF_CONFIG_SMALL("Bethesda VID video"),
 };