Mercurial > libavformat.hg
annotate oggdec.h @ 4941:45a08facad6f libavformat
write 'stps' for mpeg-2 open gop in .mov
author | bcoudurier |
---|---|
date | Fri, 15 May 2009 06:11:53 +0000 |
parents | 42098ccb51ab |
children | 3aabdadf9d5f |
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" | |
29 | |
4016 | 30 struct ogg_codec { |
3019
46c79fb51125
String pointers of ogg_codec_t should have const attribute.
reimar
parents:
2998
diff
changeset
|
31 const int8_t *magic; |
2714 | 32 uint8_t magicsize; |
3019
46c79fb51125
String pointers of ogg_codec_t should have const attribute.
reimar
parents:
2998
diff
changeset
|
33 const int8_t *name; |
4764 | 34 /** |
35 * Attempt to process a packet as a header | |
36 * @return 1 if the packet was a valid header, | |
37 * 0 if the packet was not a header (was a data packet) | |
38 * -1 if an error occurred or for unsupported stream | |
39 */ | |
2714 | 40 int (*header)(AVFormatContext *, int); |
41 int (*packet)(AVFormatContext *, int); | |
42 uint64_t (*gptopts)(AVFormatContext *, int, uint64_t); | |
4016 | 43 }; |
2714 | 44 |
4016 | 45 struct ogg_stream { |
2714 | 46 uint8_t *buf; |
47 unsigned int bufsize; | |
48 unsigned int bufpos; | |
49 unsigned int pstart; | |
50 unsigned int psize; | |
2732 | 51 unsigned int pflags; |
2714 | 52 uint32_t serial; |
53 uint32_t seq; | |
54 uint64_t granule, lastgp; | |
55 int flags; | |
4911 | 56 const struct ogg_codec *codec; |
2714 | 57 int header; |
58 int nsegs, segp; | |
59 uint8_t segments[255]; | |
60 void *private; | |
4016 | 61 }; |
2714 | 62 |
4016 | 63 struct ogg_state { |
2714 | 64 uint64_t pos; |
65 int curidx; | |
66 struct ogg_state *next; | |
67 int nstreams; | |
4016 | 68 struct ogg_stream streams[1]; |
69 }; | |
2714 | 70 |
4016 | 71 struct ogg { |
72 struct ogg_stream *streams; | |
2714 | 73 int nstreams; |
74 int headers; | |
75 int curidx; | |
76 uint64_t size; | |
4016 | 77 struct ogg_state *state; |
78 }; | |
2714 | 79 |
80 #define OGG_FLAG_CONT 1 | |
81 #define OGG_FLAG_BOS 2 | |
82 #define OGG_FLAG_EOS 4 | |
83 | |
4016 | 84 extern const struct ogg_codec ff_flac_codec; |
85 extern const struct ogg_codec ff_ogm_audio_codec; | |
86 extern const struct ogg_codec ff_ogm_old_codec; | |
87 extern const struct ogg_codec ff_ogm_text_codec; | |
88 extern const struct ogg_codec ff_ogm_video_codec; | |
89 extern const struct ogg_codec ff_old_flac_codec; | |
90 extern const struct ogg_codec ff_speex_codec; | |
91 extern const struct ogg_codec ff_theora_codec; | |
92 extern const struct ogg_codec ff_vorbis_codec; | |
2714 | 93 |
4058 | 94 int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); |
2714 | 95 |
3852 | 96 #endif /* AVFORMAT_OGGDEC_H */ |