vlc_stream.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:6k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_stream.h
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: vlc_stream.h 8232 2004-07-22 06:59:56Z gbazin $
  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. #ifndef _VLC_STREAM_H
  24. #define _VLC_STREAM_H 1
  25. /**
  26.  * defgroup stream Stream
  27.  *
  28.  *  This will allow you to easily handle read/seek in demuxer modules.
  29.  * @{
  30.  */
  31. /**
  32.  * Possible commands to send to stream_Control() and stream_vaControl()
  33.  */
  34. enum stream_query_e
  35. {
  36.     /* capabilities */
  37.     STREAM_CAN_SEEK,            /**< arg1= vlc_bool_t *   res=cannot fail*/
  38.     STREAM_CAN_FASTSEEK,        /**< arg1= vlc_bool_t *   res=cannot fail*/
  39.     /* */
  40.     STREAM_SET_POSITION,        /**< arg1= int64_t        res=can fail  */
  41.     STREAM_GET_POSITION,        /**< arg1= int64_t *      res=cannot fail*/
  42.     STREAM_GET_SIZE,            /**< arg1= int64_t *      res=cannot fail (0 if no sense)*/
  43.     STREAM_GET_MTU,             /**< arg1= int *          res=cannot fail (0 if no sense)*/
  44.     /* Special for direct access control from demuxer.
  45.      * XXX: avoid using it by all means */
  46.     STREAM_CONTROL_ACCESS,      /* arg1= int i_access_query, args   res: can fail
  47.                                    if access unreachable or access control answer */
  48. };
  49. /**
  50.  * stream_t definition
  51.  */
  52. struct stream_t
  53. {
  54.     VLC_COMMON_MEMBERS
  55.     block_t *(*pf_block)  ( stream_t *, int i_size );
  56.     int      (*pf_read)   ( stream_t *, void *p_read, int i_read );
  57.     int      (*pf_peek)   ( stream_t *, uint8_t **pp_peek, int i_peek );
  58.     int      (*pf_control)( stream_t *, int i_query, va_list );
  59.     stream_sys_t *p_sys;
  60. };
  61. /**
  62.  * Try to read "i_read" bytes into a buffer pointed by "p_read".  If
  63.  * "p_read" is NULL then data are skipped instead of read.  The return
  64.  * value is the real numbers of bytes read/skip. If this value is less
  65.  * than i_read that means that it's the end of the stream.
  66.  */
  67. static inline int stream_Read( stream_t *s, void *p_read, int i_read )
  68. {
  69.     return s->pf_read( s, p_read, i_read );
  70. }
  71. /**
  72.  * Store in pp_peek a pointer to the next "i_peek" bytes in the stream
  73.  * return The real numbers of valid bytes, if it's less
  74.  * or equal to 0, *pp_peek is invalid.
  75.  * note pp_peek is a pointer to internal buffer and it will be invalid as
  76.  * soons as other stream_* functions are called.
  77.  * note Due to input limitation, it could be less than i_peek without meaning
  78.  * the end of the stream (but only when you have i_peek >=
  79.  * p_input->i_bufsize)
  80.  */
  81. static inline int stream_Peek( stream_t *s, uint8_t **pp_peek, int i_peek )
  82. {
  83.     return s->pf_peek( s, pp_peek, i_peek );
  84. }
  85. /**
  86.  * Use to control the "stream_t *". Look at #stream_query_e for
  87.  * possible "i_query" value and format arguments.  Return VLC_SUCCESS
  88.  * if ... succeed ;) and VLC_EGENERIC if failed or unimplemented
  89.  */
  90. static inline int stream_vaControl( stream_t *s, int i_query, va_list args )
  91. {
  92.     return s->pf_control( s, i_query, args );
  93. }
  94. static inline int stream_Control( stream_t *s, int i_query, ... )
  95. {
  96.     va_list args;
  97.     int     i_result;
  98.     va_start( args, i_query );
  99.     i_result = s->pf_control( s, i_query, args );
  100.     va_end( args );
  101.     return i_result;
  102. }
  103. static inline int64_t stream_Tell( stream_t *s )
  104. {
  105.     int64_t i_pos;
  106.     stream_Control( s, STREAM_GET_POSITION, &i_pos );
  107.     return i_pos;
  108. }
  109. static inline int64_t stream_Size( stream_t *s )
  110. {
  111.     int64_t i_pos;
  112.     stream_Control( s, STREAM_GET_SIZE, &i_pos );
  113.     return i_pos;
  114. }
  115. static inline int stream_MTU( stream_t *s )
  116. {
  117.     int i_mtu;
  118.     stream_Control( s, STREAM_GET_MTU, &i_mtu );
  119.     return i_mtu;
  120. }
  121. static inline int stream_Seek( stream_t *s, int64_t i_pos )
  122. {
  123.     return stream_Control( s, STREAM_SET_POSITION, i_pos );
  124. }
  125. /**
  126.  * Read "i_size" bytes and store them in a block_t. If less than "i_size"
  127.  * bytes are available then return what is left and if nothing is availble,
  128.  * return NULL.
  129.  */
  130. static inline block_t *stream_Block( stream_t *s, int i_size )
  131. {
  132.     if( i_size <= 0 ) return NULL;
  133.     if( s->pf_block )
  134.     {
  135.         return s->pf_block( s, i_size );
  136.     }
  137.     else
  138.     {
  139.         /* emulate block read */
  140.         block_t *p_bk = block_New( s, i_size );
  141.         if( p_bk )
  142.         {
  143.             p_bk->i_buffer = stream_Read( s, p_bk->p_buffer, i_size );
  144.             if( p_bk->i_buffer > 0 )
  145.             {
  146.                 return p_bk;
  147.             }
  148.         }
  149.         if( p_bk ) block_Release( p_bk );
  150.         return NULL;
  151.     }
  152. }
  153. VLC_EXPORT( char *, stream_ReadLine, ( stream_t * ) );
  154. /**
  155.  * Create a special stream and a demuxer, this allows chaining demuxers
  156.  */
  157. #define stream_DemuxNew( a, b, c ) __stream_DemuxNew( VLC_OBJECT(a), b, c)
  158. VLC_EXPORT( stream_t *,__stream_DemuxNew, ( vlc_object_t *p_obj, char *psz_demux, es_out_t *out ) );
  159. VLC_EXPORT( void,      stream_DemuxSend,  ( stream_t *s, block_t *p_block ) );
  160. VLC_EXPORT( void,      stream_DemuxDelete,( stream_t *s ) );
  161. /**
  162.  * @}
  163.  */
  164. #endif