FFmpeg
aeadec.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 "avio_internal.h"
27 #include "demux.h"
28 #include "internal.h"
29 #include "pcm.h"
30 
31 #define AT1_SU_SIZE 212
32 
33 static int aea_read_probe(const AVProbeData *p)
34 {
35  if (p->buf_size <= 2048+AT1_SU_SIZE)
36  return 0;
37 
38  /* Magic is '00 08 00 00' in little-endian*/
39  if (AV_RL32(p->buf)==0x800) {
40  int ch, block_size, score = 0;
41  ch = p->buf[264];
42 
43  if (ch != 1 && ch != 2)
44  return 0;
45 
46  block_size = ch * AT1_SU_SIZE;
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  for (int i = 2048 + block_size; i + block_size <= p->buf_size; i += block_size) {
52  if (AV_RN16(p->buf+i) != AV_RN16(p->buf+i+AT1_SU_SIZE))
53  return 0;
54  score++;
55  }
56  return FFMIN(AVPROBE_SCORE_MAX / 4 + score, AVPROBE_SCORE_MAX);
57  }
58  return 0;
59 }
60 
62 {
64  char title[256 + 1];
65  int channels, ret;
66  if (!st)
67  return AVERROR(ENOMEM);
68 
69  /* Read the title, parse the number of channels and skip to pos 2048(0x800) */
70  avio_rl32(s->pb); // magic
71  ret = ffio_read_size(s->pb, title, sizeof(title) - 1);
72  if (ret < 0)
73  return ret;
74  title[sizeof(title) - 1] = '\0';
75  if (title[0] != '\0')
76  av_dict_set(&st->metadata, "title", title, 0);
77  avio_rl32(s->pb); // Block count
78  channels = avio_r8(s->pb);
79  avio_skip(s->pb, 1783);
80 
81 
84  st->codecpar->sample_rate = 44100;
85  st->codecpar->bit_rate = 146000 * channels;
86 
87  if (channels != 1 && channels != 2) {
88  av_log(s, AV_LOG_ERROR, "Channels %d not supported!\n", channels);
89  return AVERROR_INVALIDDATA;
90  }
91 
93 
95  avpriv_set_pts_info(st, 64, 1, 44100);
96  return 0;
97 }
98 
100 {
101  return av_get_packet(s->pb, pkt, s->streams[0]->codecpar->block_align);
102 }
103 
105  .p.name = "aea",
106  .p.long_name = NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
107  .p.flags = AVFMT_GENERIC_INDEX,
108  .p.extensions = "aea",
109  .read_probe = aea_read_probe,
110  .read_header = aea_read_header,
111  .read_packet = aea_read_packet,
112  .read_seek = ff_pcm_read_seek,
113 };
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame 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. Frame references ownership and permissions
pcm.h
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AV_RN16
#define AV_RN16(p)
Definition: intreadwrite.h:358
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:454
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:313
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:463
avpriv_set_pts_info
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:853
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
aea_read_packet
static int aea_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aeadec.c:99
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AT1_SU_SIZE
#define AT1_SU_SIZE
Definition: aeadec.c:31
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:553
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:453
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
aea_read_header
static int aea_read_header(AVFormatContext *s)
Definition: aeadec.c:61
channels
channels
Definition: aptx.h:31
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:766
NULL
#define NULL
Definition: coverity.c:32
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
AVStream::metadata
AVDictionary * metadata
Definition: avformat.h:823
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:730
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:41
aea_read_probe
static int aea_read_probe(const AVProbeData *p)
Definition: aeadec.c:33
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:603
av_channel_layout_default
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
Definition: channel_layout.c:831
AV_CODEC_ID_ATRAC1
@ AV_CODEC_ID_ATRAC1
Definition: codec_id.h:486
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
avio_internal.h
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:191
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
ff_aea_demuxer
const FFInputFormat ff_aea_demuxer
Definition: aeadec.c:104
demux.h
av_get_packet
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.
Definition: utils.c:104
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:743
ff_pcm_read_seek
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:73
avformat.h
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
channel_layout.h
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:318
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:501
av_dict_set
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:88
FFInputFormat
Definition: demux.h:37
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:97
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
ffio_read_size
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:662