Mercurial > libavformat.hg
annotate oggdec.h @ 5591:a6f523ec7c37 libavformat
Fix misc typos, patch by
Fabian Greffrath base64_decode(PGZhYmlhbkBncmVmZnJhdGguY29tPg==).
author | stefano |
---|---|
date | Wed, 27 Jan 2010 00:31:52 +0000 |
parents | 52c7b29eca31 |
children | 37e2c3e635b3 |
rev | line source |
---|---|
2714 | 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 | |
3852 | 25 #ifndef AVFORMAT_OGGDEC_H |
26 #define AVFORMAT_OGGDEC_H | |
2714 | 27 |
28 #include "avformat.h" | |
5032
3aabdadf9d5f
Add a VorbisComment metadata conversion table and use it in the FLAC and
jbr
parents:
4911
diff
changeset
|
29 #include "metadata.h" |
2714 | 30 |
4016 | 31 struct ogg_codec { |
3019
46c79fb51125
String pointers of ogg_codec_t should have const attribute.
reimar
parents:
2998
diff
changeset
|
32 const int8_t *magic; |
2714 | 33 uint8_t magicsize; |
3019
46c79fb51125
String pointers of ogg_codec_t should have const attribute.
reimar
parents:
2998
diff
changeset
|
34 const int8_t *name; |
4764 | 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 */ | |
2714 | 41 int (*header)(AVFormatContext *, int); |
42 int (*packet)(AVFormatContext *, int); | |
5514 | 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); | |
5434 | 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 */ | |
53 int granule_is_start; | |
4016 | 54 }; |
2714 | 55 |
4016 | 56 struct ogg_stream { |
2714 | 57 uint8_t *buf; |
58 unsigned int bufsize; | |
59 unsigned int bufpos; | |
60 unsigned int pstart; | |
61 unsigned int psize; | |
2732 | 62 unsigned int pflags; |
5276
5de92e352cf9
Calculate correct packet durations when demuxing Ogg/Speex. This involves
jbr
parents:
5032
diff
changeset
|
63 unsigned int pduration; |
2714 | 64 uint32_t serial; |
65 uint32_t seq; | |
5434 | 66 uint64_t granule; |
67 int64_t lastpts; | |
5514 | 68 int64_t lastdts; |
2714 | 69 int flags; |
4911 | 70 const struct ogg_codec *codec; |
2714 | 71 int header; |
72 int nsegs, segp; | |
73 uint8_t segments[255]; | |
5434 | 74 int page_end; ///< current packet is the last one completed in the page |
2714 | 75 void *private; |
4016 | 76 }; |
2714 | 77 |
4016 | 78 struct ogg_state { |
2714 | 79 uint64_t pos; |
80 int curidx; | |
81 struct ogg_state *next; | |
82 int nstreams; | |
4016 | 83 struct ogg_stream streams[1]; |
84 }; | |
2714 | 85 |
4016 | 86 struct ogg { |
87 struct ogg_stream *streams; | |
2714 | 88 int nstreams; |
89 int headers; | |
90 int curidx; | |
91 uint64_t size; | |
4016 | 92 struct ogg_state *state; |
93 }; | |
2714 | 94 |
95 #define OGG_FLAG_CONT 1 | |
96 #define OGG_FLAG_BOS 2 | |
97 #define OGG_FLAG_EOS 4 | |
98 | |
5512 | 99 extern const struct ogg_codec ff_dirac_codec; |
4016 | 100 extern const struct ogg_codec ff_flac_codec; |
101 extern const struct ogg_codec ff_ogm_audio_codec; | |
102 extern const struct ogg_codec ff_ogm_old_codec; | |
103 extern const struct ogg_codec ff_ogm_text_codec; | |
104 extern const struct ogg_codec ff_ogm_video_codec; | |
5512 | 105 extern const struct ogg_codec ff_old_dirac_codec; |
4016 | 106 extern const struct ogg_codec ff_old_flac_codec; |
107 extern const struct ogg_codec ff_speex_codec; | |
108 extern const struct ogg_codec ff_theora_codec; | |
109 extern const struct ogg_codec ff_vorbis_codec; | |
2714 | 110 |
5032
3aabdadf9d5f
Add a VorbisComment metadata conversion table and use it in the FLAC and
jbr
parents:
4911
diff
changeset
|
111 extern const AVMetadataConv ff_vorbiscomment_metadata_conv[]; |
3aabdadf9d5f
Add a VorbisComment metadata conversion table and use it in the FLAC and
jbr
parents:
4911
diff
changeset
|
112 |
4058 | 113 int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); |
2714 | 114 |
3852 | 115 #endif /* AVFORMAT_OGGDEC_H */ |