FFmpeg
oggparseflac.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005 Matthieu CASTET
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 <stdlib.h>
22 #include "libavcodec/avcodec.h"
23 #include "libavcodec/bytestream.h"
24 #include "libavcodec/flac.h"
25 #include "avformat.h"
26 #include "internal.h"
27 #include "oggdec.h"
28 
29 #define OGG_FLAC_METADATA_TYPE_STREAMINFO 0x7F
30 #define OGG_FLAC_MAGIC "\177FLAC"
31 #define OGG_FLAC_MAGIC_SIZE sizeof(OGG_FLAC_MAGIC)-1
32 
33 static int
35 {
36  struct ogg *ogg = s->priv_data;
37  struct ogg_stream *os = ogg->streams + idx;
38  AVStream *st = s->streams[idx];
39  GetByteContext gb;
40  int mdt, ret;
41 
42  if (os->buf[os->pstart] == 0xff)
43  return 0;
44 
45  bytestream2_init(&gb, os->buf + os->pstart, os->psize);
46  mdt = bytestream2_get_byte(&gb) & 0x7F;
47 
49  uint32_t samplerate;
50 
51  if (bytestream2_get_bytes_left(&gb) < 4 + 4 + 4 + 4 + FLAC_STREAMINFO_SIZE)
52  return AVERROR_INVALIDDATA;
53  bytestream2_skipu(&gb, 4); /* "FLAC" */
54  if (bytestream2_get_byteu(&gb) != 1) /* unsupported major version */
55  return -1;
56  bytestream2_skipu(&gb, 1 + 2); /* minor version + header count */
57  bytestream2_skipu(&gb, 4); /* "fLaC" */
58 
59  /* METADATA_BLOCK_HEADER */
60  if (bytestream2_get_be32u(&gb) != FLAC_STREAMINFO_SIZE)
61  return -1;
62 
66 
68  return ret;
70 
71  samplerate = AV_RB24(st->codecpar->extradata + 10) >> 4;
72  if (!samplerate)
73  return AVERROR_INVALIDDATA;
74 
75  avpriv_set_pts_info(st, 64, 1, samplerate);
76  } else if (mdt == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
77  ff_vorbis_stream_comment(s, st, os->buf + os->pstart + 4, os->psize - 4);
78  }
79 
80  return 1;
81 }
82 
83 static int
85 {
86  struct ogg *ogg = s->priv_data;
87  struct ogg_stream *os = ogg->streams + idx;
88 
89  if (os->psize > OGG_FLAC_MAGIC_SIZE &&
90  !memcmp(
91  os->buf + os->pstart,
94  return 1;
95 
96  if (os->psize > 0 &&
97  ((os->buf[os->pstart] & 0x7F) == FLAC_METADATA_TYPE_VORBIS_COMMENT)) {
98  return 1;
99  }
100 
101  return 0;
102 }
103 
104 static int
106 {
107  struct ogg *ogg = s->priv_data;
108  AVStream *st = s->streams[idx];
109  struct ogg_stream *os = ogg->streams + idx;
111  AVCodecContext *avctx;
112  int size, ret;
113  uint8_t *data;
114 
115  if (!parser)
116  return -1;
117 
120 
121  avctx = avcodec_alloc_context3(NULL);
122  if (!avctx) {
123  ret = AVERROR(ENOMEM);
124  goto fail;
125  }
126 
128  if (ret < 0)
129  goto fail;
130 
132  av_parser_parse2(parser, avctx,
133  &data, &size, os->buf + os->pstart, os->psize,
135 
136  av_parser_close(parser);
137 
138  if (avctx->sample_rate) {
139  avpriv_set_pts_info(st, 64, 1, avctx->sample_rate);
140  avcodec_free_context(&avctx);
141  return 0;
142  }
143 
144  avcodec_free_context(&avctx);
145  return 1;
146 fail:
147  av_parser_close(parser);
148  avcodec_free_context(&avctx);
149  return ret;
150 }
151 
152 const struct ogg_codec ff_flac_codec = {
154  .magicsize = OGG_FLAC_MAGIC_SIZE,
155  .header = flac_header,
156  .nb_header = 2,
157  .packet = flac_packet,
158 };
159 
160 const struct ogg_codec ff_old_flac_codec = {
161  .magic = "fLaC",
162  .magicsize = 4,
163  .header = old_flac_header,
164  .nb_header = 0,
165 };
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:69
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
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1024
GetByteContext
Definition: bytestream.h:33
OGG_FLAC_MAGIC_SIZE
#define OGG_FLAC_MAGIC_SIZE
Definition: oggparseflac.c:31
ff_flac_codec
const struct ogg_codec ff_flac_codec
Definition: oggparseflac.c:152
bytestream2_skipu
static av_always_inline void bytestream2_skipu(GetByteContext *g, unsigned int size)
Definition: bytestream.h:174
data
const char data[16]
Definition: mxf.c:149
AV_CODEC_ID_FLAC
@ AV_CODEC_ID_FLAC
Definition: codec_id.h:461
ogg_stream::buf
uint8_t * buf
Definition: oggdec.h:68
ogg
Definition: oggdec.h:110
old_flac_header
static int old_flac_header(AVFormatContext *s, int idx)
Definition: oggparseflac.c:105
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:777
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:347
fail
#define fail()
Definition: checkasm.h:196
av_parser_init
AVCodecParserContext * av_parser_init(int codec_id)
Definition: parser.c:32
flac_header
static int flac_header(AVFormatContext *s, int idx)
Definition: oggparseflac.c:34
ogg_stream::pstart
unsigned int pstart
Definition: oggdec.h:71
avcodec_alloc_context3
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition: options.c:149
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
OGG_FLAC_METADATA_TYPE_STREAMINFO
#define OGG_FLAC_METADATA_TYPE_STREAMINFO
Definition: oggparseflac.c:29
FFStream::need_parsing
enum AVStreamParseType need_parsing
Definition: internal.h:314
AVFormatContext
Format I/O context.
Definition: avformat.h:1264
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:767
avcodec_parameters_to_context
int avcodec_parameters_to_context(AVCodecContext *codec, const struct AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
NULL
#define NULL
Definition: coverity.c:32
avcodec_free_context
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
Definition: options.c:164
FLAC_STREAMINFO_SIZE
#define FLAC_STREAMINFO_SIZE
Definition: flac.h:32
AVCodecParserContext::flags
int flags
Definition: avcodec.h:2600
ogg::streams
struct ogg_stream * streams
Definition: oggdec.h:111
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:158
size
int size
Definition: twinvq_data.h:10344
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:247
FLAC_METADATA_TYPE_VORBIS_COMMENT
@ FLAC_METADATA_TYPE_VORBIS_COMMENT
Definition: flac.h:50
PARSER_FLAG_COMPLETE_FRAMES
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:2601
ogg_stream
Definition: oggdec.h:67
OGG_FLAC_MAGIC
#define OGG_FLAC_MAGIC
Definition: oggparseflac.c:30
avcodec.h
AVCodecParserContext
Definition: avcodec.h:2567
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:744
AVSTREAM_PARSE_HEADERS
@ AVSTREAM_PARSE_HEADERS
Only parse headers, do not repack.
Definition: avformat.h:590
avformat.h
oggdec.h
flac_packet
static int flac_packet(AVFormatContext *s, int idx)
Definition: oggparseflac.c:84
AVCodecContext
main external API structure.
Definition: avcodec.h:431
ff_vorbis_stream_comment
int ff_vorbis_stream_comment(AVFormatContext *as, AVStream *st, const uint8_t *buf, int size)
Parse Vorbis comments and add metadata to an AVStream.
Definition: oggparsevorbis.c:74
av_parser_parse2
int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int64_t pts, int64_t dts, int64_t pos)
Parse a packet.
Definition: parser.c:115
bytestream2_get_bufferu
static av_always_inline unsigned int bytestream2_get_bufferu(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition: bytestream.h:277
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
ogg_stream::psize
unsigned int psize
Definition: oggdec.h:72
ff_old_flac_codec
const struct ogg_codec ff_old_flac_codec
Definition: oggparseflac.c:160
ogg_codec
Copyright (C) 2005 Michael Ahlberg, Måns Rullgård.
Definition: oggdec.h:30
bytestream.h
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
ogg_codec::magic
const int8_t * magic
Definition: oggdec.h:31
flac.h
AV_RB24
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_RB24
Definition: bytestream.h:97
av_parser_close
void av_parser_close(AVCodecParserContext *s)
Definition: parser.c:193
ff_alloc_extradata
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition: utils.c:230