Coverage Report

Created: 2025-08-28 07:12

/src/ffmpeg/libavcodec/mdec.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Sony PlayStation MDEC (Motion DECoder)
3
 * Copyright (c) 2003 Michael Niedermayer
4
 *
5
 * based upon code from Sebastian Jedruszkiewicz <elf@frogger.rules.pl>
6
 *
7
 * This file is part of FFmpeg.
8
 *
9
 * FFmpeg is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU Lesser General Public
11
 * License as published by the Free Software Foundation; either
12
 * version 2.1 of the License, or (at your option) any later version.
13
 *
14
 * FFmpeg is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
 * Lesser General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Lesser General Public
20
 * License along with FFmpeg; if not, write to the Free Software
21
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22
 */
23
24
/**
25
 * @file
26
 * Sony PlayStation MDEC (Motion DECoder)
27
 * This is very similar to intra-only MPEG-1.
28
 */
29
30
#include "libavutil/mem.h"
31
#include "libavutil/mem_internal.h"
32
33
#include "avcodec.h"
34
#include "blockdsp.h"
35
#include "bswapdsp.h"
36
#include "codec_internal.h"
37
#include "idctdsp.h"
38
#include "mpeg12data.h"
39
#include "mpeg12dec.h"
40
#include "thread.h"
41
42
typedef struct MDECContext {
43
    AVCodecContext *avctx;
44
    BlockDSPContext bdsp;
45
    BswapDSPContext bbdsp;
46
    IDCTDSPContext idsp;
47
    GetBitContext gb;
48
    uint8_t permutated_scantable[64];
49
    int version;
50
    int qscale;
51
    int last_dc[3];
52
    int mb_width;
53
    int mb_height;
54
    int mb_x, mb_y;
55
    DECLARE_ALIGNED(32, int16_t, block)[6][64];
56
    DECLARE_ALIGNED(16, uint16_t, quant_matrix)[64];
57
    uint8_t *bitstream_buffer;
58
    unsigned int bitstream_buffer_size;
59
} MDECContext;
60
61
//very similar to MPEG-1
62
static inline int mdec_decode_block_intra(MDECContext *a, int16_t *block, int n)
63
4.35M
{
64
4.35M
    int level, diff, i, j, run;
65
4.35M
    int component;
66
4.35M
    const uint8_t *const scantable = a->permutated_scantable;
67
4.35M
    const uint16_t *quant_matrix = a->quant_matrix;
68
4.35M
    const int qscale = a->qscale;
69
70
    /* DC coefficient */
71
4.35M
    if (a->version <= 2) {
72
225k
        block[0] = 2 * get_sbits(&a->gb, 10) + 1024;
73
4.13M
    } else {
74
4.13M
        component = (n <= 3 ? 0 : n - 4 + 1);
75
4.13M
        diff = decode_dc(&a->gb, component);
76
4.13M
        a->last_dc[component] += diff;
77
4.13M
        block[0] = a->last_dc[component] * (1 << 3);
78
4.13M
    }
79
80
4.35M
    i = 0;
81
4.35M
    {
82
4.35M
        OPEN_READER(re, &a->gb);
83
        /* now quantify & encode AC coefficients */
84
14.7M
        for (;;) {
85
14.7M
            UPDATE_CACHE(re, &a->gb);
86
14.7M
            GET_RL_VLC(level, run, re, &a->gb, ff_mpeg1_rl_vlc, TEX_VLC_BITS, 2, 0);
87
88
14.7M
            if (level == 127) {
89
4.32M
                break;
90
10.4M
            } else if (level != 0) {
91
10.4M
                i += run;
92
10.4M
                if (i > 63) {
93
29.8k
                    av_log(a->avctx, AV_LOG_ERROR,
94
29.8k
                           "ac-tex damaged at %d %d\n", a->mb_x, a->mb_y);
95
29.8k
                    return AVERROR_INVALIDDATA;
96
29.8k
                }
97
10.3M
                j     = scantable[i];
98
10.3M
                level = (level * qscale * quant_matrix[j]) >> 3;
99
10.3M
                level = (level ^ SHOW_SBITS(re, &a->gb, 1)) - SHOW_SBITS(re, &a->gb, 1);
100
10.3M
                LAST_SKIP_BITS(re, &a->gb, 1);
101
10.3M
            } else {
102
                /* escape */
103
33.4k
                run = SHOW_UBITS(re, &a->gb, 6) + 1;
104
33.4k
                SKIP_BITS(re, &a->gb, 6);
105
33.4k
                level = SHOW_SBITS(re, &a->gb, 10);
106
33.4k
                LAST_SKIP_BITS(re, &a->gb, 10);
107
33.4k
                i += run;
108
33.4k
                if (i > 63) {
109
569
                    av_log(a->avctx, AV_LOG_ERROR,
110
569
                           "ac-tex damaged at %d %d\n", a->mb_x, a->mb_y);
111
569
                    return AVERROR_INVALIDDATA;
112
569
                }
113
32.8k
                j = scantable[i];
114
32.8k
                if (level < 0) {
115
6.92k
                    level = -level;
116
6.92k
                    level = (level * (unsigned)qscale * quant_matrix[j]) >> 3;
117
6.92k
                    level = (level - 1) | 1;
118
6.92k
                    level = -level;
119
25.9k
                } else {
120
25.9k
                    level = (level * (unsigned)qscale * quant_matrix[j]) >> 3;
121
25.9k
                    level = (level - 1) | 1;
122
25.9k
                }
123
32.8k
            }
124
125
10.4M
            block[j] = level;
126
10.4M
        }
127
4.32M
        CLOSE_READER(re, &a->gb);
128
4.32M
    }
129
0
    return 0;
130
4.35M
}
131
132
static inline int decode_mb(MDECContext *a, int16_t block[6][64])
133
750k
{
134
750k
    int i, ret;
135
750k
    static const int block_index[6] = { 5, 4, 0, 1, 2, 3 };
136
137
750k
    a->bdsp.clear_blocks(block[0]);
138
139
5.07M
    for (i = 0; i < 6; i++) {
140
4.35M
        if ((ret = mdec_decode_block_intra(a, block[block_index[i]],
141
4.35M
                                           block_index[i])) < 0)
142
30.4k
            return ret;
143
4.32M
        if (get_bits_left(&a->gb) < 0)
144
877
            return AVERROR_INVALIDDATA;
145
4.32M
    }
146
719k
    return 0;
147
750k
}
148
149
static inline void idct_put(MDECContext *a, AVFrame *frame, int mb_x, int mb_y)
150
719k
{
151
719k
    int16_t (*block)[64] = a->block;
152
719k
    int linesize = frame->linesize[0];
153
154
719k
    uint8_t *dest_y  = frame->data[0] + (mb_y * 16* linesize              ) + mb_x * 16;
155
719k
    uint8_t *dest_cb = frame->data[1] + (mb_y * 8 * frame->linesize[1]) + mb_x * 8;
156
719k
    uint8_t *dest_cr = frame->data[2] + (mb_y * 8 * frame->linesize[2]) + mb_x * 8;
157
158
719k
    a->idsp.idct_put(dest_y,                    linesize, block[0]);
159
719k
    a->idsp.idct_put(dest_y + 8,                linesize, block[1]);
160
719k
    a->idsp.idct_put(dest_y + 8 * linesize,     linesize, block[2]);
161
719k
    a->idsp.idct_put(dest_y + 8 * linesize + 8, linesize, block[3]);
162
163
719k
    if (!(a->avctx->flags & AV_CODEC_FLAG_GRAY)) {
164
719k
        a->idsp.idct_put(dest_cb, frame->linesize[1], block[4]);
165
719k
        a->idsp.idct_put(dest_cr, frame->linesize[2], block[5]);
166
719k
    }
167
719k
}
168
169
static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
170
                        int *got_frame, AVPacket *avpkt)
171
139k
{
172
139k
    MDECContext * const a = avctx->priv_data;
173
139k
    const uint8_t *buf    = avpkt->data;
174
139k
    int buf_size          = avpkt->size;
175
139k
    int ret;
176
177
139k
    if ((ret = ff_thread_get_buffer(avctx, frame, 0)) < 0)
178
51.6k
        return ret;
179
180
87.9k
    av_fast_padded_malloc(&a->bitstream_buffer, &a->bitstream_buffer_size, buf_size);
181
87.9k
    if (!a->bitstream_buffer)
182
0
        return AVERROR(ENOMEM);
183
87.9k
    a->bbdsp.bswap16_buf((uint16_t *)a->bitstream_buffer, (uint16_t *)buf, (buf_size + 1) / 2);
184
87.9k
    if ((ret = init_get_bits8(&a->gb, a->bitstream_buffer, buf_size)) < 0)
185
0
        return ret;
186
187
    /* skip over 4 preamble bytes in stream (typically 0xXX 0xXX 0x00 0x38) */
188
87.9k
    skip_bits(&a->gb, 32);
189
190
87.9k
    a->qscale  = get_bits(&a->gb, 16);
191
87.9k
    a->version = get_bits(&a->gb, 16);
192
193
87.9k
    a->last_dc[0] = a->last_dc[1] = a->last_dc[2] = 128;
194
195
366k
    for (a->mb_x = 0; a->mb_x < a->mb_width; a->mb_x++) {
196
1.02M
        for (a->mb_y = 0; a->mb_y < a->mb_height; a->mb_y++) {
197
750k
            if ((ret = decode_mb(a, a->block)) < 0)
198
31.3k
                return ret;
199
200
719k
            idct_put(a, frame, a->mb_x, a->mb_y);
201
719k
        }
202
309k
    }
203
204
56.6k
    *got_frame = 1;
205
206
56.6k
    return (get_bits_count(&a->gb) + 31) / 32 * 4;
207
87.9k
}
208
209
static av_cold int decode_init(AVCodecContext *avctx)
210
1.13k
{
211
1.13k
    MDECContext * const a = avctx->priv_data;
212
1.13k
    int i;
213
214
1.13k
    a->mb_width  = (avctx->coded_width  + 15) / 16;
215
1.13k
    a->mb_height = (avctx->coded_height + 15) / 16;
216
217
1.13k
    a->avctx           = avctx;
218
219
1.13k
    ff_blockdsp_init(&a->bdsp);
220
1.13k
    ff_bswapdsp_init(&a->bbdsp);
221
1.13k
    ff_idctdsp_init(&a->idsp, avctx);
222
1.13k
    ff_mpeg12_init_vlcs();
223
1.13k
    ff_permute_scantable(a->permutated_scantable, ff_zigzag_direct,
224
1.13k
                         a->idsp.idct_permutation);
225
226
1.13k
    avctx->pix_fmt  = AV_PIX_FMT_YUVJ420P;
227
1.13k
    avctx->color_range = AVCOL_RANGE_JPEG;
228
229
    /* init q matrix */
230
73.9k
    for (i = 0; i < 64; i++) {
231
72.7k
        int j = a->idsp.idct_permutation[i];
232
233
72.7k
        a->quant_matrix[j] = ff_mpeg1_default_intra_matrix[i];
234
72.7k
    }
235
236
1.13k
    return 0;
237
1.13k
}
238
239
static av_cold int decode_end(AVCodecContext *avctx)
240
1.13k
{
241
1.13k
    MDECContext * const a = avctx->priv_data;
242
243
1.13k
    av_freep(&a->bitstream_buffer);
244
1.13k
    a->bitstream_buffer_size = 0;
245
246
1.13k
    return 0;
247
1.13k
}
248
249
const FFCodec ff_mdec_decoder = {
250
    .p.name           = "mdec",
251
    CODEC_LONG_NAME("Sony PlayStation MDEC (Motion DECoder)"),
252
    .p.type           = AVMEDIA_TYPE_VIDEO,
253
    .p.id             = AV_CODEC_ID_MDEC,
254
    .priv_data_size   = sizeof(MDECContext),
255
    .init             = decode_init,
256
    .close            = decode_end,
257
    FF_CODEC_DECODE_CB(decode_frame),
258
    .p.capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
259
};