ffmpeg / libavformat / ogg2.h @ 5b21bdab
History | View | Annotate | Download (2.48 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 | 5b21bdab | Diego Biurrun | #ifndef FFMPEG_OGG2_H
|
26 | #define FFMPEG_OGG2_H
|
||
27 | 9146ca37 | Måns Rullgård | |
28 | #include "avformat.h" |
||
29 | |||
30 | typedef struct ogg_codec { |
||
31 | 191e8ca7 | Måns Rullgård | int8_t *magic; |
32 | 9146ca37 | Måns Rullgård | uint8_t magicsize; |
33 | int8_t *name; |
||
34 | int (*header)(AVFormatContext *, int); |
||
35 | int (*packet)(AVFormatContext *, int); |
||
36 | 1ed923ea | Måns Rullgård | uint64_t (*gptopts)(AVFormatContext *, int, uint64_t);
|
37 | 9146ca37 | Måns Rullgård | } ogg_codec_t; |
38 | |||
39 | typedef struct ogg_stream { |
||
40 | uint8_t *buf; |
||
41 | unsigned int bufsize; |
||
42 | unsigned int bufpos; |
||
43 | unsigned int pstart; |
||
44 | unsigned int psize; |
||
45 | uint32_t serial; |
||
46 | uint32_t seq; |
||
47 | uint64_t granule, lastgp; |
||
48 | int flags;
|
||
49 | ogg_codec_t *codec; |
||
50 | int header;
|
||
51 | int nsegs, segp;
|
||
52 | uint8_t segments[255];
|
||
53 | 1ed923ea | Måns Rullgård | void *private;
|
54 | 9146ca37 | Måns Rullgård | } ogg_stream_t; |
55 | |||
56 | typedef struct ogg_state { |
||
57 | uint64_t pos; |
||
58 | int curidx;
|
||
59 | struct ogg_state *next;
|
||
60 | 20be72c8 | Måns Rullgård | int nstreams;
|
61 | ad3aa874 | Måns Rullgård | ogg_stream_t streams[1];
|
62 | 9146ca37 | Måns Rullgård | } ogg_state_t; |
63 | |||
64 | typedef struct ogg { |
||
65 | ogg_stream_t *streams; |
||
66 | int nstreams;
|
||
67 | int headers;
|
||
68 | int curidx;
|
||
69 | uint64_t size; |
||
70 | ogg_state_t *state; |
||
71 | } ogg_t; |
||
72 | |||
73 | #define OGG_FLAG_CONT 1 |
||
74 | #define OGG_FLAG_BOS 2 |
||
75 | #define OGG_FLAG_EOS 4 |
||
76 | |||
77 | extern ogg_codec_t vorbis_codec;
|
||
78 | 1ed923ea | Måns Rullgård | extern ogg_codec_t theora_codec;
|
79 | bcfc40ae | Måns Rullgård | extern ogg_codec_t flac_codec;
|
80 | 880e3ef4 | Michael Niedermayer | extern ogg_codec_t old_flac_codec;
|
81 | 9146ca37 | Måns Rullgård | extern ogg_codec_t ogm_video_codec;
|
82 | extern ogg_codec_t ogm_audio_codec;
|
||
83 | extern ogg_codec_t ogm_old_codec;
|
||
84 | |||
85 | 191e8ca7 | Måns Rullgård | extern int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); |
86 | 9146ca37 | Måns Rullgård | |
87 | 5b21bdab | Diego Biurrun | #endif /* FFMPEG_OGG2_H */ |