Coverage Report

Created: 2025-08-28 07:12

/src/ffmpeg/libavcodec/8bps.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Quicktime Planar RGB (8BPS) Video Decoder
3
 * Copyright (C) 2003 Roberto Togni
4
 *
5
 * This file is part of FFmpeg.
6
 *
7
 * FFmpeg is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
 */
21
22
/**
23
 * @file
24
 * QT 8BPS Video Decoder by Roberto Togni
25
 * For more information about the 8BPS format, visit:
26
 *   http://www.pcisys.net/~melanson/codecs/
27
 *
28
 * Supports: PAL8 (RGB 8bpp, paletted)
29
 *         : GBRP (RGB 24bpp)
30
 *         : GBRAP (RGB 32bpp, 4th plane is alpha)
31
 */
32
33
#include <string.h>
34
35
#include "libavutil/intreadwrite.h"
36
#include "libavutil/internal.h"
37
#include "avcodec.h"
38
#include "codec_internal.h"
39
#include "decode.h"
40
41
typedef struct EightBpsContext {
42
    AVCodecContext *avctx;
43
44
    uint8_t planes;
45
    uint8_t planemap[4];
46
47
    uint32_t pal[256];
48
} EightBpsContext;
49
50
static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
51
                        int *got_frame, AVPacket *avpkt)
52
452k
{
53
452k
    const uint8_t *buf = avpkt->data;
54
452k
    int buf_size       = avpkt->size;
55
452k
    EightBpsContext * const c = avctx->priv_data;
56
452k
    const uint8_t *encoded = buf;
57
452k
    uint8_t *pixptr, *pixptr_end;
58
452k
    unsigned int height = avctx->height; // Real image height
59
452k
    unsigned int dlen, p, row;
60
452k
    const uint8_t *lp, *dp, *ep;
61
452k
    uint8_t count;
62
452k
    const uint8_t *planemap = c->planemap;
63
452k
    unsigned int planes = c->planes;
64
452k
    int ret;
65
66
452k
    if (buf_size < planes * height * (2 + 2*((avctx->width+128)/129)))
67
356k
        return AVERROR_INVALIDDATA;
68
69
95.9k
    if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
70
16.6k
        return ret;
71
72
79.2k
    ep = encoded + buf_size;
73
74
    /* Set data pointer after line lengths */
75
79.2k
    dp = encoded + planes * (height << 1);
76
77
157k
    for (p = 0; p < planes; p++) {
78
82.1k
        const int pi = planemap[p];
79
        /* Lines length pointer for this plane */
80
82.1k
        lp = encoded + p * (height << 1);
81
82
        /* Decode a plane */
83
849k
        for (row = 0; row < height; row++) {
84
770k
            pixptr = frame->data[pi] + row * frame->linesize[pi];
85
770k
            pixptr_end = pixptr + frame->linesize[pi];
86
770k
            if (ep - lp < row * 2 + 2)
87
0
                return AVERROR_INVALIDDATA;
88
770k
            dlen = AV_RB16(lp + row * 2);
89
            /* Decode a row of this plane */
90
1.05M
            while (dlen > 0) {
91
365k
                if (ep - dp <= 1)
92
1.19k
                    return AVERROR_INVALIDDATA;
93
364k
                if ((count = *dp++) <= 127) {
94
317k
                    count++;
95
317k
                    dlen -= count + 1;
96
317k
                    if (pixptr_end - pixptr < count)
97
65.1k
                        break;
98
252k
                    if (ep - dp < count)
99
2.56k
                        return AVERROR_INVALIDDATA;
100
250k
                    memcpy(pixptr, dp, count);
101
250k
                    pixptr += count;
102
250k
                    dp += count;
103
250k
                } else {
104
46.1k
                    count = 257 - count;
105
46.1k
                    if (pixptr_end - pixptr < count)
106
15.3k
                        break;
107
30.8k
                    memset(pixptr, dp[0], count);
108
30.8k
                    pixptr += count;
109
30.8k
                    dp++;
110
30.8k
                    dlen -= 2;
111
30.8k
                }
112
364k
            }
113
770k
        }
114
82.1k
    }
115
116
75.5k
    if (avctx->bits_per_coded_sample <= 8) {
117
74.5k
        ff_copy_palette(c->pal, avpkt, avctx);
118
119
74.5k
        memcpy(frame->data[1], c->pal, AVPALETTE_SIZE);
120
74.5k
    }
121
122
75.5k
    *got_frame = 1;
123
124
    /* always report that the buffer was completely consumed */
125
75.5k
    return buf_size;
126
79.2k
}
127
128
static av_cold int decode_init(AVCodecContext *avctx)
129
640
{
130
640
    EightBpsContext * const c = avctx->priv_data;
131
132
640
    c->avctx       = avctx;
133
134
640
    switch (avctx->bits_per_coded_sample) {
135
376
    case 8:
136
376
        avctx->pix_fmt = AV_PIX_FMT_PAL8;
137
376
        c->planes      = 1;
138
376
        c->planemap[0] = 0; // 1st plane is palette indexes
139
376
        break;
140
81
    case 24:
141
81
        avctx->pix_fmt = AV_PIX_FMT_GBRP;
142
81
        c->planes      = 3;
143
81
        c->planemap[0] = 2; // 1st plane is red
144
81
        c->planemap[1] = 0; // 2nd plane is green
145
81
        c->planemap[2] = 1; // 3rd plane is blue
146
81
        break;
147
62
    case 32:
148
62
        avctx->pix_fmt = AV_PIX_FMT_GBRAP;
149
62
        c->planes      = 4;
150
62
        break;
151
121
    default:
152
121
        av_log(avctx, AV_LOG_ERROR, "Error: Unsupported color depth: %u.\n",
153
121
               avctx->bits_per_coded_sample);
154
121
        return AVERROR_INVALIDDATA;
155
640
    }
156
157
519
    if (avctx->pix_fmt == AV_PIX_FMT_GBRAP) {
158
62
        c->planemap[0] = 2; // 1st plane is red
159
62
        c->planemap[1] = 0; // 2nd plane is green
160
62
        c->planemap[2] = 1; // 3rd plane is blue
161
62
        c->planemap[3] = 3; // 4th plane is alpha
162
62
    }
163
519
    return 0;
164
640
}
165
166
const FFCodec ff_eightbps_decoder = {
167
    .p.name         = "8bps",
168
    CODEC_LONG_NAME("QuickTime 8BPS video"),
169
    .p.type         = AVMEDIA_TYPE_VIDEO,
170
    .p.id           = AV_CODEC_ID_8BPS,
171
    .priv_data_size = sizeof(EightBpsContext),
172
    .init           = decode_init,
173
    FF_CODEC_DECODE_CB(decode_frame),
174
    .p.capabilities = AV_CODEC_CAP_DR1,
175
};