FFmpeg
Loading...
Searching...
No Matches
apac.c
Go to the documentation of this file.
1/*
2 * APAC demuxer
3 * Copyright (c) 2022 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
23#include "avformat.h"
24#include "demux.h"
25#include "internal.h"
26#include "rawdec.h"
27
28static int apac_probe(const AVProbeData *p)
29{
30 if (AV_RB32(p->buf) == MKBETAG('A','P','A','C') &&
31 AV_RB32(p->buf + 8) == MKBETAG('P','R','O','F') &&
32 AV_RB32(p->buf + 12) == MKBETAG('N','A','D',' '))
33 return AVPROBE_SCORE_MAX;
34
35 return 0;
36}
37
39{
40 AVIOContext *pb = s->pb;
41 uint32_t chunk_size;
42 AVStream *st;
44
45 avio_skip(pb, 16);
46 chunk_size = avio_rl32(pb);
47 avio_skip(pb, chunk_size);
48 if (avio_rb32(pb) != MKBETAG('P','F','M','T'))
50 chunk_size = avio_rl32(pb);
51 pos = avio_tell(pb);
52 avio_skip(pb, 2);
54 if (!st)
55 return AVERROR(ENOMEM);
60 if (st->codecpar->ch_layout.nb_channels <= 0 ||
62 st->codecpar->sample_rate <= 0)
64 avio_skip(pb, 2);
67 avio_skip(pb, (chunk_size + pos) - avio_tell(pb) + (chunk_size & 1));
68 if (avio_rb32(pb) != MKBETAG('P','A','D',' '))
70 avio_skip(pb, 4);
71
72 return 0;
73}
74
76 .p.name = "apac",
77 .p.long_name = NULL_IF_CONFIG_SMALL("raw APAC"),
78 .p.extensions = "apc",
80 .p.priv_class = &ff_raw_demuxer_class,
81 .read_probe = apac_probe,
82 .read_header = apac_read_header,
83 .read_packet = ff_raw_read_partial_packet,
84 .raw_codec_id = AV_CODEC_ID_APAC,
85 .priv_data_size = sizeof(FFRawDemuxerContext),
86};
const FFInputFormat ff_apac_demuxer
Definition apac.c:75
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_NO_BYTE_SEEK
Format does not allow seeking by bytes.
Definition avformat.h:506
#define AVFMT_NOGENSEARCH
Format does not allow to fall back on generic search.
Definition avformat.h:505
#define AVFMT_NOBINSEARCH
Format does not allow to fall back on binary search via read_timestamp.
Definition avformat.h:504
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition avformat.h:498
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
unsigned int avio_rl16(AVIOContext *s)
Definition aviobuf.c:717
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 s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
@ AV_CODEC_ID_APAC
Definition codec_id.h:552
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
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_RB32(p)
static int apac_read_header(AVFormatContext *s)
Definition apac.c:38
static int apac_probe(const AVProbeData *p)
Definition apac.c:28
const AVClass ff_raw_demuxer_class
Definition rawdec.c:141
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition rawdec.c:33
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define MKBETAG(a, b, c, d)
Definition macros.h:56
unsigned int pos
Definition spdifenc.c:431
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
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
Bytestream IO Context.
Definition avio.h:160
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