FFmpeg
Loading...
Searching...
No Matches
nistspheredec.c
Go to the documentation of this file.
1/*
2 * NIST Sphere demuxer
3 * Copyright (c) 2012 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 nist_probe(const AVProbeData *p)
30{
31 if (AV_RL64(p->buf) == AV_RL64("NIST_1A\x0a"))
32 return AVPROBE_SCORE_MAX;
33 return 0;
34}
35
37{
38 char buffer[256]= {0}, coding[32] = "pcm", format[32] = "01";
39 int bps = 0, be = 0;
40 int32_t header_size = -1;
41 AVStream *st;
42
44 if (!st)
45 return AVERROR(ENOMEM);
46
48
49 ff_get_line(s->pb, buffer, sizeof(buffer));
50 ff_get_line(s->pb, buffer, sizeof(buffer));
51 sscanf(buffer, "%"SCNd32, &header_size);
52 if (header_size <= 0)
54
55 while (!avio_feof(s->pb)) {
56 ff_get_line(s->pb, buffer, sizeof(buffer));
57
58 if (avio_tell(s->pb) >= header_size)
60
61 if (!memcmp(buffer, "end_head", 8)) {
64
65 if (!av_strcasecmp(coding, "pcm")) {
68 0, be, 0xFFFF);
69 } else if (!av_strcasecmp(coding, "alaw")) {
71 } else if (!av_strcasecmp(coding, "ulaw") ||
72 !av_strcasecmp(coding, "mu-law")) {
74 } else if (!av_strncasecmp(coding, "pcm,embedded-shorten", 20)) {
76 if (ff_alloc_extradata(st->codecpar, 1))
77 st->codecpar->extradata[0] = 1;
78 } else {
79 avpriv_request_sample(s, "coding %s", coding);
80 }
81
83
86
87 if (avio_tell(s->pb) > header_size)
89
90 avio_skip(s->pb, header_size - avio_tell(s->pb));
91
92 return 0;
93 } else if (!memcmp(buffer, "channel_count", 13)) {
94 sscanf(buffer, "%*s %*s %u", &st->codecpar->ch_layout.nb_channels);
95 if (st->codecpar->ch_layout.nb_channels <= 0 || st->codecpar->ch_layout.nb_channels > INT16_MAX)
97 } else if (!memcmp(buffer, "sample_byte_format", 18)) {
98 sscanf(buffer, "%*s %*s %31s", format);
99
100 if (!av_strcasecmp(format, "01")) {
101 be = 0;
102 } else if (!av_strcasecmp(format, "10")) {
103 be = 1;
104 } else if (!av_strcasecmp(format, "mu-law")) {
106 } else if (av_strcasecmp(format, "1")) {
107 avpriv_request_sample(s, "sample byte format %s", format);
109 }
110 } else if (!memcmp(buffer, "sample_coding", 13)) {
111 sscanf(buffer, "%*s %*s %31s", coding);
112 } else if (!memcmp(buffer, "sample_count", 12)) {
113 sscanf(buffer, "%*s %*s %"SCNd64, &st->duration);
114 } else if (!memcmp(buffer, "sample_n_bytes", 14)) {
115 sscanf(buffer, "%*s %*s %d", &bps);
116 if (bps > INT16_MAX/8U)
117 return AVERROR_INVALIDDATA;
118 } else if (!memcmp(buffer, "sample_rate", 11)) {
119 sscanf(buffer, "%*s %*s %d", &st->codecpar->sample_rate);
120 } else if (!memcmp(buffer, "sample_sig_bits", 15)) {
121 sscanf(buffer, "%*s %*s %d", &st->codecpar->bits_per_coded_sample);
122 if (st->codecpar->bits_per_coded_sample <= 0 || st->codecpar->bits_per_coded_sample > INT16_MAX)
123 return AVERROR_INVALIDDATA;
124 } else {
125 char key[32], value[32];
126 if (sscanf(buffer, "%31s %*s %31s", key, value) == 2) {
127 av_dict_set(&s->metadata, key, value, AV_DICT_APPEND);
128 } else {
129 av_log(s, AV_LOG_ERROR, "Failed to parse '%s' as metadata\n", buffer);
130 }
131 }
132 }
133
134 return AVERROR_EOF;
135}
136
138 .p.name = "nistsphere",
139 .p.long_name = NULL_IF_CONFIG_SMALL("NIST SPeech HEader REsources"),
140 .p.extensions = "nist,sph",
141 .p.flags = AVFMT_GENERIC_INDEX,
142 .read_probe = nist_probe,
143 .read_header = nist_read_header,
144 .read_packet = ff_pcm_read_packet,
145 .read_seek = ff_pcm_read_seek,
146};
static const char *const format[]
Definition af_aiir.c:444
const FFInputFormat ff_nistsphere_demuxer
int32_t
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
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
int ff_get_line(AVIOContext *s, char *buf, int maxlen)
Read a whole line of text from AVIOContext.
Definition aviobuf.c:772
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
double value
Definition eval.c:102
const char * key
@ AV_CODEC_ID_SHORTEN
Definition codec_id.h:468
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_PCM_ALAW
Definition codec_id.h:337
@ AV_CODEC_ID_PCM_MULAW
Definition codec_id.h:336
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AV_DICT_APPEND
If the entry already exists, append to it.
Definition dict.h:82
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_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition avstring.c:208
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
Definition avstring.c:218
#define AV_RL64(p)
enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags)
Select a PCM codec based on the given parameters.
Definition utils.c:154
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition utils.c:237
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
unsigned bps
Definition movenc.c:2074
static int nist_probe(const AVProbeData *p)
static int nist_read_header(AVFormatContext *s)
int nb_channels
Number of channels in this layout.
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
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
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
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
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825
#define avpriv_request_sample(...)
#define av_log(a,...)
static char buffer[20]
Definition seek.c:32