| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <string.h> |
|
|
| #include "libavutil/bswap.h" |
| #include "libavutil/internal.h" |
| #include "avcodec.h" |
| #include "codec_internal.h" |
| #include "decode.h" |
|
|
|
|
| static const enum AVPixelFormat pixfmt_rgb24[] = { |
| AV_PIX_FMT_BGR24, AV_PIX_FMT_0RGB32, AV_PIX_FMT_NONE }; |
|
|
| typedef struct EightBpsContext { |
| AVCodecContext *avctx; |
|
|
| unsigned char planes; |
| unsigned char planemap[4]; |
| } EightBpsContext; |
|
|
| static int decode_frame(AVCodecContext *avctx, AVFrame *frame, |
| int *got_frame, AVPacket *avpkt) |
| { |
| const uint8_t *buf = avpkt->data; |
| int buf_size = avpkt->size; |
| EightBpsContext * const c = avctx->priv_data; |
| const unsigned char *encoded = buf; |
| unsigned char *pixptr, *pixptr_end; |
| unsigned int height = avctx->height; |
| unsigned int dlen, p, row; |
| const unsigned char *lp, *dp, *ep; |
| unsigned char count; |
| unsigned int px_inc; |
| unsigned int planes = c->planes; |
| unsigned char *planemap = c->planemap; |
| int ret; |
|
|
| if (buf_size < planes * height * 2) |
| return AVERROR_INVALIDDATA; |
|
|
| if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) |
| return ret; |
|
|
| ep = encoded + buf_size; |
|
|
| |
| dp = encoded + planes * (height << 1); |
|
|
| px_inc = planes + (avctx->pix_fmt == AV_PIX_FMT_0RGB32); |
|
|
| for (p = 0; p < planes; p++) { |
| |
| lp = encoded + p * (height << 1); |
|
|
| |
| for (row = 0; row < height; row++) { |
| pixptr = frame->data[0] + row * frame->linesize[0] + planemap[p]; |
| pixptr_end = pixptr + frame->linesize[0]; |
| if (ep - lp < row * 2 + 2) |
| return AVERROR_INVALIDDATA; |
| dlen = av_be2ne16(*(const unsigned short *)(lp + row * 2)); |
| |
| while (dlen > 0) { |
| if (ep - dp <= 1) |
| return AVERROR_INVALIDDATA; |
| if ((count = *dp++) <= 127) { |
| count++; |
| dlen -= count + 1; |
| if (pixptr_end - pixptr < count * px_inc) |
| break; |
| if (ep - dp < count) |
| return AVERROR_INVALIDDATA; |
| while (count--) { |
| *pixptr = *dp++; |
| pixptr += px_inc; |
| } |
| } else { |
| count = 257 - count; |
| if (pixptr_end - pixptr < count * px_inc) |
| break; |
| while (count--) { |
| *pixptr = *dp; |
| pixptr += px_inc; |
| } |
| dp++; |
| dlen -= 2; |
| } |
| } |
| } |
| } |
|
|
| if (avctx->bits_per_coded_sample <= 8) { |
| #if FF_API_PALETTE_HAS_CHANGED |
| FF_DISABLE_DEPRECATION_WARNINGS |
| frame->palette_has_changed = |
| #endif |
| ff_copy_palette(frame->data[1], avpkt, avctx); |
| #if FF_API_PALETTE_HAS_CHANGED |
| FF_ENABLE_DEPRECATION_WARNINGS |
| #endif |
| } |
|
|
| *got_frame = 1; |
|
|
| |
| return buf_size; |
| } |
|
|
| static av_cold int decode_init(AVCodecContext *avctx) |
| { |
| EightBpsContext * const c = avctx->priv_data; |
|
|
| c->avctx = avctx; |
|
|
| switch (avctx->bits_per_coded_sample) { |
| case 8: |
| avctx->pix_fmt = AV_PIX_FMT_PAL8; |
| c->planes = 1; |
| c->planemap[0] = 0; |
| break; |
| case 24: |
| avctx->pix_fmt = ff_get_format(avctx, pixfmt_rgb24); |
| c->planes = 3; |
| c->planemap[0] = 2; |
| c->planemap[1] = 1; |
| c->planemap[2] = 0; |
| break; |
| case 32: |
| avctx->pix_fmt = AV_PIX_FMT_RGB32; |
| c->planes = 4; |
| |
| break; |
| default: |
| av_log(avctx, AV_LOG_ERROR, "Error: Unsupported color depth: %u.\n", |
| avctx->bits_per_coded_sample); |
| return AVERROR_INVALIDDATA; |
| } |
|
|
| if (avctx->pix_fmt == AV_PIX_FMT_RGB32) { |
| c->planemap[0] = HAVE_BIGENDIAN ? 1 : 2; |
| c->planemap[1] = HAVE_BIGENDIAN ? 2 : 1; |
| c->planemap[2] = HAVE_BIGENDIAN ? 3 : 0; |
| c->planemap[3] = HAVE_BIGENDIAN ? 0 : 3; |
| } |
| return 0; |
| } |
|
|
| const FFCodec ff_eightbps_decoder = { |
| .p.name = "8bps", |
| CODEC_LONG_NAME("QuickTime 8BPS video"), |
| .p.type = AVMEDIA_TYPE_VIDEO, |
| .p.id = AV_CODEC_ID_8BPS, |
| .priv_data_size = sizeof(EightBpsContext), |
| .init = decode_init, |
| FF_CODEC_DECODE_CB(decode_frame), |
| .p.capabilities = AV_CODEC_CAP_DR1, |
| }; |
|
|