FFmpeg
Loading...
Searching...
No Matches
nspdec.c
Go to the documentation of this file.
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"
24#include "avformat.h"
25#include "demux.h"
26#include "internal.h"
27#include "pcm.h"
28
29static int nsp_probe(const AVProbeData *p)
30{
31 if (AV_RB32(p->buf) == AV_RB32("FORM") &&
32 AV_RB32(p->buf + 4) == AV_RB32("DS16"))
33 return AVPROBE_SCORE_MAX;
34 return 0;
35}
36
38{
39 int channels = 0, rate = 0;
40 uint32_t chunk, size;
41 AVStream *st;
43
44 avio_skip(s->pb, 12);
46 if (!st)
47 return AVERROR(ENOMEM);
48
49 while (!avio_feof(s->pb)) {
50 char value[1024];
51
52 chunk = avio_rb32(s->pb);
53 size = avio_rl32(s->pb);
54 pos = avio_tell(s->pb);
55
56 switch (chunk) {
57 case MKBETAG('H', 'E', 'D', 'R'):
58 case MKBETAG('H', 'D', 'R', '8'):
59 if (size < 32)
61 avio_skip(s->pb, 20);
62 rate = avio_rl32(s->pb);
63 avio_skip(s->pb, size - (avio_tell(s->pb) - pos));
64 break;
65 case MKBETAG('N', 'O', 'T', 'E'):
66 avio_get_str(s->pb, size, value, sizeof(value));
67 av_dict_set(&s->metadata, "Comment", value, 0);
68 avio_skip(s->pb, size & 1);
69 break;
70 case MKBETAG('S', 'D', 'A', 'B'):
71 channels = 2;
72 break;
73 case MKBETAG('S', 'D', '_', '2'):
74 case MKBETAG('S', 'D', '_', '3'):
75 case MKBETAG('S', 'D', '_', '4'):
76 case MKBETAG('S', 'D', '_', '5'):
77 case MKBETAG('S', 'D', '_', '6'):
78 case MKBETAG('S', 'D', '_', '7'):
79 case MKBETAG('S', 'D', '_', '8'):
80 av_log(s, AV_LOG_WARNING, "Unsupported chunk!\n");
81 case MKBETAG('S', 'D', 'A', '_'):
82 case MKBETAG('S', 'D', '_', 'A'):
83 channels = 1;
84 break;
85 }
86
87 if (channels)
88 break;
89 }
90
93 st->codecpar->sample_rate = rate;
95 st->codecpar->block_align = 2 * channels;
96
97 return 0;
98}
99
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};
const FFInputFormat ff_nsp_demuxer
Definition nspdec.c:100
channels
Definition aptx.h:31
Main libavformat public API header.
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a string from pb into buf.
Definition aviobuf.c:869
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
double value
Definition eval.c:102
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition dict.c:86
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_RB32(p)
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition pcm.c:57
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition pcm.c:73
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define MKBETAG(a, b, c, d)
Definition macros.h:56
static int nsp_probe(const AVProbeData *p)
Definition nspdec.c:29
static int nsp_read_header(AVFormatContext *s)
Definition nspdec.c:37
unsigned int pos
Definition spdifenc.c:431
int nb_channels
Number of channels in this layout.
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
#define av_log(a,...)
int size