ffmpeg / libavformat / oggdec.h @ 6cc7f139
History | View | Annotate | Download (4.34 KB)
1 | 9146ca37 | Måns Rullgård | /**
|
---|---|---|---|
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 | 98790382 | Stefano Sabatini | #ifndef AVFORMAT_OGGDEC_H
|
26 | #define AVFORMAT_OGGDEC_H
|
||
27 | 9146ca37 | Måns Rullgård | |
28 | #include "avformat.h" |
||
29 | d7bb185f | Justin Ruggles | #include "metadata.h" |
30 | 9146ca37 | Måns Rullgård | |
31 | 77be08ee | Måns Rullgård | struct ogg_codec {
|
32 | c9011976 | Reimar Döffinger | const int8_t *magic;
|
33 | 9146ca37 | Måns Rullgård | uint8_t magicsize; |
34 | c9011976 | Reimar Döffinger | const int8_t *name;
|
35 | 1fa9726c | David Conrad | /**
|
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 | */
|
||
41 | 9146ca37 | Måns Rullgård | int (*header)(AVFormatContext *, int); |
42 | int (*packet)(AVFormatContext *, int); |
||
43 | 2d4970d8 | David Conrad | /**
|
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 | 5e15c7d9 | David Conrad | /**
|
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 | */
|
||
53 | int granule_is_start;
|
||
54 | 77be08ee | Måns Rullgård | }; |
55 | 9146ca37 | Måns Rullgård | |
56 | 77be08ee | Måns Rullgård | struct ogg_stream {
|
57 | 9146ca37 | Måns Rullgård | uint8_t *buf; |
58 | unsigned int bufsize; |
||
59 | unsigned int bufpos; |
||
60 | unsigned int pstart; |
||
61 | unsigned int psize; |
||
62 | e1a794b2 | Måns Rullgård | unsigned int pflags; |
63 | 15299b38 | Justin Ruggles | unsigned int pduration; |
64 | 9146ca37 | Måns Rullgård | uint32_t serial; |
65 | 5e15c7d9 | David Conrad | uint64_t granule; |
66 | int64_t lastpts; |
||
67 | 2d4970d8 | David Conrad | int64_t lastdts; |
68 | 73823cb9 | David Conrad | int64_t sync_pos; ///< file offset of the first page needed to reconstruct the current packet
|
69 | int64_t page_pos; ///< file offset of the current page
|
||
70 | 9146ca37 | Måns Rullgård | int flags;
|
71 | fc430e8f | Daniel Verkamp | const struct ogg_codec *codec; |
72 | 9146ca37 | Måns Rullgård | int header;
|
73 | int nsegs, segp;
|
||
74 | uint8_t segments[255];
|
||
75 | ecc0027b | David Conrad | int incomplete; ///< whether we're expecting a continuation in the next page |
76 | 5e15c7d9 | David Conrad | int page_end; ///< current packet is the last one completed in the page |
77 | d8b91fae | David Conrad | int keyframe_seek;
|
78 | 1ed923ea | Måns Rullgård | void *private;
|
79 | 77be08ee | Måns Rullgård | }; |
80 | 9146ca37 | Måns Rullgård | |
81 | 77be08ee | Måns Rullgård | struct ogg_state {
|
82 | 9146ca37 | Måns Rullgård | uint64_t pos; |
83 | int curidx;
|
||
84 | struct ogg_state *next;
|
||
85 | 20be72c8 | Måns Rullgård | int nstreams;
|
86 | 77be08ee | Måns Rullgård | struct ogg_stream streams[1]; |
87 | }; |
||
88 | 9146ca37 | Måns Rullgård | |
89 | 77be08ee | Måns Rullgård | struct ogg {
|
90 | struct ogg_stream *streams;
|
||
91 | 9146ca37 | Måns Rullgård | int nstreams;
|
92 | int headers;
|
||
93 | int curidx;
|
||
94 | 77be08ee | Måns Rullgård | struct ogg_state *state;
|
95 | }; |
||
96 | 9146ca37 | Måns Rullgård | |
97 | #define OGG_FLAG_CONT 1 |
||
98 | #define OGG_FLAG_BOS 2 |
||
99 | #define OGG_FLAG_EOS 4 |
||
100 | |||
101 | 24ca518b | David Conrad | extern const struct ogg_codec ff_dirac_codec; |
102 | 77be08ee | Måns Rullgård | extern const struct ogg_codec ff_flac_codec; |
103 | extern const struct ogg_codec ff_ogm_audio_codec; |
||
104 | extern const struct ogg_codec ff_ogm_old_codec; |
||
105 | extern const struct ogg_codec ff_ogm_text_codec; |
||
106 | extern const struct ogg_codec ff_ogm_video_codec; |
||
107 | 24ca518b | David Conrad | extern const struct ogg_codec ff_old_dirac_codec; |
108 | 77be08ee | Måns Rullgård | extern const struct ogg_codec ff_old_flac_codec; |
109 | 32ad8692 | David Conrad | extern const struct ogg_codec ff_skeleton_codec; |
110 | 77be08ee | Måns Rullgård | extern const struct ogg_codec ff_speex_codec; |
111 | extern const struct ogg_codec ff_theora_codec; |
||
112 | extern const struct ogg_codec ff_vorbis_codec; |
||
113 | 9146ca37 | Måns Rullgård | |
114 | 533c30fc | David Conrad | int ff_vorbis_comment(AVFormatContext *ms, AVMetadata **m, const uint8_t *buf, int size); |
115 | 9146ca37 | Måns Rullgård | |
116 | dfaed51f | David Conrad | static inline int |
117 | ogg_find_stream (struct ogg * ogg, int serial) |
||
118 | { |
||
119 | int i;
|
||
120 | |||
121 | for (i = 0; i < ogg->nstreams; i++) |
||
122 | if (ogg->streams[i].serial == serial)
|
||
123 | return i;
|
||
124 | |||
125 | return -1; |
||
126 | } |
||
127 | |||
128 | static inline uint64_t |
||
129 | ogg_gptopts (AVFormatContext * s, int i, uint64_t gp, int64_t *dts)
|
||
130 | { |
||
131 | struct ogg *ogg = s->priv_data;
|
||
132 | struct ogg_stream *os = ogg->streams + i;
|
||
133 | uint64_t pts = AV_NOPTS_VALUE; |
||
134 | |||
135 | 296bdf9c | David Conrad | if(os->codec && os->codec->gptopts){
|
136 | dfaed51f | David Conrad | pts = os->codec->gptopts(s, i, gp, dts); |
137 | } else {
|
||
138 | pts = gp; |
||
139 | if (dts)
|
||
140 | *dts = pts; |
||
141 | } |
||
142 | |||
143 | return pts;
|
||
144 | } |
||
145 | |||
146 | 98790382 | Stefano Sabatini | #endif /* AVFORMAT_OGGDEC_H */ |