]> git.sesse.net Git - vlc/blob - include/vlc_block.h
* include/vlc_block.h: block_Duplicate() needs to duplicate all the fields of block_t.
[vlc] / include / vlc_block.h
1 /*****************************************************************************
2  * vlc_block.h: Data blocks management functions
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
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.
13  *
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.
18  *
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_BLOCK_H
25 #define _VLC_BLOCK_H 1
26
27 /****************************************************************************
28  * block:
29  ****************************************************************************
30  * - block_sys_t is opaque and thus block_t->p_sys is PRIVATE
31  * - i_flags may not always be set (ie could be 0, even for a key frame
32  *      it depends where you receive the buffer (before/after a packetizer
33  *      and the demux/packetizer implementations.
34  * - i_dts/i_pts could be 0, it means no pts
35  * - i_length: length in microseond of the packet, can be null except in the
36  *      sout where it is mandatory.
37  * - i_rate 0 or a valid input rate, look at vlc_input.h
38  *
39  * - i_buffer number of valid data pointed by p_buffer
40  *      you can freely decrease it but never increase it yourself
41  *      (use block_Realloc)
42  * - p_buffer: pointer over datas. You should never overwrite it, you can
43  *   only incremment it to skip datas, in others cases use block_Realloc
44  *   (don't duplicate yourself in a bigger buffer, block_Realloc is
45  *   optimised for prehader/postdatas increase)
46  ****************************************************************************/
47 typedef struct block_sys_t block_sys_t;
48
49 /** The content doesn't follow the last block, or is probably broken */
50 #define BLOCK_FLAG_DISCONTINUITY 0x0001
51 /** Intra frame */
52 #define BLOCK_FLAG_TYPE_I        0x0002
53 /** Inter frame with backward reference only */
54 #define BLOCK_FLAG_TYPE_P        0x0004
55 /** Inter frame with backward and forward reference */
56 #define BLOCK_FLAG_TYPE_B        0x0008
57 /** For inter frame when you don't know the real type */
58 #define BLOCK_FLAG_TYPE_PB       0x0010
59 /** Warm that this block is a header one */
60 #define BLOCK_FLAG_HEADER        0x0020
61 /** This is the last block of the frame */
62 #define BLOCK_FLAG_END_OF_FRAME  0x0040
63
64 #define BLOCK_FLAG_PRIVATE_MASK  0xffff0000
65 #define BLOCK_FLAG_PRIVATE_SHIFT 16
66
67 struct block_t
68 {
69     block_t     *p_next;
70
71     uint32_t    i_flags;
72
73     mtime_t     i_pts;
74     mtime_t     i_dts;
75     mtime_t     i_length;
76
77     int         i_samples; /* Used for audio */
78     int         i_rate;
79
80     int         i_buffer;
81     uint8_t     *p_buffer;
82
83     /* This way the block_Release can be overloaded
84      * Don't mess with it now, if you need it the ask on ML
85      */
86     void        (*pf_release)   ( block_t * );
87
88     /* It's an object that should be valid as long as the block_t is valid */
89     /* It should become a true block manager to reduce malloc/free */
90     vlc_object_t    *p_manager;
91
92     /* Following fields are private, user should never touch it */
93     /* XXX never touch that OK !!! the first that access that will
94      * have cvs account removed ;) XXX */
95     block_sys_t *p_sys;
96 };
97
98 /****************************************************************************
99  * Blocks functions:
100  ****************************************************************************
101  * - block_New : create a new block with the requested size ( >= 0 ), return
102  *      NULL for failure.
103  * - block_Release : release a block allocated with block_New.
104  * - block_Realloc : realloc a block,
105  *      i_pre: how many bytes to insert before body if > 0, else how many
106  *      bytes of body to skip (the latter can be done without using
107  *      block_Realloc i_buffer -= -i_pre, p_buffer += -i_pre as i_pre < 0)
108  *      i_body (>= 0): the final size of the body (decreasing it can directly
109  *      be done with i_buffer = i_body).
110  *      with preheader and or body (increase
111  *      and decrease are supported). Use it as it is optimised.
112  * - block_Duplicate : create a copy of a block.
113  ****************************************************************************/
114 #define block_New( a, b ) __block_New( VLC_OBJECT(a), b )
115 VLC_EXPORT( block_t *,  __block_New,        ( vlc_object_t *, int ) );
116 VLC_EXPORT( block_t *, block_Realloc,       ( block_t *, int i_pre, int i_body ) );
117
118 static inline block_t *block_Duplicate( block_t *p_block )
119 {
120     block_t *p_dup = block_New( p_block->p_manager, p_block->i_buffer );
121
122     p_dup->i_dts     = p_block->i_dts;
123     p_dup->i_pts     = p_block->i_pts;
124     p_dup->i_flags   = p_block->i_flags;
125     p_dup->i_length  = p_block->i_length;
126     p_dup->i_rate    = p_block->i_rate;
127     p_dup->i_samples = p_block->i_samples;
128
129     if( p_dup && p_block->i_buffer > 0 )
130         memcpy( p_dup->p_buffer, p_block->p_buffer, p_block->i_buffer );
131
132     return p_dup;
133 }
134 static inline void block_Release( block_t *p_block )
135 {
136     p_block->pf_release( p_block );
137 }
138
139 /****************************************************************************
140  * Chains of blocks functions helper
141  ****************************************************************************
142  * - block_ChainAppend : append a block the the last block of a chain. Try to
143  *      avoid using with a lot of data as it's really slow, prefer
144  *      block_ChainLastAppend
145  * - block_ChainLastAppend : use a pointer over a pointer to the next blocks,
146  *      and update it.
147  * - block_ChainRelease : release a chain of block
148  * - block_ChainExtract : extract data from a chain, return real bytes counts
149  * - block_ChainGather : gather a chain, free it and return a block.
150  ****************************************************************************/
151 static inline void block_ChainAppend( block_t **pp_list, block_t *p_block )
152 {
153     if( *pp_list == NULL )
154     {
155         *pp_list = p_block;
156     }
157     else
158     {
159         block_t *p = *pp_list;
160
161         while( p->p_next ) p = p->p_next;
162         p->p_next = p_block;
163     }
164 }
165
166 static inline void block_ChainLastAppend( block_t ***ppp_last, block_t *p_block  )
167 {
168     block_t *p_last = p_block;
169
170     **ppp_last = p_block;
171
172     while( p_last->p_next ) p_last = p_last->p_next;
173     *ppp_last = &p_last->p_next;
174 }
175
176 static inline void block_ChainRelease( block_t *p_block )
177 {
178     while( p_block )
179     {
180         block_t *p_next = p_block->p_next;
181         block_Release( p_block );
182         p_block = p_next;
183     }
184 }
185 static int block_ChainExtract( block_t *p_list, void *p_data, int i_max )
186 {
187     block_t *b;
188     int     i_total = 0;
189     uint8_t *p = (uint8_t*)p_data;
190
191     for( b = p_list; b != NULL; b = b->p_next )
192     {
193         int i_copy = __MIN( i_max, b->i_buffer );
194         if( i_copy > 0 )
195         {
196             memcpy( p, b->p_buffer, i_copy );
197             i_max   -= i_copy;
198             i_total += i_copy;
199             p       += i_copy;
200
201             if( i_max == 0 )
202                 return i_total;
203         }
204     }
205     return i_total;
206 }
207
208 static inline block_t *block_ChainGather( block_t *p_list )
209 {
210     int     i_total = 0;
211     block_t *b, *g;
212
213     if( p_list->p_next == NULL )
214         return p_list;  /* Already gathered */
215
216     for( b = p_list; b != NULL; b = b->p_next )
217         i_total += b->i_buffer;
218
219     g = block_New( p_list->p_manager, i_total );
220     block_ChainExtract( p_list, g->p_buffer, g->i_buffer );
221
222     g->i_flags = p_list->i_flags;
223     g->i_pts   = p_list->i_pts;
224     g->i_dts   = p_list->i_dts;
225
226     /* free p_list */
227     block_ChainRelease( p_list );
228     return g;
229 }
230
231
232 /****************************************************************************
233  * Fifos of blocks.
234  ****************************************************************************
235  * Avoid touching block_fifo_t unless you really know what you are doing.
236  * ( Some race conditions has to be correctly handled, like in win32 ;)
237  * - block_FifoNew : create and init a new fifo
238  * - block_FifoRelease : destroy a fifo and free all blocks in it.
239  * - block_FifoEmpty : free all blocks in a fifo
240  * - block_FifoPut : put a block
241  * - block_FifoGet : get a packet from the fifo (and wait if it is empty)
242  * - block_FifoShow : show the first packet of the fifo (and wait if
243  *      needed), becarefull, you can use it ONLY if you are sure to be the
244  *      only one getting data from the fifo.
245  ****************************************************************************/
246 struct block_fifo_t
247 {
248     vlc_mutex_t         lock;                         /* fifo data lock */
249     vlc_cond_t          wait;         /* fifo data conditional variable */
250
251     int                 i_depth;
252     block_t             *p_first;
253     block_t             **pp_last;
254     int                 i_size;
255 };
256
257
258 #define block_FifoNew( a ) __block_FifoNew( VLC_OBJECT(a) )
259 VLC_EXPORT( block_fifo_t *, __block_FifoNew,    ( vlc_object_t * ) );
260 VLC_EXPORT( void,           block_FifoRelease,  ( block_fifo_t * ) );
261 VLC_EXPORT( void,           block_FifoEmpty,    ( block_fifo_t * ) );
262 VLC_EXPORT( int,            block_FifoPut,      ( block_fifo_t *, block_t * ) );
263 VLC_EXPORT( block_t *,      block_FifoGet,      ( block_fifo_t * ) );
264 VLC_EXPORT( block_t *,      block_FifoShow,     ( block_fifo_t * ) );
265
266 #endif /* VLC_BLOCK_H */