Update translations from 2.2.x branch
[vlc.git] / modules / demux / ogg.h
blob16ac99793caa58b2f5fd3dc4397aff88d15eb7c5
1 /*****************************************************************************
2 * ogg.h : ogg stream demux module for vlc
3 *****************************************************************************
4 * Copyright (C) 2001-2010 VLC authors and VideoLAN
6 * Authors: Gildas Bazin <gbazin@netcourrier.com>
7 * Andre Pang <Andre.Pang@csiro.au> (Annodex support)
8 * Gabriel Finch <salsaman@gmail.com> (moved from ogg.c to ogg.h)
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
29 #ifdef HAVE_LIBVORBIS
30 #include <vorbis/codec.h>
31 #endif
33 /*****************************************************************************
34 * Definitions of structures and functions used by this plugin
35 *****************************************************************************/
37 //#define OGG_DEMUX_DEBUG 1
38 #ifdef OGG_DEMUX_DEBUG
39 #define DemuxDebug(code) code
40 #else
41 #define DemuxDebug(code)
42 #endif
44 /* Some defines from OggDS http://svn.xiph.org/trunk/oggds/ */
45 #define PACKET_TYPE_HEADER 0x01
46 #define PACKET_TYPE_BITS 0x07
47 #define PACKET_LEN_BITS01 0xc0
48 #define PACKET_LEN_BITS2 0x02
49 #define PACKET_IS_SYNCPOINT 0x08
51 typedef struct oggseek_index_entry demux_index_entry_t;
52 typedef struct ogg_skeleton_t ogg_skeleton_t;
54 typedef struct backup_queue
56 block_t *p_block;
57 mtime_t i_duration;
58 } backup_queue_t;
60 typedef struct logical_stream_s
62 ogg_stream_state os; /* logical stream of packets */
64 es_format_t fmt;
65 es_format_t fmt_old; /* format of old ES is reused */
66 es_out_id_t *p_es;
67 double f_rate;
69 int i_serial_no;
71 /* the header of some logical streams (eg vorbis) contain essential
72 * data for the decoder. We back them up here in case we need to re-feed
73 * them to the decoder. */
74 bool b_force_backup;
75 int i_packets_backup;
76 int32_t i_extra_headers_packets;
77 void *p_headers;
78 int i_headers;
79 ogg_int64_t i_previous_granulepos;
80 ogg_int64_t i_granulepos_offset;/* first granule offset */
82 /* program clock reference (in units of 90kHz) derived from the previous
83 * granulepos */
84 mtime_t i_pcr;
85 mtime_t i_previous_pcr;
87 /* Misc */
88 bool b_initializing;
89 bool b_finished;
90 bool b_reinit;
91 bool b_oggds;
92 int i_granule_shift;
94 /* Opus has a starting offset in the headers. */
95 int i_pre_skip;
96 /* Vorbis and Opus can trim the end of a stream using granule positions. */
97 int i_end_trim;
99 /* offset of first keyframe for theora; can be 0 or 1 depending on version number */
100 int8_t i_keyframe_offset;
102 /* keyframe index for seeking, created as we discover keyframes */
103 demux_index_entry_t *idx;
105 /* Skeleton data */
106 ogg_skeleton_t *p_skel;
108 /* skip some frames after a seek */
109 unsigned int i_skip_frames;
111 /* data start offset (absolute) in bytes */
112 int64_t i_data_start;
114 /* for Annodex logical bitstreams */
115 int i_secondary_header_packets;
117 /* All blocks which can't be sent because track PCR isn't known yet */
118 struct
120 block_t **pp_blocks;
121 uint8_t i_size; /* max 255 */
122 uint8_t i_used;
123 } prepcr;
124 /* All blocks that are queued because ES isn't created yet */
125 block_t *p_preparse_block;
127 union
129 #ifdef HAVE_LIBVORBIS
130 struct
132 vorbis_info *p_info;
133 vorbis_comment *p_comment;
134 int i_headers_flags;
135 int i_prev_blocksize;
136 } vorbis;
137 #endif
138 struct
140 /* kate streams have the number of headers in the ID header */
141 int i_num_headers;
142 } kate;
143 struct
145 bool b_interlaced;
146 } dirac;
147 struct
149 int32_t i_framesize;
150 int32_t i_framesperpacket;
151 } speex;
152 struct
154 bool b_old;
155 } flac;
156 } special;
158 } logical_stream_t;
160 struct ogg_skeleton_t
162 int i_messages;
163 char **ppsz_messages;
164 unsigned char *p_index;
165 uint64_t i_index;
166 uint64_t i_index_size;
167 int64_t i_indexstampden;/* time denominator */
168 int64_t i_indexfirstnum;/* first sample time numerator */
169 int64_t i_indexlastnum;
172 struct demux_sys_t
174 ogg_sync_state oy; /* sync and verify incoming physical bitstream */
176 int i_streams; /* number of logical bitstreams */
177 logical_stream_t **pp_stream; /* pointer to an array of logical streams */
178 logical_stream_t *p_skelstream; /* pointer to skeleton stream if any */
180 logical_stream_t *p_old_stream; /* pointer to a old logical stream to avoid recreating it */
182 /* program clock reference (in units of 90kHz) derived from the pcr of
183 * the sub-streams */
184 mtime_t i_pcr;
185 mtime_t i_nzpcr_offset;
186 /* informative only */
187 mtime_t i_pcr_jitter;
188 int64_t i_access_delay;
190 /* new stream or starting from a chain */
191 bool b_chained_boundary;
193 /* bitrate */
194 int i_bitrate;
195 bool b_partial_bitrate;
197 /* after reading all headers, the first data page is stuffed into the relevant stream, ready to use */
198 bool b_page_waiting;
200 /* count of total frames in video stream */
201 int64_t i_total_frames;
203 /* length of file in bytes */
204 int64_t i_total_length;
206 /* offset position in file (for reading) */
207 int64_t i_input_position;
209 /* current page being parsed */
210 ogg_page current_page;
212 /* */
213 vlc_meta_t *p_meta;
214 int i_seekpoints;
215 seekpoint_t **pp_seekpoints;
217 /* skeleton */
218 struct
220 uint16_t major;
221 uint16_t minor;
222 } skeleton;
224 /* */
225 int i_attachments;
226 input_attachment_t **attachments;
228 /* preparsing info */
229 bool b_preparsing_done;
230 bool b_es_created;
232 /* Length, if available. */
233 int64_t i_length;
235 bool b_slave;
240 unsigned const char * Read7BitsVariableLE( unsigned const char *,
241 unsigned const char *,
242 uint64_t * );
243 bool Ogg_GetBoundsUsingSkeletonIndex( logical_stream_t *p_stream, int64_t i_time,
244 int64_t *pi_lower, int64_t *pi_upper );