FFmpeg
Loading...
Searching...
No Matches
ircamdec.c
Go to the documentation of this file.
1/*
2 * IRCAM 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/intfloat.h"
24#include "libavcodec/internal.h"
25#include "avformat.h"
26#include "demux.h"
27#include "internal.h"
28#include "pcm.h"
29#include "ircam.h"
30
31static int ircam_probe(const AVProbeData *p)
32{
33 if ((p->buf[0] == 0x64 && p->buf[1] == 0xA3 && p->buf[3] == 0x00 &&
34 p->buf[2] >= 1 && p->buf[2] <= 4) ||
35 (p->buf[3] == 0x64 && p->buf[2] == 0xA3 && p->buf[0] == 0x00 &&
36 p->buf[1] >= 1 && p->buf[1] <= 3) &&
37 AV_RN32(p->buf + 4) && AV_RN32(p->buf + 8))
38 return AVPROBE_SCORE_MAX / 4 * 3;
39 return 0;
40}
41
42static const struct endianness {
43 uint32_t magic;
44 int is_le;
45} table[] = {
46 { 0x64A30100, 0 },
47 { 0x64A30200, 1 },
48 { 0x64A30300, 0 },
49 { 0x64A30400, 1 },
50 { 0x0001A364, 1 },
51 { 0x0002A364, 0 },
52 { 0x0003A364, 1 },
53};
54
56{
57 uint32_t magic, sample_rate, channels, tag;
58 const AVCodecTag *tags;
59 int le = -1, i;
60 AVStream *st;
61
62 magic = avio_rl32(s->pb);
63 for (i = 0; i < 7; i++) {
64 if (magic == table[i].magic) {
65 le = table[i].is_le;
66 break;
67 }
68 }
69
70 if (le == 1) {
71 sample_rate = lrintf(av_int2float(avio_rl32(s->pb)));
72 channels = avio_rl32(s->pb);
73 tag = avio_rl32(s->pb);
75 } else if (le == 0) {
76 sample_rate = lrintf(av_int2float(avio_rb32(s->pb)));
77 channels = avio_rb32(s->pb);
78 tag = avio_rb32(s->pb);
80 } else {
82 }
83
84 if (!channels || !sample_rate)
86
88 if (!st)
89 return AVERROR(ENOMEM);
90
94 return AVERROR(ENOSYS);
95 st->codecpar->sample_rate = sample_rate;
96
99 av_log(s, AV_LOG_ERROR, "unknown tag %"PRIx32"\n", tag);
100 return AVERROR_INVALIDDATA;
101 }
102
107 avio_skip(s->pb, 1008);
108
109 return 0;
110}
111
113 .p.name = "ircam",
114 .p.long_name = NULL_IF_CONFIG_SMALL("Berkeley/IRCAM/CARL Sound Format"),
115 .p.extensions = "sf,ircam",
116 .p.flags = AVFMT_GENERIC_INDEX,
117 .read_probe = ircam_probe,
118 .read_header = ircam_read_header,
119 .read_packet = ff_pcm_read_packet,
120 .read_seek = ff_pcm_read_seek,
121};
const FFInputFormat ff_ircam_demuxer
Definition ircamdec.c:112
channels
Definition aptx.h:31
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
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
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition utils.c:556
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#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
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition intfloat.h:40
#define AV_RN32(p)
const AVCodecTag ff_codec_ircam_be_tags[]
Definition ircam.c:37
const AVCodecTag ff_codec_ircam_le_tags[]
Definition ircam.c:25
static int ircam_read_header(AVFormatContext *s)
Definition ircamdec.c:55
static int ircam_probe(const AVProbeData *p)
Definition ircamdec.c:31
common internal api header.
#define FF_SANE_NB_CHANNELS
Definition internal.h:37
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition utils.c:143
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 lrintf(x)
Definition libm_mips.h:72
uint32_t tag
Definition movenc.c:2073
static const uint16_t table[]
Definition prosumer.c:203
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
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
int is_le
Definition ircamdec.c:44
uint32_t magic
Definition ircamdec.c:43
#define av_log(a,...)