aea.c
Go to the documentation of this file.
1 /*
2  * MD STUDIO audio demuxer
3  *
4  * Copyright (c) 2009 Benjamin Larsson
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
24 #include "libavutil/intreadwrite.h"
25 #include "avformat.h"
26 #include "pcm.h"
27 
28 #define AT1_SU_SIZE 212
29 
31 {
32  if (p->buf_size <= 2048+212)
33  return 0;
34 
35  /* Magic is '00 08 00 00' in Little Endian*/
36  if (AV_RL32(p->buf)==0x800) {
37  int bsm_s, bsm_e, inb_s, inb_e, ch;
38  ch = p->buf[264];
39  bsm_s = p->buf[2048];
40  inb_s = p->buf[2048+1];
41  inb_e = p->buf[2048+210];
42  bsm_e = p->buf[2048+211];
43 
44  if (ch != 1 && ch != 2)
45  return 0;
46 
47  /* Check so that the redundant bsm bytes and info bytes are valid
48  * the block size mode bytes have to be the same
49  * the info bytes have to be the same
50  */
51  if (bsm_s == bsm_e && inb_s == inb_e)
52  return AVPROBE_SCORE_MAX / 4 + 1;
53  }
54  return 0;
55 }
56 
58 {
60  if (!st)
61  return AVERROR(ENOMEM);
62 
63  /* Parse the amount of channels and skip to pos 2048(0x800) */
64  avio_skip(s->pb, 264);
65  st->codec->channels = avio_r8(s->pb);
66  avio_skip(s->pb, 1783);
67 
68 
71  st->codec->sample_rate = 44100;
72  st->codec->bit_rate = 292000;
73 
74  if (st->codec->channels != 1 && st->codec->channels != 2) {
75  av_log(s,AV_LOG_ERROR,"Channels %d not supported!\n",st->codec->channels);
76  return -1;
77  }
78 
80 
82  return 0;
83 }
84 
86 {
87  int ret = av_get_packet(s->pb, pkt, s->streams[0]->codec->block_align);
88 
89  pkt->stream_index = 0;
90  if (ret <= 0)
91  return AVERROR(EIO);
92 
93  return ret;
94 }
95 
97  .name = "aea",
98  .long_name = NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
99  .read_probe = aea_read_probe,
100  .read_header = aea_read_header,
101  .read_packet = aea_read_packet,
102  .read_seek = ff_pcm_read_seek,
103  .flags = AVFMT_GENERIC_INDEX,
104  .extensions = "aea",
105 };
const char * s
Definition: avisynth_c.h:668
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:256
#define AV_CH_LAYOUT_STEREO
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
Format I/O context.
Definition: avformat.h:944
static AVPacket pkt
Definition: demuxing.c:56
AVInputFormat ff_aea_demuxer
Definition: aea.c:96
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
AVStream ** streams
Definition: avformat.h:992
static int aea_read_header(AVFormatContext *s)
Definition: aea.c:57
static int aea_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aea.c:85
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
uint64_t channel_layout
Audio channel layout.
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:469
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:337
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:336
int bit_rate
the average bitrate
audio channel layout utility functions
ret
Definition: avfilter.c:821
static int aea_read_probe(AVProbeData *p)
Definition: aea.c:30
#define AV_RL32
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
#define AT1_SU_SIZE
Definition: aea.c:28
Stream structure.
Definition: avformat.h:643
NULL
Definition: eval.c:55
enum AVMediaType codec_type
enum AVCodecID codec_id
int sample_rate
samples per second
AVIOContext * pb
I/O context.
Definition: avformat.h:977
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:353
This structure contains the data a format has to probe a file.
Definition: avformat.h:334
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
#define AVPROBE_SCORE_MAX
maximum score, half of that is used for file-extension-based detection
Definition: avformat.h:340
Main libavformat public API header.
int channels
number of audio channels
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:461
#define AV_CH_LAYOUT_MONO
This structure stores compressed data.