Coverage Report

Created: 2026-04-01 07:42

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavformat/usmdec.c
Line
Count
Source
1
/*
2
 * USM demuxer
3
 * Copyright (c) 2023 Paul B Mahol
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
#include "libavutil/intfloat.h"
23
#include "libavutil/intreadwrite.h"
24
#include "libavutil/mem.h"
25
#include "libavcodec/bytestream.h"
26
27
#include "avformat.h"
28
#include "demux.h"
29
#include "internal.h"
30
31
62.4M
#define VIDEOI 0
32
36.0M
#define AUDIOI 1
33
2.66M
#define ALPHAI 2
34
3.01k
#define SUBTTI 3
35
36
typedef struct USMChannel {
37
    int index;
38
    int used;
39
    int type;
40
    int codec_id;
41
    int nb_channels;
42
    int nb_frames;
43
    AVRational rate;
44
    int width, height;
45
    int64_t duration;
46
    int64_t extradata_pos;
47
} USMChannel;
48
49
typedef struct USMDemuxContext {
50
    USMChannel ch[4][256];
51
    int nb_channels[4];
52
    uint8_t *header;
53
    unsigned header_size;
54
} USMDemuxContext;
55
56
static int usm_probe(const AVProbeData *p)
57
959k
{
58
959k
    if (AV_RL32(p->buf) != MKTAG('C','R','I','D'))
59
958k
        return 0;
60
61
807
    if (AV_RN32(p->buf + 4) == 0)
62
158
        return 0;
63
64
649
    return AVPROBE_SCORE_MAX / 3;
65
807
}
66
67
static int usm_read_header(AVFormatContext *s)
68
8.30k
{
69
8.30k
    s->ctx_flags |= AVFMTCTX_NOHEADER;
70
8.30k
    return 0;
71
8.30k
}
72
73
static int parse_utf(AVFormatContext *s, AVIOContext *pb,
74
                     USMChannel *ch, int ch_type,
75
                     uint32_t parent_chunk_size)
76
8.41k
{
77
8.41k
    USMDemuxContext *usm = s->priv_data;
78
8.41k
    GetByteContext gb, ugb, sgb;
79
8.41k
    uint32_t chunk_type, chunk_size, offset;
80
8.41k
    uint32_t unique_offset, string_offset;
81
8.41k
    int nb_items, unique_size, nb_dictionaries;
82
8.41k
    AVRational fps = { 0 };
83
8.41k
    int type;
84
85
8.41k
    chunk_type = avio_rb32(pb);
86
8.41k
    chunk_size = avio_rb32(pb);
87
88
8.41k
    if (chunk_type != MKBETAG('@','U','T','F'))
89
686
        return AVERROR_INVALIDDATA;
90
91
7.72k
    if (!chunk_size || chunk_size >= parent_chunk_size)
92
54
        return AVERROR_INVALIDDATA;
93
94
7.67k
    av_fast_malloc(&usm->header, &usm->header_size, chunk_size);
95
7.67k
    if (!usm->header)
96
37
        return AVERROR(ENOMEM);
97
98
7.63k
    if (avio_read(pb, usm->header, chunk_size) != chunk_size)
99
138
        return AVERROR_EOF;
100
101
7.49k
    bytestream2_init(&gb, usm->header, chunk_size);
102
7.49k
    ugb = gb;
103
7.49k
    sgb = gb;
104
7.49k
    unique_offset = bytestream2_get_be32(&gb);
105
7.49k
    string_offset = bytestream2_get_be32(&gb);
106
7.49k
    /*byte_offset =*/ bytestream2_get_be32(&gb);
107
7.49k
    /*payload_name_offset =*/ bytestream2_get_be32(&gb);
108
7.49k
    nb_items = bytestream2_get_be16(&gb);
109
7.49k
    unique_size = bytestream2_get_be16(&gb);
110
7.49k
    nb_dictionaries = bytestream2_get_be32(&gb);
111
7.49k
    if (nb_dictionaries == 0)
112
40
        return AVERROR_INVALIDDATA;
113
114
7.45k
    bytestream2_skip(&ugb, unique_offset);
115
7.45k
    if (bytestream2_get_bytes_left(&ugb) < unique_size)
116
41
        return AVERROR_INVALIDDATA;
117
7.41k
    bytestream2_init(&ugb, ugb.buffer, unique_size);
118
119
7.41k
    bytestream2_skip(&sgb, string_offset);
120
121
36.0M
    for (int i = 0; i < nb_items; i++) {
122
36.0M
        GetByteContext *xgb;
123
36.0M
        uint8_t key[256];
124
36.0M
        int64_t value = -1;
125
36.0M
        int n = 0;
126
127
36.0M
        type = bytestream2_get_byte(&gb);
128
36.0M
        offset = bytestream2_get_be32(&gb);
129
130
36.0M
        bytestream2_seek(&sgb, string_offset + offset, SEEK_SET);
131
204M
        while (bytestream2_get_bytes_left(&sgb) > 0) {
132
179M
            key[n] = bytestream2_get_byte(&sgb);
133
179M
            if (!key[n])
134
10.8M
                break;
135
168M
            if (n >= sizeof(key) - 1)
136
104k
                break;
137
168M
            n++;
138
168M
        }
139
36.0M
        key[n] = '\0';
140
141
36.0M
        if ((type >> 5) == 1)
142
98.0k
            xgb = &gb;
143
35.9M
        else
144
35.9M
            xgb = &ugb;
145
146
36.0M
        switch (type & 0x1F) {
147
40.3k
        case 0x10:
148
55.8k
        case 0x11:
149
55.8k
            value = bytestream2_get_byte(xgb);
150
55.8k
            break;
151
17.3k
        case 0x12:
152
48.9k
        case 0x13:
153
48.9k
            value = bytestream2_get_be16(xgb);
154
48.9k
            break;
155
35.3k
        case 0x14:
156
66.0k
        case 0x15:
157
66.0k
            value = bytestream2_get_be32(xgb);
158
66.0k
            break;
159
15.3k
        case 0x16:
160
61.3k
        case 0x17:
161
61.3k
            value = bytestream2_get_be64(xgb);
162
61.3k
            break;
163
13.4k
        case 0x18:
164
13.4k
            value = av_int2float(bytestream2_get_be32(xgb));
165
13.4k
            break;
166
14.5k
        case 0x19:
167
14.5k
            value = av_int2double(bytestream2_get_be64(xgb));
168
14.5k
            break;
169
6.36k
        case 0x1A:
170
6.36k
            break;
171
36.0M
        }
172
173
36.0M
        if (ch_type == AUDIOI) {
174
4.83M
            if (!strcmp(key, "sampling_rate")) {
175
27.6k
                ch->rate.num = value;
176
27.6k
                ch->rate.den = 1;
177
4.81M
            } else if (!strcmp(key, "num_channels")) {
178
282
                ch->nb_channels = value;
179
4.81M
            } else if (!strcmp(key, "total_samples")) {
180
256k
                ch->duration = value;
181
4.55M
            } else if (!strcmp(key, "audio_codec")) {
182
443k
                switch (value) {
183
173
                case 2:
184
173
                    ch->codec_id = AV_CODEC_ID_ADPCM_ADX;
185
173
                    break;
186
104
                case 4:
187
104
                    ch->codec_id = AV_CODEC_ID_HCA;
188
104
                    break;
189
443k
                default:
190
443k
                    av_log(s, AV_LOG_ERROR, "unsupported audio: %d\n", (int)value);
191
443k
                    break;
192
443k
                }
193
443k
            }
194
31.1M
        } else if (ch_type == VIDEOI || ch_type == ALPHAI) {
195
30.6M
            if (!strcmp(key, "width")) {
196
114k
                ch->width = value;
197
30.5M
            } else if (!strcmp(key, "height")) {
198
181k
                ch->height = value;
199
30.3M
            } else if (!strcmp(key, "total_frames")) {
200
80.0k
                ch->nb_frames = value;
201
30.2M
            } else if (!strcmp(key, "framerate_n")) {
202
878k
                fps.num = value;
203
29.3M
            } else if (!strcmp(key, "framerate_d")) {
204
46.0k
                fps.den = value;
205
29.3M
            } else if (!strcmp(key, "mpeg_codec")) {
206
75.9k
                switch (value) {
207
221
                case 1:
208
221
                    ch->codec_id = AV_CODEC_ID_MPEG1VIDEO;
209
221
                    break;
210
4.71k
                case 5:
211
4.71k
                    ch->codec_id = AV_CODEC_ID_H264;
212
4.71k
                    break;
213
106
                case 9:
214
106
                    ch->codec_id = AV_CODEC_ID_VP9;
215
106
                    break;
216
70.9k
                default:
217
70.9k
                    av_log(s, AV_LOG_ERROR, "unsupported video: %d\n", (int)value);
218
70.9k
                    break;
219
75.9k
                }
220
75.9k
            }
221
30.6M
        }
222
36.0M
    }
223
224
7.41k
    if (ch_type == VIDEOI && fps.num && fps.den)
225
155
        ch->rate = fps;
226
227
7.41k
    return 0;
228
7.41k
}
229
230
static int64_t parse_chunk(AVFormatContext *s, AVIOContext *pb,
231
                           uint32_t chunk_type, uint32_t chunk_size,
232
                           AVPacket *pkt)
233
47.8k
{
234
47.8k
    const int is_audio = chunk_type == MKBETAG('@','S','F','A');
235
47.8k
    const int is_alpha = chunk_type == MKBETAG('@','A','L','P');
236
47.8k
    const int is_subtt = chunk_type == MKBETAG('@','S','B','T');
237
47.8k
    USMDemuxContext *usm = s->priv_data;
238
47.8k
    int padding_size, payload_type, payload_offset;
239
47.8k
    const int ch_type = is_subtt ? SUBTTI : is_audio ? AUDIOI : is_alpha ? ALPHAI : VIDEOI;
240
47.8k
    int stream_index, frame_rate;
241
47.8k
    int64_t chunk_start, ret;
242
243
47.8k
    ret = avio_tell(pb);
244
47.8k
    if (ret < 0)
245
0
        return ret;
246
47.8k
    chunk_start = ret;
247
47.8k
    avio_skip(pb, 1);
248
47.8k
    payload_offset = avio_r8(pb);
249
47.8k
    padding_size = avio_rb16(pb);
250
47.8k
    stream_index = avio_r8(pb);
251
47.8k
    avio_skip(pb, 2);
252
47.8k
    payload_type = avio_r8(pb);
253
47.8k
    /*frame_time =*/ avio_rb32(pb);
254
47.8k
    frame_rate = avio_rb32(pb);
255
47.8k
    avio_skip(pb, 8);
256
47.8k
    ret = avio_tell(pb);
257
47.8k
    if (ret < 0)
258
0
        return ret;
259
47.8k
    ret = avio_skip(pb, FFMAX(0, (ret - chunk_start) - payload_offset));
260
47.8k
    if (ret < 0)
261
28
        return ret;
262
263
47.8k
    if (payload_type == 1) {
264
11.0k
        if (usm->ch[ch_type][stream_index].used == 0) {
265
8.41k
            USMChannel *ch = &usm->ch[ch_type][stream_index];
266
267
8.41k
            switch (ch_type) {
268
130
            case ALPHAI:
269
6.94k
            case VIDEOI:
270
6.94k
                ch->type = AVMEDIA_TYPE_VIDEO;
271
6.94k
                break;
272
1.11k
            case AUDIOI:
273
1.11k
                ch->type = AVMEDIA_TYPE_AUDIO;
274
1.11k
                break;
275
360
            case SUBTTI:
276
360
                ch->type = AVMEDIA_TYPE_SUBTITLE;
277
360
                break;
278
0
            default:
279
0
                return AVERROR_INVALIDDATA;
280
8.41k
            }
281
282
8.41k
            ch->used = 1;
283
8.41k
            ch->index = -1;
284
8.41k
            usm->nb_channels[ch_type]++;
285
286
8.41k
            ret = parse_utf(s, pb, ch, ch_type, chunk_size);
287
8.41k
            if (ret < 0)
288
996
                return ret;
289
8.41k
        }
290
36.7k
    } else if (payload_type == 0) {
291
33.7k
        if (usm->ch[ch_type][stream_index].used == 1) {
292
31.2k
            USMChannel *ch = &usm->ch[ch_type][stream_index];
293
31.2k
            int get_extradata = 0;
294
31.2k
            uint32_t pkt_size;
295
31.2k
            AVStream *st;
296
297
31.2k
            if (ch->index < 0) {
298
6.83k
                AVCodecParameters *par;
299
6.83k
                st = avformat_new_stream(s, NULL);
300
6.83k
                if (!st)
301
0
                    return AVERROR(ENOMEM);
302
6.83k
                par = st->codecpar;
303
6.83k
                par->codec_type = ch->type;
304
6.83k
                par->codec_id = ch->codec_id;
305
6.83k
                st->start_time = 0;
306
307
6.83k
                switch (ch->type) {
308
5.97k
                case AVMEDIA_TYPE_VIDEO:
309
5.97k
                    par->width = ch->width;
310
5.97k
                    par->height = ch->height;
311
5.97k
                    st->nb_frames = ch->nb_frames;
312
5.97k
                    break;
313
555
                case AVMEDIA_TYPE_AUDIO:
314
555
                    par->sample_rate = ch->rate.num;
315
555
                    par->ch_layout.nb_channels = ch->nb_channels;
316
555
                    st->duration = ch->duration;
317
555
                    break;
318
6.83k
                }
319
320
6.83k
                ch->index = st->index;
321
6.83k
                if (!ch->rate.num || !ch->rate.den)
322
6.63k
                    ch->rate = av_make_q(frame_rate, 100);
323
6.83k
                avpriv_set_pts_info(st, 64, ch->rate.den, ch->rate.num);
324
325
6.83k
                ffstream(st)->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
326
6.83k
                get_extradata = ch->codec_id == AV_CODEC_ID_ADPCM_ADX;
327
6.83k
                ch->extradata_pos = avio_tell(pb);
328
6.83k
            }
329
330
31.2k
            ret = avio_tell(pb);
331
31.2k
            if (ret < 0)
332
0
                return ret;
333
334
31.2k
            pkt_size = chunk_size - (ret - chunk_start) - padding_size;
335
31.2k
            if (get_extradata) {
336
18
                if ((ret = ff_get_extradata(s, st->codecpar, pb, pkt_size)) < 0)
337
2
                    return ret;
338
31.1k
            } else {
339
31.1k
                if (ret == ch->extradata_pos && ch->codec_id == AV_CODEC_ID_ADPCM_ADX) {
340
0
                    avio_skip(pb, pkt_size);
341
0
                    ret = 0;
342
31.1k
                } else {
343
31.1k
                    ret = av_get_packet(pb, pkt, pkt_size);
344
31.1k
                    if (ret < 0)
345
1.08k
                        return ret;
346
347
30.1k
                    pkt->stream_index = ch->index;
348
30.1k
                }
349
31.1k
            }
350
351
30.1k
            avio_skip(pb, padding_size);
352
353
30.1k
            if (ret != pkt_size)
354
417
                return AVERROR_EOF;
355
29.7k
            if (get_extradata == 0)
356
29.6k
                return ret;
357
29.7k
        }
358
33.7k
    }
359
360
15.6k
    ret = avio_tell(pb);
361
15.6k
    if (ret < 0)
362
0
        return ret;
363
15.6k
    ret = avio_skip(pb, FFMAX(0, chunk_size - (ret - chunk_start)));
364
15.6k
    if (ret < 0)
365
996
        return ret;
366
14.6k
    return FFERROR_REDO;
367
15.6k
}
368
369
static int usm_read_packet(AVFormatContext *s, AVPacket *pkt)
370
65.0k
{
371
65.0k
    AVIOContext *pb = s->pb;
372
65.0k
    int64_t ret = AVERROR_EOF;
373
374
789k
    while (!avio_feof(pb)) {
375
778k
        uint32_t chunk_type, chunk_size;
376
778k
        int got_packet = 0;
377
778k
        int64_t pos;
378
379
778k
        pos = avio_tell(pb);
380
778k
        if (pos < 0)
381
0
            return pos;
382
778k
        chunk_type = avio_rb32(pb);
383
778k
        chunk_size = avio_rb32(pb);
384
778k
        if (!chunk_size)
385
3.91k
            return AVERROR_INVALIDDATA;
386
387
774k
        switch (chunk_type) {
388
22
        case MKBETAG('C','R','I','D'):
389
726k
        default:
390
726k
            ret = avio_skip(pb, chunk_size);
391
726k
            break;
392
300
        case MKBETAG('@','A','L','P'):
393
2.95k
        case MKBETAG('@','S','B','T'):
394
5.95k
        case MKBETAG('@','S','F','A'):
395
47.8k
        case MKBETAG('@','S','F','V'):
396
47.8k
            ret = parse_chunk(s, pb, chunk_type, chunk_size, pkt);
397
47.8k
            got_packet = ret > 0;
398
47.8k
            break;
399
774k
        }
400
401
774k
        if (got_packet)
402
29.4k
            pkt->pos = pos;
403
404
774k
        if (got_packet || ret < 0)
405
49.6k
            break;
406
774k
    }
407
408
61.0k
    return ret;
409
65.0k
}
410
411
static int usm_read_close(AVFormatContext *s)
412
8.30k
{
413
8.30k
    USMDemuxContext *usm = s->priv_data;
414
8.30k
    av_freep(&usm->header);
415
8.30k
    usm->header_size = 0;
416
8.30k
    return 0;
417
8.30k
}
418
419
const FFInputFormat ff_usm_demuxer = {
420
    .p.name         = "usm",
421
    .p.long_name    = NULL_IF_CONFIG_SMALL("CRI USM"),
422
    .p.extensions   = "usm",
423
    .p.flags        = AVFMT_GENERIC_INDEX | AVFMT_NO_BYTE_SEEK | AVFMT_NOBINSEARCH,
424
    .priv_data_size = sizeof(USMDemuxContext),
425
    .read_probe     = usm_probe,
426
    .read_header    = usm_read_header,
427
    .read_packet    = usm_read_packet,
428
    .read_close     = usm_read_close,
429
};