Coverage Report

Created: 2026-02-14 06:59

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/ftr_parser.c
Line
Count
Source
1
/*
2
 * FTR parser
3
 * Copyright (c) 2022 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
/**
23
 * @file
24
 * FTR parser
25
 */
26
27
#include "parser.h"
28
#include "adts_header.h"
29
#include "adts_parser.h"
30
#include "mpeg4audio.h"
31
#include "parser_internal.h"
32
33
typedef struct FTRParseContext {
34
    ParseContext pc;
35
    int skip;
36
    int split;
37
    int frame_index;
38
} FTRParseContext;
39
40
static int ftr_parse(AVCodecParserContext *s, AVCodecContext *avctx,
41
                     const uint8_t **poutbuf, int *poutbuf_size,
42
                     const uint8_t *buf, int buf_size)
43
2.01k
{
44
2.01k
    uint8_t tmp[8 + AV_INPUT_BUFFER_PADDING_SIZE];
45
2.01k
    FTRParseContext *ftr = s->priv_data;
46
2.01k
    uint64_t state = ftr->pc.state64;
47
2.01k
    int next = END_NOT_FOUND;
48
2.01k
    AACADTSHeaderInfo hdr;
49
2.01k
    int size;
50
51
2.01k
    *poutbuf_size = 0;
52
2.01k
    *poutbuf = NULL;
53
54
2.01k
    if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
55
261
        next = buf_size;
56
1.75k
    } else {
57
3.59M
        for (int i = 0; i < buf_size; i++) {
58
3.59M
            if (ftr->skip > 0) {
59
2.95M
                ftr->skip--;
60
2.95M
                if (ftr->skip == 0 && ftr->split) {
61
586
                    ftr->split = 0;
62
586
                    next = i;
63
586
                    s->duration = 1024;
64
586
                    s->key_frame = 1;
65
586
                    break;
66
2.95M
                } else if (ftr->skip > 0) {
67
2.95M
                    continue;
68
2.95M
                }
69
2.95M
            }
70
71
635k
            state = (state << 8) | buf[i];
72
635k
            AV_WB64(tmp, state);
73
635k
            size = ff_adts_header_parse_buf(tmp + 8 - AV_AAC_ADTS_HEADER_SIZE, &hdr);
74
75
635k
            if (size > 0) {
76
977
                ftr->skip = size - 6;
77
977
                ftr->frame_index += ff_mpeg4audio_channels[hdr.chan_config];
78
977
                if (ftr->frame_index >= avctx->ch_layout.nb_channels) {
79
618
                    ftr->frame_index = 0;
80
618
                    ftr->split = 1;
81
618
                }
82
977
            }
83
635k
        }
84
85
1.75k
        ftr->pc.state64 = state;
86
87
1.75k
        if (ff_combine_frame(&ftr->pc, next, &buf, &buf_size) < 0) {
88
1.03k
            *poutbuf = NULL;
89
1.03k
            *poutbuf_size = 0;
90
1.03k
            return buf_size;
91
1.03k
        }
92
1.75k
    }
93
94
984
    *poutbuf      = buf;
95
984
    *poutbuf_size = buf_size;
96
97
984
    return next;
98
2.01k
}
99
100
const FFCodecParser ff_ftr_parser = {
101
    PARSER_CODEC_LIST(AV_CODEC_ID_FTR),
102
    .priv_data_size = sizeof(FTRParseContext),
103
    .parse          = ftr_parse,
104
    .close          = ff_parse_close,
105
};