FFmpeg
Loading...
Searching...
No Matches
qoadec.c
Go to the documentation of this file.
1/*
2 * QOA demuxer
3 *
4 * This file is part of FFmpeg.
5 *
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.
10 *
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.
15 *
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
19 */
20
21#include "avformat.h"
22#include "avio_internal.h"
23#include "demux.h"
24#include "internal.h"
26
27static int qoa_probe(const AVProbeData *p)
28{
29 if ((p->buf_size < 16) ||
30 (AV_RB32(p->buf) != MKBETAG('q','o','a','f')) ||
31 (AV_RB32(p->buf + 4) == 0) ||
32 (p->buf[8] == 0) ||
33 (AV_RB24(p->buf + 9) == 0) ||
34 (AV_RB16(p->buf + 12) == 0) ||
35 (AV_RB16(p->buf + 14) == 0))
36 return 0;
37 return AVPROBE_SCORE_MAX;
38}
39
41{
42 AVIOContext *pb = s->pb;
43 AVStream *st;
44 int ret;
45
47 if (!st)
48 return AVERROR(ENOMEM);
49
50 avio_skip(pb, 4);
53 st->duration = avio_rb32(pb);
54 st->start_time = 0;
55
56 ret = ffio_ensure_seekback(pb, 4);
57 if (ret < 0)
58 return ret;
60 if (st->codecpar->ch_layout.nb_channels == 0)
62
64 if (st->codecpar->sample_rate == 0)
66
67 avio_seek(pb, -4, SEEK_CUR);
68
70
71 return 0;
72}
73
75{
76 AVIOContext *pb = s->pb;
77 uint16_t size, duration;
78 uint8_t hdr[8];
80 int ret;
81
82 if (avio_feof(pb))
83 return AVERROR_EOF;
84
85 pos = avio_tell(pb);
86 ret = avio_read(pb, hdr, sizeof(hdr));
87 if (ret != sizeof(hdr))
88 return AVERROR_EOF;
89
90 duration = AV_RB16(hdr + 4);
91 size = AV_RB16(hdr + 6);
92 if ((ret = av_new_packet(pkt, size)) < 0)
93 return ret;
94
95 memcpy(pkt->data, hdr, sizeof(hdr));
96 ret = ffio_read_size(pb, pkt->data + sizeof(hdr), size - sizeof(hdr));
97 if (ret < 0)
98 return ret;
99 pkt->stream_index = 0;
100 pkt->pos = pos;
101 pkt->duration = duration;
102
103 return 0;
104}
105
107 .p.name = "qoa",
108 .p.long_name = NULL_IF_CONFIG_SMALL("QOA"),
109 .p.flags = AVFMT_GENERIC_INDEX,
110 .p.extensions = "qoa",
111 .read_probe = qoa_probe,
112 .read_header = qoa_read_header,
113 .read_packet = qoa_read_packet,
114};
const FFInputFormat ff_qoa_demuxer
Definition qoadec.c:106
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_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:615
unsigned int avio_rb24(AVIOContext *s)
Definition aviobuf.c:757
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size)
Ensures that the requested seekback buffer size will be available.
Definition aviobuf.c:1026
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
static int64_t duration
Definition ffplay.c:330
@ AV_CODEC_ID_QOA
Definition codec_id.h:558
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
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_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_RB32(p)
#define AV_RB24(x)
#define AV_RB16(p)
static int qoa_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition qoadec.c:74
static int qoa_probe(const AVProbeData *p)
Definition qoadec.c:27
static int qoa_read_header(AVFormatContext *s)
Definition qoadec.c:40
#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.
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 stores compressed data.
Definition packet.h:580
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
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition avformat.h:815
int size