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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * mmsh.h:
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: mmsh.h 7903 2004-06-05 21:53:24Z fenrir $
  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. typedef struct
  24. {
  25.     uint16_t i_type;
  26.     uint16_t i_size;
  27.     uint32_t i_sequence;
  28.     uint16_t i_unknown;
  29.     uint16_t i_size2;
  30.     int      i_data;
  31.     uint8_t  *p_data;
  32. } chunk_t;
  33. #define BUFFER_SIZE 65536
  34. struct access_sys_t
  35. {
  36.     int             i_proto;
  37.     int             fd;
  38.     vlc_url_t       url;
  39.     int             i_request_context;
  40.     uint8_t         buffer[BUFFER_SIZE + 1];
  41.     vlc_bool_t      b_broadcast;
  42.     uint8_t         *p_header;
  43.     int             i_header;
  44.     uint8_t         *p_packet;
  45.     uint32_t        i_packet_sequence;
  46.     unsigned int    i_packet_used;
  47.     unsigned int    i_packet_length;
  48.     int64_t         i_start;
  49.     asf_header_t    asfh;
  50.     guid_t          guid;
  51. };