/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 | 936k | { |
31 | 936k | if (AV_RB32(p->buf) == AV_RB32("FORM") && |
32 | 10.7k | AV_RB32(p->buf + 4) == AV_RB32("DS16")) |
33 | 16 | return AVPROBE_SCORE_MAX; |
34 | 936k | return 0; |
35 | 936k | } |
36 | | |
37 | | static int nsp_read_header(AVFormatContext *s) |
38 | 2.46k | { |
39 | 2.46k | int channels = 0, rate = 0; |
40 | 2.46k | uint32_t chunk, size; |
41 | 2.46k | AVStream *st; |
42 | 2.46k | int64_t pos; |
43 | | |
44 | 2.46k | avio_skip(s->pb, 12); |
45 | 2.46k | st = avformat_new_stream(s, NULL); |
46 | 2.46k | if (!st) |
47 | 0 | return AVERROR(ENOMEM); |
48 | | |
49 | 1.94M | while (!avio_feof(s->pb)) { |
50 | 1.93M | char value[1024]; |
51 | | |
52 | 1.93M | chunk = avio_rb32(s->pb); |
53 | 1.93M | size = avio_rl32(s->pb); |
54 | 1.93M | pos = avio_tell(s->pb); |
55 | | |
56 | 1.93M | switch (chunk) { |
57 | 1.86k | case MKBETAG('H', 'E', 'D', 'R'): |
58 | 15.7k | case MKBETAG('H', 'D', 'R', '8'): |
59 | 15.7k | if (size < 32) |
60 | 24 | return AVERROR_INVALIDDATA; |
61 | 15.7k | avio_skip(s->pb, 20); |
62 | 15.7k | rate = avio_rl32(s->pb); |
63 | 15.7k | avio_skip(s->pb, size - (avio_tell(s->pb) - pos)); |
64 | 15.7k | break; |
65 | 4.30k | case MKBETAG('N', 'O', 'T', 'E'): |
66 | 4.30k | avio_get_str(s->pb, size, value, sizeof(value)); |
67 | 4.30k | av_dict_set(&s->metadata, "Comment", value, 0); |
68 | 4.30k | avio_skip(s->pb, size & 1); |
69 | 4.30k | break; |
70 | 77 | case MKBETAG('S', 'D', 'A', 'B'): |
71 | 77 | channels = 2; |
72 | 77 | break; |
73 | 396 | case MKBETAG('S', 'D', '_', '2'): |
74 | 708 | case MKBETAG('S', 'D', '_', '3'): |
75 | 946 | case MKBETAG('S', 'D', '_', '4'): |
76 | 1.10k | case MKBETAG('S', 'D', '_', '5'): |
77 | 1.17k | case MKBETAG('S', 'D', '_', '6'): |
78 | 1.25k | case MKBETAG('S', 'D', '_', '7'): |
79 | 1.31k | case MKBETAG('S', 'D', '_', '8'): |
80 | 1.31k | av_log(s, AV_LOG_WARNING, "Unsupported chunk!\n"); |
81 | 1.36k | case MKBETAG('S', 'D', 'A', '_'): |
82 | 1.37k | case MKBETAG('S', 'D', '_', 'A'): |
83 | 1.37k | channels = 1; |
84 | 1.37k | break; |
85 | 1.93M | } |
86 | | |
87 | 1.93M | if (channels) |
88 | 1.45k | break; |
89 | 1.93M | } |
90 | | |
91 | 2.44k | st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; |
92 | 2.44k | st->codecpar->ch_layout.nb_channels = channels; |
93 | 2.44k | st->codecpar->sample_rate = rate; |
94 | 2.44k | st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE; |
95 | 2.44k | st->codecpar->block_align = 2 * channels; |
96 | | |
97 | 2.44k | return 0; |
98 | 2.46k | } |
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 | | }; |