FFmpeg
oggdec.h
Go to the documentation of this file.
1 /**
2  Copyright (C) 2005 Michael Ahlberg, Måns Rullgård
3 
4  Permission is hereby granted, free of charge, to any person
5  obtaining a copy of this software and associated documentation
6  files (the "Software"), to deal in the Software without
7  restriction, including without limitation the rights to use, copy,
8  modify, merge, publish, distribute, sublicense, and/or sell copies
9  of the Software, and to permit persons to whom the Software is
10  furnished to do so, subject to the following conditions:
11 
12  The above copyright notice and this permission notice shall be
13  included in all copies or substantial portions of the Software.
14 
15  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23 **/
24 
25 #ifndef AVFORMAT_OGGDEC_H
26 #define AVFORMAT_OGGDEC_H
27 
28 #include "avformat.h"
29 #include "metadata.h"
30 
31 struct ogg_codec {
32  const int8_t *magic;
33  uint8_t magicsize;
34  const int8_t *name;
35  /**
36  * Attempt to process a packet as a header
37  * @return 1 if the packet was a valid header,
38  * 0 if the packet was not a header (was a data packet)
39  * -1 if an error occurred or for unsupported stream
40  */
43  /**
44  * Translate a granule into a timestamp.
45  * Will set dts if non-null and known.
46  * @return pts
47  */
48  uint64_t (*gptopts)(AVFormatContext *, int, uint64_t, int64_t *dts);
49  /**
50  * 1 if granule is the start time of the associated packet.
51  * 0 if granule is the end time of the associated packet.
52  */
54  /**
55  * Number of expected headers
56  */
57  int nb_header;
58  void (*cleanup)(AVFormatContext *s, int idx);
59 };
60 
61 struct ogg_stream {
62  uint8_t *buf;
63  unsigned int bufsize;
64  unsigned int bufpos;
65  unsigned int pstart;
66  unsigned int psize;
67  unsigned int pflags;
68  unsigned int pduration;
69  uint32_t serial;
70  uint64_t granule;
71  uint64_t start_granule;
72  int64_t lastpts;
73  int64_t lastdts;
74  int64_t sync_pos; ///< file offset of the first page needed to reconstruct the current packet
75  int64_t page_pos; ///< file offset of the current page
76  int flags;
77  const struct ogg_codec *codec;
78  int header;
79  int nsegs, segp;
80  uint8_t segments[255];
81  int incomplete; ///< whether we're expecting a continuation in the next page
82  int page_end; ///< current packet is the last one completed in the page
84  int got_start;
85  int got_data; ///< 1 if the stream got some data (non-initial packets), 0 otherwise
86  int nb_header; ///< set to the number of parsed headers
87  int start_trimming; ///< set the number of packets to drop from the start
88  int end_trimming; ///< set the number of packets to drop from the end
89  uint8_t *new_metadata;
91  void *private;
92 };
93 
94 struct ogg_state {
95  uint64_t pos;
96  int curidx;
97  struct ogg_state *next;
98  int nstreams;
99  struct ogg_stream streams[1];
100 };
101 
102 struct ogg {
104  int nstreams;
105  int headers;
106  int curidx;
107  int64_t page_pos; ///< file offset of the current page
108  struct ogg_state *state;
109 };
110 
111 #define OGG_FLAG_CONT 1
112 #define OGG_FLAG_BOS 2
113 #define OGG_FLAG_EOS 4
114 
115 #define OGG_NOGRANULE_VALUE (-1ull)
116 
117 extern const struct ogg_codec ff_celt_codec;
118 extern const struct ogg_codec ff_dirac_codec;
119 extern const struct ogg_codec ff_flac_codec;
120 extern const struct ogg_codec ff_ogm_audio_codec;
121 extern const struct ogg_codec ff_ogm_old_codec;
122 extern const struct ogg_codec ff_ogm_text_codec;
123 extern const struct ogg_codec ff_ogm_video_codec;
124 extern const struct ogg_codec ff_old_dirac_codec;
125 extern const struct ogg_codec ff_old_flac_codec;
126 extern const struct ogg_codec ff_opus_codec;
127 extern const struct ogg_codec ff_skeleton_codec;
128 extern const struct ogg_codec ff_speex_codec;
129 extern const struct ogg_codec ff_theora_codec;
130 extern const struct ogg_codec ff_vorbis_codec;
131 extern const struct ogg_codec ff_vp8_codec;
132 
133 /**
134  * Parse Vorbis comments
135  *
136  * @note The buffer will be temporarily modifed by this function,
137  * so it needs to be writable. Furthermore it must be padded
138  * by a single byte (not counted in size).
139  * All changes will have been reverted upon return.
140  */
142  const uint8_t *buf, int size, int parse_picture);
143 
144 /**
145  * Parse Vorbis comments and add metadata to an AVStream
146  *
147  * @note The buffer will be temporarily modifed by this function,
148  * so it needs to be writable. Furthermore it must be padded
149  * by a single byte (not counted in size).
150  * All changes will have been reverted upon return.
151  */
153  const uint8_t *buf, int size);
154 
155 static inline int
156 ogg_find_stream (struct ogg * ogg, int serial)
157 {
158  int i;
159 
160  for (i = 0; i < ogg->nstreams; i++)
161  if (ogg->streams[i].serial == serial)
162  return i;
163 
164  return -1;
165 }
166 
167 static inline uint64_t
168 ogg_gptopts (AVFormatContext * s, int i, uint64_t gp, int64_t *dts)
169 {
170  struct ogg *ogg = s->priv_data;
171  struct ogg_stream *os = ogg->streams + i;
172  uint64_t pts = AV_NOPTS_VALUE;
173 
174  if(os->codec && os->codec->gptopts){
175  pts = os->codec->gptopts(s, i, gp, dts);
176  } else {
177  pts = gp;
178  if (dts)
179  *dts = pts;
180  }
181  if (pts > INT64_MAX && pts != AV_NOPTS_VALUE) {
182  // The return type is unsigned, we thus cannot return negative pts
183  av_log(s, AV_LOG_ERROR, "invalid pts %"PRId64"\n", pts);
185  }
186 
187  return pts;
188 }
189 
190 #endif /* AVFORMAT_OGGDEC_H */
ff_old_flac_codec
const struct ogg_codec ff_old_flac_codec
Definition: oggparseflac.c:135
ff_ogm_text_codec
const struct ogg_codec ff_ogm_text_codec
Definition: oggparseogm.c:213
ogg_stream::segp
int segp
Definition: oggdec.h:79
ogg_stream::lastpts
int64_t lastpts
Definition: oggdec.h:72
ff_ogm_audio_codec
const struct ogg_codec ff_ogm_audio_codec
Definition: oggparseogm.c:204
ogg_codec::magicsize
uint8_t magicsize
Definition: oggdec.h:33
ogg_state::pos
uint64_t pos
Definition: oggdec.h:95
ogg_stream::bufpos
unsigned int bufpos
Definition: oggdec.h:64
ogg_state::streams
struct ogg_stream streams[1]
Definition: oggdec.h:99
ff_vp8_codec
const struct ogg_codec ff_vp8_codec
Definition: oggparsevp8.c:139
ogg_stream::got_start
int got_start
Definition: oggdec.h:84
ff_old_dirac_codec
const struct ogg_codec ff_old_dirac_codec
Definition: oggparsedirac.c:125
ogg_stream::granule
uint64_t granule
Definition: oggdec.h:70
ogg_stream::start_trimming
int start_trimming
set the number of packets to drop from the start
Definition: oggdec.h:87
ogg_codec::gptopts
uint64_t(* gptopts)(AVFormatContext *, int, uint64_t, int64_t *dts)
Translate a granule into a timestamp.
Definition: oggdec.h:48
ogg_stream::nb_header
int nb_header
set to the number of parsed headers
Definition: oggdec.h:86
AVDictionary
Definition: dict.c:30
ogg_stream::buf
uint8_t * buf
Definition: oggdec.h:62
ogg_stream::nsegs
int nsegs
Definition: oggdec.h:79
ogg
Definition: oggdec.h:102
ff_vorbis_codec
const struct ogg_codec ff_vorbis_codec
Definition: oggparsevorbis.c:504
ff_flac_codec
const struct ogg_codec ff_flac_codec
Definition: oggparseflac.c:128
ogg_codec::packet
int(* packet)(AVFormatContext *, int)
Definition: oggdec.h:42
ogg_gptopts
static uint64_t ogg_gptopts(AVFormatContext *s, int i, uint64_t gp, int64_t *dts)
Definition: oggdec.h:168
ogg_stream::serial
uint32_t serial
Definition: oggdec.h:69
ogg_stream::lastdts
int64_t lastdts
Definition: oggdec.h:73
ogg::headers
int headers
Definition: oggdec.h:105
ogg_state::nstreams
int nstreams
Definition: oggdec.h:98
pts
static int64_t pts
Definition: transcode_aac.c:653
ogg_stream::pstart
unsigned int pstart
Definition: oggdec.h:65
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
s
#define s(width, name)
Definition: cbs_vp9.c:257
ogg_stream::got_data
int got_data
1 if the stream got some data (non-initial packets), 0 otherwise
Definition: oggdec.h:85
ogg_stream::page_end
int page_end
current packet is the last one completed in the page
Definition: oggdec.h:82
ogg::curidx
int curidx
Definition: oggdec.h:106
ogg_stream::new_metadata
uint8_t * new_metadata
Definition: oggdec.h:89
ogg_stream::page_pos
int64_t page_pos
file offset of the current page
Definition: oggdec.h:75
AVFormatContext
Format I/O context.
Definition: avformat.h:1200
ogg_codec::header
int(* header)(AVFormatContext *, int)
Attempt to process a packet as a header.
Definition: oggdec.h:41
ff_ogm_old_codec
const struct ogg_codec ff_ogm_old_codec
Definition: oggparseogm.c:222
ogg_stream::flags
int flags
Definition: oggdec.h:76
ogg::page_pos
int64_t page_pos
file offset of the current page
Definition: oggdec.h:107
ogg::streams
struct ogg_stream * streams
Definition: oggdec.h:103
gp
#define gp
Definition: regdef.h:62
ogg_stream::keyframe_seek
int keyframe_seek
Definition: oggdec.h:83
size
int size
Definition: twinvq_data.h:10344
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
ogg_codec::name
const int8_t * name
Definition: oggdec.h:34
ogg::state
struct ogg_state * state
Definition: oggdec.h:108
ogg_state::next
struct ogg_state * next
Definition: oggdec.h:97
ogg_stream::pflags
unsigned int pflags
Definition: oggdec.h:67
ogg::nstreams
int nstreams
Definition: oggdec.h:104
ogg_stream::sync_pos
int64_t sync_pos
file offset of the first page needed to reconstruct the current packet
Definition: oggdec.h:74
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
ogg_stream::incomplete
int incomplete
whether we're expecting a continuation in the next page
Definition: oggdec.h:81
ogg_stream
Definition: oggdec.h:61
ff_ogm_video_codec
const struct ogg_codec ff_ogm_video_codec
Definition: oggparseogm.c:195
ff_skeleton_codec
const struct ogg_codec ff_skeleton_codec
Definition: oggparseskeleton.c:96
ogg_state::curidx
int curidx
Definition: oggdec.h:96
ogg_stream::header
int header
Definition: oggdec.h:78
AVStream
Stream structure.
Definition: avformat.h:935
metadata.h
avformat.h
ogg_find_stream
static int ogg_find_stream(struct ogg *ogg, int serial)
Definition: oggdec.h:156
ogg_codec::cleanup
void(* cleanup)(AVFormatContext *s, int idx)
Definition: oggdec.h:58
ogg_stream::start_granule
uint64_t start_granule
Definition: oggdec.h:71
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:73
ogg_stream::new_metadata_size
size_t new_metadata_size
Definition: oggdec.h:90
ogg_codec::nb_header
int nb_header
Number of expected headers.
Definition: oggdec.h:57
ogg_stream::segments
uint8_t segments[255]
Definition: oggdec.h:80
ogg_state
Definition: oggdec.h:94
ff_celt_codec
const struct ogg_codec ff_celt_codec
Definition: oggparsecelt.c:92
ogg_stream::psize
unsigned int psize
Definition: oggdec.h:66
ogg_codec
Copyright (C) 2005 Michael Ahlberg, Måns Rullgård.
Definition: oggdec.h:31
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
ogg_codec::magic
const int8_t * magic
Definition: oggdec.h:32
ogg_stream::end_trimming
int end_trimming
set the number of packets to drop from the end
Definition: oggdec.h:88
ff_dirac_codec
const struct ogg_codec ff_dirac_codec
Definition: oggparsedirac.c:116
ff_vorbis_comment
int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size, int parse_picture)
Parse Vorbis comments.
Definition: oggparsevorbis.c:148
ff_speex_codec
const struct ogg_codec ff_speex_codec
Definition: oggparsespeex.c:148
int
int
Definition: ffmpeg_filter.c:153
ogg_codec::granule_is_start
int granule_is_start
1 if granule is the start time of the associated packet.
Definition: oggdec.h:53
ogg_stream::pduration
unsigned int pduration
Definition: oggdec.h:68
ff_theora_codec
const struct ogg_codec ff_theora_codec
Definition: oggparsetheora.c:211
ogg_stream::codec
const struct ogg_codec * codec
Definition: oggdec.h:77
ff_opus_codec
const struct ogg_codec ff_opus_codec
Definition: oggparseopus.c:181
ogg_stream::bufsize
unsigned int bufsize
Definition: oggdec.h:63