Remove debug
[vlc/davidf-public.git] / include / vlc_demux.h
blob6af44af48c4080d2edc27e86be072c48579ffb78
1 /*****************************************************************************
2 * vlc_demux.h: Demuxer descriptor, queries and methods
3 *****************************************************************************
4 * Copyright (C) 1999-2005 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef VLC_DEMUX_H
25 #define VLC_DEMUX_H 1
27 /**
28 * \file
29 * This files defines functions and structures used by demux objects in vlc
32 #include <vlc_es.h>
33 #include <vlc_stream.h>
34 #include <vlc_es_out.h>
36 /**
37 * \defgroup demux Demux
38 * @{
41 struct demux_t
43 VLC_COMMON_MEMBERS
45 /* Module properties */
46 module_t *p_module;
48 /* eg informative but needed (we can have access+demux) */
49 char *psz_access;
50 char *psz_demux;
51 char *psz_path;
53 /* input stream */
54 stream_t *s; /* NULL in case of a access+demux in one */
56 /* es output */
57 es_out_t *out; /* our p_es_out */
59 /* set by demuxer */
60 int (*pf_demux) ( demux_t * ); /* demux one frame only */
61 int (*pf_control)( demux_t *, int i_query, va_list args);
63 /* Demux has to maintain them uptodate
64 * when it is responsible of seekpoint/title */
65 struct
67 unsigned int i_update; /* Demux sets them on change,
68 Input removes them once take into account*/
69 /* Seekpoint/Title at demux level */
70 int i_title; /* idem, start from 0 (could be menu) */
71 int i_seekpoint; /* idem, start from 0 */
72 } info;
73 demux_sys_t *p_sys;
77 /* demux_meta_t is returned by "meta reader" module to the demuxer */
78 struct demux_meta_t
80 vlc_meta_t *p_meta; /**< meta data */
82 int i_attachments; /**< number of attachments */
83 input_attachment_t **attachments; /**< array of attachments */
86 enum demux_query_e
88 /* I. Common queries to access_demux and demux */
89 /* POSITION double between 0.0 and 1.0 */
90 DEMUX_GET_POSITION, /* arg1= double * res= */
91 DEMUX_SET_POSITION, /* arg1= double res=can fail */
93 /* LENGTH/TIME in microsecond, 0 if unknown */
94 DEMUX_GET_LENGTH, /* arg1= int64_t * res= */
95 DEMUX_GET_TIME, /* arg1= int64_t * res= */
96 DEMUX_SET_TIME, /* arg1= int64_t res=can fail */
98 /* TITLE_INFO only if more than 1 title or 1 chapter */
99 DEMUX_GET_TITLE_INFO, /* arg1=input_title_t*** arg2=int*
100 arg3=int*pi_title_offset(0), arg4=int*pi_seekpoint_offset(0) can fail */
101 /* TITLE/SEEKPOINT, only when TITLE_INFO succeed */
102 DEMUX_SET_TITLE, /* arg1= int can fail */
103 DEMUX_SET_SEEKPOINT, /* arg1= int can fail */
105 /* DEMUX_SET_GROUP only a hit for demuxer (mainly DVB) to allow not
106 * reading everything (you should not use this to call es_out_Control)
107 * if you don't know what to do with it, just IGNORE it, it is safe(r)
108 * -1 means all group, 0 default group (first es added) */
109 DEMUX_SET_GROUP, /* arg1= int, arg2=const vlc_list_t * can fail */
111 /* Ask the demux to demux until the given date at the next pf_demux call
112 * but not more (and not less, at the precision available of course).
113 * XXX: not mandatory (except for subtitle demux) but I will help a lot
114 * for multi-input
116 DEMUX_SET_NEXT_DEMUX_TIME, /* arg1= int64_t * can fail */
117 /* FPS for correct subtitles handling */
118 DEMUX_GET_FPS, /* arg1= double * res=can fail */
120 /* Meta data */
121 DEMUX_GET_META, /* arg1= vlc_meta_t ** res=can fail */
122 DEMUX_HAS_UNSUPPORTED_META, /* arg1= bool * res can fail */
124 /* Attachments */
125 DEMUX_GET_ATTACHMENTS, /* arg1=input_attachment_t***, int* res=can fail */
127 /* RECORD you should accept it only if the stream can be recorded without
128 * any modification or header addition. */
129 DEMUX_CAN_RECORD, /* arg1=bool* res=can fail(assume false) */
130 DEMUX_SET_RECORD_STATE, /* arg1=bool res=can fail */
133 /* II. Specific access_demux queries */
134 DEMUX_CAN_PAUSE = 0x1000, /* arg1= bool* can fail (assume false)*/
135 DEMUX_SET_PAUSE_STATE, /* arg1= bool can fail */
137 DEMUX_GET_PTS_DELAY, /* arg1= int64_t* cannot fail */
139 /* DEMUX_CAN_CONTROL_PACE returns true (*pb_pace) if we can read the
140 * data at our pace */
141 DEMUX_CAN_CONTROL_PACE, /* arg1= bool*pb_pace can fail (assume false) */
143 /* DEMUX_CAN_CONTROL_RATE is called only if DEMUX_CAN_CONTROL_PACE has returned false.
144 * *pb_rate should be true when the rate can be changed (using DEMUX_SET_RATE)
145 * *pb_ts_rescale should be true when the timestamps (pts/dts/pcr) have to be rescaled */
146 DEMUX_CAN_CONTROL_RATE, /* arg1= bool*pb_rate arg2= bool*pb_ts_rescale can fail(assume false) */
147 /* DEMUX_SET_RATE is called only if DEMUX_CAN_CONTROL_RATE has returned true.
148 * It should return the value really used in *pi_rate */
149 DEMUX_SET_RATE, /* arg1= int*pi_rate can fail */
151 DEMUX_CAN_SEEK, /* arg1= bool* can fail (assume false)*/
154 VLC_EXPORT( int, demux_vaControlHelper, ( stream_t *, int64_t i_start, int64_t i_end, int i_bitrate, int i_align, int i_query, va_list args ) );
156 /*************************************************************************
157 * Miscellaneous helpers for demuxers
158 *************************************************************************/
160 LIBVLC_USED
161 static inline bool demux_IsPathExtension( demux_t *p_demux, const char *psz_extension )
163 const char *psz_ext = strrchr ( p_demux->psz_path, '.' );
164 if( !psz_ext || strcasecmp( psz_ext, psz_extension ) )
165 return false;
166 return true;
169 LIBVLC_USED
170 static inline bool demux_IsForced( demux_t *p_demux, const char *psz_name )
172 if( !p_demux->psz_demux || strcmp( p_demux->psz_demux, psz_name ) )
173 return false;
174 return true;
178 * This function will create a packetizer suitable for a demuxer that parses
179 * elementary stream.
181 * The provided es_format_t will be cleaned on error or by
182 * demux_PacketizerDestroy.
184 VLC_EXPORT( decoder_t *,demux_PacketizerNew, ( demux_t *p_demux, es_format_t *p_fmt, const char *psz_msg ) );
187 * This function will destroy a packetizer create by demux_PacketizerNew.
189 VLC_EXPORT( void, demux_PacketizerDestroy, ( decoder_t *p_packetizer ) );
191 /* */
192 #define DEMUX_INIT_COMMON() do { \
193 p_demux->pf_control = Control; \
194 p_demux->pf_demux = Demux; \
195 MALLOC_ERR( p_demux->p_sys, demux_sys_t ); \
196 memset( p_demux->p_sys, 0, sizeof( demux_sys_t ) ); } while(0)
198 #define STANDARD_DEMUX_INIT_MSG( msg ) do { \
199 DEMUX_INIT_COMMON(); \
200 msg_Dbg( p_demux, "%s", msg ); } while(0)
202 #define DEMUX_BY_EXTENSION( ext ) \
203 demux_t *p_demux = (demux_t *)p_this; \
204 if( !demux_IsPathExtension( p_demux, ext ) ) \
205 return VLC_EGENERIC; \
206 DEMUX_INIT_COMMON();
208 #define DEMUX_BY_EXTENSION_MSG( ext, msg ) \
209 demux_t *p_demux = (demux_t *)p_this; \
210 if( !demux_IsPathExtension( p_demux, ext ) ) \
211 return VLC_EGENERIC; \
212 STANDARD_DEMUX_INIT_MSG( msg );
214 #define DEMUX_BY_EXTENSION_OR_FORCED( ext, module ) \
215 demux_t *p_demux = (demux_t *)p_this; \
216 if( !demux_IsPathExtension( p_demux, ext ) && !demux_IsForced( p_demux, module ) ) \
217 return VLC_EGENERIC; \
218 DEMUX_INIT_COMMON();
220 #define DEMUX_BY_EXTENSION_OR_FORCED_MSG( ext, module, msg ) \
221 demux_t *p_demux = (demux_t *)p_this; \
222 if( !demux_IsPathExtension( p_demux, ext ) && !demux_IsForced( p_demux, module ) ) \
223 return VLC_EGENERIC; \
224 STANDARD_DEMUX_INIT_MSG( msg );
226 #define CHECK_PEEK( zepeek, size ) \
227 if( stream_Peek( p_demux->s , &zepeek, size ) < size ){ \
228 msg_Dbg( p_demux, "not enough data" ); return VLC_EGENERIC; }
230 #define CHECK_PEEK_GOTO( zepeek, size ) \
231 if( stream_Peek( p_demux->s , &zepeek, size ) < size ) { \
232 msg_Dbg( p_demux, "not enough data" ); goto error; }
234 #define POKE( peek, stuff, size ) (strncasecmp( (const char *)peek, stuff, size )==0)
237 * @}
240 #endif