Coverage Report

Created: 2026-04-01 07:42

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavformat/nspdec.c
Line
Count
Source
1
/*
2
 * NSP demuxer
3
 * Copyright (c) 2017 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/avstring.h"
23
#include "libavutil/intreadwrite.h"
24
#include "avformat.h"
25
#include "demux.h"
26
#include "internal.h"
27
#include "pcm.h"
28
29
static int nsp_probe(const AVProbeData *p)
30
959k
{
31
959k
    if (AV_RB32(p->buf) == AV_RB32("FORM") &&
32
8.87k
        AV_RB32(p->buf + 4) == AV_RB32("DS16"))
33
16
        return AVPROBE_SCORE_MAX;
34
959k
    return 0;
35
959k
}
36
37
static int nsp_read_header(AVFormatContext *s)
38
2.49k
{
39
2.49k
    int channels = 0, rate = 0;
40
2.49k
    uint32_t chunk, size;
41
2.49k
    AVStream *st;
42
2.49k
    int64_t pos;
43
44
2.49k
    avio_skip(s->pb, 12);
45
2.49k
    st = avformat_new_stream(s, NULL);
46
2.49k
    if (!st)
47
0
        return AVERROR(ENOMEM);
48
49
1.73M
    while (!avio_feof(s->pb)) {
50
1.73M
        char value[1024];
51
52
1.73M
        chunk = avio_rb32(s->pb);
53
1.73M
        size  = avio_rl32(s->pb);
54
1.73M
        pos   = avio_tell(s->pb);
55
56
1.73M
        switch (chunk) {
57
1.89k
        case MKBETAG('H', 'E', 'D', 'R'):
58
12.8k
        case MKBETAG('H', 'D', 'R', '8'):
59
12.8k
            if (size < 32)
60
24
                return AVERROR_INVALIDDATA;
61
12.8k
            avio_skip(s->pb, 20);
62
12.8k
            rate = avio_rl32(s->pb);
63
12.8k
            avio_skip(s->pb, size - (avio_tell(s->pb) - pos));
64
12.8k
            break;
65
4.74k
        case MKBETAG('N', 'O', 'T', 'E'):
66
4.74k
            avio_get_str(s->pb, size, value, sizeof(value));
67
4.74k
            av_dict_set(&s->metadata, "Comment", value, 0);
68
4.74k
            avio_skip(s->pb, size & 1);
69
4.74k
            break;
70
74
        case MKBETAG('S', 'D', 'A', 'B'):
71
74
            channels = 2;
72
74
            break;
73
403
        case MKBETAG('S', 'D', '_', '2'):
74
709
        case MKBETAG('S', 'D', '_', '3'):
75
943
        case MKBETAG('S', 'D', '_', '4'):
76
1.09k
        case MKBETAG('S', 'D', '_', '5'):
77
1.17k
        case MKBETAG('S', 'D', '_', '6'):
78
1.26k
        case MKBETAG('S', 'D', '_', '7'):
79
1.32k
        case MKBETAG('S', 'D', '_', '8'):
80
1.32k
            av_log(s, AV_LOG_WARNING, "Unsupported chunk!\n");
81
1.38k
        case MKBETAG('S', 'D', 'A', '_'):
82
1.40k
        case MKBETAG('S', 'D', '_', 'A'):
83
1.40k
            channels = 1;
84
1.40k
            break;
85
1.73M
        }
86
87
1.73M
        if (channels)
88
1.47k
            break;
89
1.73M
    }
90
91
2.47k
    st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
92
2.47k
    st->codecpar->ch_layout.nb_channels = channels;
93
2.47k
    st->codecpar->sample_rate = rate;
94
2.47k
    st->codecpar->codec_id    = AV_CODEC_ID_PCM_S16LE;
95
2.47k
    st->codecpar->block_align = 2 * channels;
96
97
2.47k
    return 0;
98
2.49k
}
99
100
const FFInputFormat ff_nsp_demuxer = {
101
    .p.name         = "nsp",
102
    .p.long_name    = NULL_IF_CONFIG_SMALL("Computerized Speech Lab NSP"),
103
    .p.extensions   = "nsp",
104
    .p.flags        = AVFMT_GENERIC_INDEX,
105
    .read_probe     = nsp_probe,
106
    .read_header    = nsp_read_header,
107
    .read_packet    = ff_pcm_read_packet,
108
    .read_seek      = ff_pcm_read_seek,
109
};