2 * Copyright (c) 2015 Paul B Mahol
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 static int wve_probe(const AVProbeData
*p
)
28 if (memcmp(p
->buf
, "ALawSoundFile**\0\017\020", 18) ||
29 memcmp(p
->buf
+ 22, "\0\0\0\1\0\0\0\0\0\0", 10))
31 return AVPROBE_SCORE_MAX
;
34 static int wve_read_header(AVFormatContext
*s
)
38 st
= avformat_new_stream(s
, NULL
);
40 return AVERROR(ENOMEM
);
43 st
->duration
= avio_rb32(s
->pb
);
44 st
->codecpar
->codec_type
= AVMEDIA_TYPE_AUDIO
;
45 st
->codecpar
->codec_id
= AV_CODEC_ID_PCM_ALAW
;
46 st
->codecpar
->sample_rate
= 8000;
47 st
->codecpar
->ch_layout
.nb_channels
= 1;
48 st
->codecpar
->bits_per_coded_sample
= 8;
49 st
->codecpar
->block_align
= st
->codecpar
->bits_per_coded_sample
*
50 st
->codecpar
->ch_layout
.nb_channels
/ 8;
51 avpriv_set_pts_info(st
, 64, 1, st
->codecpar
->sample_rate
);
57 const FFInputFormat ff_wve_demuxer
= {
59 .p
.long_name
= NULL_IF_CONFIG_SMALL("Psion 3 audio"),
60 .read_probe
= wve_probe
,
61 .read_header
= wve_read_header
,
62 .read_packet
= ff_pcm_read_packet
,
63 .read_seek
= ff_pcm_read_seek
,