X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fzmbv.c;h=10fd903b981e23a43d4f57c67c91b61b1ee9a16b;hb=87cf70eb237e7586cc7399627dafa1b980ec0b7d;hp=b9751a0faaf2714460c8b5835a1c3a54ba0c43bb;hpb=fe4bf37455e81ecf2c0b769c979bdf6eec785602;p=ffmpeg diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index b9751a0faaf..10fd903b981 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -2,31 +2,32 @@ * Zip Motion Blocks Video (ZMBV) decoder * Copyright (c) 2006 Konstantin Shishkov * - * This file is part of FFmpeg. + * This file is part of Libav. * - * FFmpeg is free software; you can redistribute it and/or + * Libav is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * - * FFmpeg is distributed in the hope that it will be useful, + * Libav is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with FFmpeg; if not, write to the Free Software + * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** - * @file zmbv.c + * @file * Zip Motion Blocks Video decoder */ #include #include +#include "libavutil/intreadwrite.h" #include "avcodec.h" #include @@ -391,10 +392,11 @@ static int zmbv_decode_intra(ZmbvContext *c) return 0; } -static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) +static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { + const uint8_t *buf = avpkt->data; + int buf_size = avpkt->size; ZmbvContext * const c = avctx->priv_data; - uint8_t *outptr; int zret = Z_OK; // Zlib return code int len = buf_size; int hi_ver, lo_ver; @@ -409,8 +411,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const return -1; } - outptr = c->pic.data[0]; // Output image pointer - /* parse header */ c->flags = buf[0]; buf++; len--; @@ -431,6 +431,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const } if(c->bw == 0 || c->bh == 0) { av_log(avctx, AV_LOG_ERROR, "Unsupported block size %ix%i\n", c->bw, c->bh); + return -1; } if(c->comp != 0 && c->comp != 1) { av_log(avctx, AV_LOG_ERROR, "Unsupported compression type %i\n", c->comp); @@ -499,11 +500,11 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const } if(c->flags & ZMBV_KEYFRAME) { c->pic.key_frame = 1; - c->pic.pict_type = FF_I_TYPE; + c->pic.pict_type = AV_PICTURE_TYPE_I; c->decode_intra(c); } else { c->pic.key_frame = 0; - c->pic.pict_type = FF_P_TYPE; + c->pic.pict_type = AV_PICTURE_TYPE_P; if(c->decomp_len) c->decode_xor(c); } @@ -596,14 +597,10 @@ static av_cold int decode_init(AVCodecContext *avctx) c->avctx = avctx; - c->pic.data[0] = NULL; c->width = avctx->width; c->height = avctx->height; - if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { - return 1; - } - c->bpp = avctx->bits_per_sample; + c->bpp = avctx->bits_per_coded_sample; // Needed if zlib unused or init aborted before inflateInit memset(&(c->zstream), 0, sizeof(z_stream)); @@ -653,15 +650,15 @@ static av_cold int decode_end(AVCodecContext *avctx) return 0; } -AVCodec zmbv_decoder = { - "zmbv", - CODEC_TYPE_VIDEO, - CODEC_ID_ZMBV, - sizeof(ZmbvContext), - decode_init, - NULL, - decode_end, - decode_frame, +AVCodec ff_zmbv_decoder = { + .name = "zmbv", + .type = AVMEDIA_TYPE_VIDEO, + .id = CODEC_ID_ZMBV, + .priv_data_size = sizeof(ZmbvContext), + .init = decode_init, + .close = decode_end, + .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Zip Motion Blocks Video"), };