Coverage Report

Created: 2026-07-25 07:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/bsf/vvc_mp4toannexb.c
Line
Count
Source
1
/*
2
 * H.266/VVC MP4 to Annex B byte stream format filter
3
 * Copyright (c) 2022, Thomas Siedel
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 <string.h>
23
24
#include "libavutil/intreadwrite.h"
25
#include "libavutil/mem.h"
26
27
#include "libavcodec/bsf.h"
28
#include "libavcodec/bsf_internal.h"
29
#include "libavcodec/bytestream.h"
30
#include "libavcodec/defs.h"
31
#include "libavcodec/vvc.h"
32
33
1.52k
#define MIN_VVCC_LENGTH 23
34
35
typedef struct VVCBSFContext {
36
    uint8_t length_size;
37
    int extradata_parsed;
38
} VVCBSFContext;
39
40
static int vvc_extradata_to_annexb(AVBSFContext *ctx)
41
566
{
42
566
    GetByteContext gb;
43
566
    int length_size, num_arrays, i, j;
44
566
    int ret = 0;
45
566
    int temp = 0;
46
566
    int ptl_present;
47
48
566
    uint8_t *new_extradata = NULL;
49
566
    size_t new_extradata_size = 0;
50
51
566
    int max_picture_width = 0;
52
566
    int max_picture_height = 0;
53
566
    int avg_frame_rate = 0;
54
55
566
    bytestream2_init(&gb, ctx->par_in->extradata, ctx->par_in->extradata_size);
56
566
    temp = bytestream2_get_byte(&gb);
57
566
    length_size = ((temp & 6) >> 1) + 1;
58
566
    ptl_present = temp & 1;
59
566
    if (ptl_present) {
60
313
        int num_bytes_constraint_info;
61
313
        int general_profile_idc;
62
313
        int general_tier_flag;
63
313
        int general_level_idc;
64
313
        int ptl_frame_only_constraint_flag;
65
313
        int ptl_multi_layer_enabled_flag;
66
313
        int ptl_num_sub_profiles;
67
313
        int temp3, temp4, temp5;
68
313
        int temp2 = bytestream2_get_be16(&gb);
69
313
        int ols_idx = (temp2 >> 7) & 0x1ff;
70
313
        int num_sublayers = (temp2 >> 4) & 0x7;
71
313
        int constant_frame_rate = (temp2 >> 2) & 0x3;
72
313
        int chroma_format_idc = temp2 & 0x3;
73
313
        int bit_depth_minus8 = (bytestream2_get_byte(&gb) >> 5) & 0x7;
74
313
        av_log(ctx, AV_LOG_DEBUG,
75
313
               "bit_depth_minus8 %d chroma_format_idc %d\n", bit_depth_minus8,
76
313
               chroma_format_idc);
77
313
        av_log(ctx, AV_LOG_DEBUG, "constant_frame_rate %d, ols_idx %d\n",
78
313
               constant_frame_rate, ols_idx);
79
        // VvcPTLRecord(num_sublayers) native_ptl
80
313
        temp3 = bytestream2_get_byte(&gb);
81
313
        num_bytes_constraint_info = (temp3) & 0x3f;
82
313
        temp4 = bytestream2_get_byte(&gb);
83
313
        general_profile_idc = (temp4 >> 1) & 0x7f;
84
313
        general_tier_flag = (temp4) & 1;
85
313
        general_level_idc = bytestream2_get_byte(&gb);
86
313
        av_log(ctx, AV_LOG_DEBUG,
87
313
               "general_profile_idc %d, general_tier_flag %d, general_level_idc %d, num_sublayers %d num_bytes_constraint_info %d\n",
88
313
               general_profile_idc, general_tier_flag, general_level_idc,
89
313
               num_sublayers, num_bytes_constraint_info);
90
91
313
        temp5 = bytestream2_get_byte(&gb);
92
313
        ptl_frame_only_constraint_flag = (temp5 >> 7) & 0x1;
93
313
        ptl_multi_layer_enabled_flag   = (temp5 >> 6) & 0x1;
94
8.39k
        for (i = 0; i < num_bytes_constraint_info - 1; i++) {
95
            // unsigned int(8*num_bytes_constraint_info - 2) general_constraint_info;
96
8.08k
            bytestream2_get_byte(&gb);
97
8.08k
        }
98
99
313
        av_log(ctx, AV_LOG_DEBUG,
100
313
               "ptl_multi_layer_enabled_flag %d, ptl_frame_only_constraint_flag %d\n",
101
313
               ptl_multi_layer_enabled_flag, ptl_frame_only_constraint_flag);
102
103
313
        if (num_sublayers > 1) {
104
200
            int temp6 = bytestream2_get_byte(&gb);
105
200
            uint8_t ptl_sublayer_level_present_flag[8] = { 0 };
106
            //uint8_t sublayer_level_idc[8] = {0};
107
986
            for (i = num_sublayers - 2; i >= 0; i--) {
108
786
                ptl_sublayer_level_present_flag[i] =
109
786
                    (temp6 >> (7 - (num_sublayers - 2 - i))) & 0x01;
110
786
            }
111
            // for (j=num_sublayers; j<=8 && num_sublayers > 1; j++)
112
            //     bit(1) ptl_reserved_zero_bit = 0;
113
986
            for (i = num_sublayers - 2; i >= 0; i--) {
114
786
                if (ptl_sublayer_level_present_flag[i]) {
115
                    //sublayer_level_idc[i] = bytestream2_get_byte(&gb);
116
210
                }
117
786
            }
118
200
        }
119
120
313
        ptl_num_sub_profiles = bytestream2_get_byte(&gb);
121
19.7k
        for (j = 0; j < ptl_num_sub_profiles; j++) {
122
            // unsigned int(32) general_sub_profile_idc[j];
123
19.3k
            bytestream2_get_be16(&gb);
124
19.3k
            bytestream2_get_be16(&gb);
125
19.3k
        }
126
127
313
        max_picture_width = bytestream2_get_be16(&gb);  // unsigned_int(16) max_picture_width;
128
313
        max_picture_height = bytestream2_get_be16(&gb); // unsigned_int(16) max_picture_height;
129
313
        avg_frame_rate = bytestream2_get_be16(&gb);     // unsigned int(16) avg_frame_rate; }
130
313
        av_log(ctx, AV_LOG_DEBUG,
131
313
               "max_picture_width %d, max_picture_height %d, avg_frame_rate %d\n",
132
313
               max_picture_width, max_picture_height, avg_frame_rate);
133
313
    }
134
135
566
    num_arrays = bytestream2_get_byte(&gb);
136
137
2.33k
    for (i = 0; i < num_arrays; i++) {
138
1.96k
        int cnt;
139
1.96k
        int type = bytestream2_get_byte(&gb) & 0x1f;
140
141
1.96k
        if (type == VVC_OPI_NUT || type == VVC_DCI_NUT)
142
1.14k
            cnt = 1;
143
817
        else
144
817
            cnt = bytestream2_get_be16(&gb);
145
146
1.96k
        av_log(ctx, AV_LOG_DEBUG, "nalu_type %d cnt %d\n", type, cnt);
147
148
1.96k
        if (!(type == VVC_OPI_NUT || type == VVC_DCI_NUT ||
149
817
              type == VVC_VPS_NUT || type == VVC_SPS_NUT || type == VVC_PPS_NUT
150
341
              || type == VVC_PREFIX_SEI_NUT || type == VVC_SUFFIX_SEI_NUT)) {
151
93
            av_log(ctx, AV_LOG_ERROR,
152
93
                   "Invalid NAL unit type in extradata: %d\n", type);
153
93
            ret = AVERROR_INVALIDDATA;
154
93
            goto fail;
155
93
        }
156
157
3.89k
        for (j = 0; j < cnt; j++) {
158
2.12k
            const int nalu_len = bytestream2_get_be16(&gb);
159
160
2.12k
            if (!nalu_len ||
161
2.10k
                nalu_len > bytestream2_get_bytes_left(&gb) ||
162
2.02k
                4 + AV_INPUT_BUFFER_PADDING_SIZE + nalu_len > SIZE_MAX - new_extradata_size) {
163
97
                ret = AVERROR_INVALIDDATA;
164
97
                goto fail;
165
97
            }
166
2.02k
            ret = av_reallocp(&new_extradata, new_extradata_size + nalu_len + 4
167
2.02k
                              + AV_INPUT_BUFFER_PADDING_SIZE);
168
2.02k
            if (ret < 0)
169
0
                goto fail;
170
171
2.02k
            AV_WB32(new_extradata + new_extradata_size, 1); // add the startcode
172
2.02k
            bytestream2_get_buffer(&gb, new_extradata + new_extradata_size + 4,
173
2.02k
                                   nalu_len);
174
2.02k
            new_extradata_size += 4 + nalu_len;
175
2.02k
            memset(new_extradata + new_extradata_size, 0,
176
2.02k
                   AV_INPUT_BUFFER_PADDING_SIZE);
177
2.02k
        }
178
1.86k
    }
179
180
376
    av_freep(&ctx->par_out->extradata);
181
376
    ctx->par_out->extradata = new_extradata;
182
376
    ctx->par_out->extradata_size = new_extradata_size;
183
184
376
    if (!new_extradata_size)
185
323
        av_log(ctx, AV_LOG_WARNING, "No parameter sets in the extradata\n");
186
187
376
    return length_size;
188
190
  fail:
189
190
    av_freep(&new_extradata);
190
190
    return ret;
191
566
}
192
193
static int vvc_mp4toannexb_init(AVBSFContext *ctx)
194
760
{
195
760
    VVCBSFContext *s = ctx->priv_data;
196
760
    int ret;
197
198
760
    if (ctx->par_in->extradata_size < MIN_VVCC_LENGTH ||
199
568
        AV_RB24(ctx->par_in->extradata) == 1 ||
200
567
        AV_RB32(ctx->par_in->extradata) == 1) {
201
194
        av_log(ctx, AV_LOG_VERBOSE,
202
194
               "The input looks like it is Annex B already\n");
203
566
    } else {
204
566
        ret = vvc_extradata_to_annexb(ctx);
205
566
        if (ret < 0)
206
190
            return ret;
207
376
        s->length_size = ret;
208
376
        s->extradata_parsed = 1;
209
376
    }
210
211
570
    return 0;
212
760
}
213
214
static int vvc_mp4toannexb_filter(AVBSFContext *ctx, AVPacket *out)
215
30.3k
{
216
30.3k
    VVCBSFContext *s = ctx->priv_data;
217
30.3k
    AVPacket *in;
218
30.3k
    GetByteContext gb;
219
220
30.3k
    int is_irap = 0;
221
30.3k
    int added_extra = 0;
222
30.3k
    int i, ret = 0;
223
224
30.3k
    ret = ff_bsf_get_packet(ctx, &in);
225
30.3k
    if (ret < 0)
226
9.85k
        return ret;
227
228
20.4k
    if (!s->extradata_parsed) {
229
4.38k
        av_packet_move_ref(out, in);
230
4.38k
        av_packet_free(&in);
231
4.38k
        return 0;
232
4.38k
    }
233
234
16.1k
    bytestream2_init(&gb, in->data, in->size);
235
236
    /* check if this packet contains an IRAP. The extradata will need to be added before any potential PH_NUT */
237
108k
    while (bytestream2_get_bytes_left(&gb)) {
238
103k
        uint32_t nalu_size = 0;
239
103k
        int nalu_type;
240
241
103k
        if (bytestream2_get_bytes_left(&gb) < s->length_size) {
242
1.35k
            ret = AVERROR_INVALIDDATA;
243
1.35k
            goto fail;
244
1.35k
        }
245
246
211k
        for (i = 0; i < s->length_size; i++)
247
109k
            nalu_size = (nalu_size << 8) | bytestream2_get_byte(&gb);
248
249
102k
        if (nalu_size < 2 || nalu_size > bytestream2_get_bytes_left(&gb)) {
250
7.63k
            ret = AVERROR_INVALIDDATA;
251
7.63k
            goto fail;
252
7.63k
        }
253
254
94.5k
        nalu_type = (bytestream2_peek_be16(&gb) >> 3) & 0x1f;
255
94.5k
        is_irap = nalu_type >= VVC_IDR_W_RADL && nalu_type <= VVC_RSV_IRAP_11;
256
94.5k
        if (is_irap) {
257
2.63k
            break;
258
2.63k
        }
259
91.9k
        bytestream2_seek(&gb, nalu_size, SEEK_CUR);
260
91.9k
    }
261
262
7.11k
    bytestream2_seek(&gb, 0, SEEK_SET);
263
465k
    while (bytestream2_get_bytes_left(&gb)) {
264
460k
        uint32_t nalu_size = 0;
265
460k
        int nalu_type;
266
460k
        int add_extradata, extra_size, prev_size;
267
268
460k
        if (bytestream2_get_bytes_left(&gb) < s->length_size) {
269
244
            ret = AVERROR_INVALIDDATA;
270
244
            goto fail;
271
244
        }
272
273
923k
        for (i = 0; i < s->length_size; i++)
274
463k
            nalu_size = (nalu_size << 8) | bytestream2_get_byte(&gb);
275
276
460k
        if (nalu_size < 2 || nalu_size > bytestream2_get_bytes_left(&gb)) {
277
1.97k
            ret = AVERROR_INVALIDDATA;
278
1.97k
            goto fail;
279
1.97k
        }
280
281
458k
        nalu_type = (bytestream2_peek_be16(&gb) >> 3) & 0x1f;
282
283
        /* prepend extradata to IRAP frames */
284
458k
        add_extradata = is_irap && nalu_type != VVC_AUD_NUT && !added_extra;
285
458k
        extra_size = add_extradata * ctx->par_out->extradata_size;
286
458k
        added_extra |= add_extradata;
287
288
458k
        if (FFMIN(INT_MAX, SIZE_MAX) < 4ULL + nalu_size + extra_size) {
289
0
            ret = AVERROR_INVALIDDATA;
290
0
            goto fail;
291
0
        }
292
293
458k
        prev_size = out->size;
294
295
458k
        ret = av_grow_packet(out, 4 + nalu_size + extra_size);
296
458k
        if (ret < 0)
297
0
            goto fail;
298
299
458k
        if (extra_size)
300
739
            memcpy(out->data + prev_size, ctx->par_out->extradata, extra_size);
301
458k
        AV_WB32(out->data + prev_size + extra_size, 1);
302
458k
        bytestream2_get_buffer(&gb, out->data + prev_size + 4 + extra_size,
303
458k
                               nalu_size);
304
458k
    }
305
306
4.89k
    ret = av_packet_copy_props(out, in);
307
4.89k
    if (ret < 0)
308
0
        goto fail;
309
310
16.1k
  fail:
311
16.1k
    if (ret < 0)
312
11.2k
        av_packet_unref(out);
313
16.1k
    av_packet_free(&in);
314
315
16.1k
    return ret;
316
4.89k
}
317
318
static const enum AVCodecID codec_ids[] = {
319
    AV_CODEC_ID_VVC, AV_CODEC_ID_NONE,
320
};
321
322
const FFBitStreamFilter ff_vvc_mp4toannexb_bsf = {
323
    .p.name         = "vvc_mp4toannexb",
324
    .p.codec_ids    = codec_ids,
325
    .priv_data_size = sizeof(VVCBSFContext),
326
    .init           = vvc_mp4toannexb_init,
327
    .filter         = vvc_mp4toannexb_filter,
328
};