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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * access.c
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: demux.c 7546 2004-04-29 13:53:29Z gbazin $
  6.  *
  7.  * Author: 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. #include <stdlib.h>
  24. #include <vlc/vlc.h>
  25. #include <vlc/input.h>
  26. #include "input_internal.h"
  27. /*****************************************************************************
  28.  * access2_New:
  29.  *****************************************************************************/
  30. access_t *__access2_New( vlc_object_t *p_obj,
  31.                          char *psz_access, char *psz_demux, char *psz_path )
  32. {
  33.     access_t *p_access = vlc_object_create( p_obj, VLC_OBJECT_ACCESS );
  34.     if( p_access == NULL )
  35.     {
  36.         msg_Err( p_obj, "vlc_object_create( p_obj, VLC_OBJECT_ACCESS ) failed" );
  37.         return NULL;
  38.     }
  39.     /* Parse URL */
  40.     p_access->psz_access = strdup( psz_access );
  41.     p_access->psz_path   = strdup( psz_path );
  42.     p_access->psz_demux  = strdup( "" );
  43.     msg_Dbg( p_obj, "access2_New: access='%s' path='%s'",
  44.              p_access->psz_access, p_access->psz_path );
  45.     p_access->pf_read    = NULL;
  46.     p_access->pf_block   = NULL;
  47.     p_access->pf_seek    = NULL;
  48.     p_access->pf_control = NULL;
  49.     p_access->p_sys      = NULL;
  50.     p_access->info.i_update = 0;
  51.     p_access->info.i_size   = 0;
  52.     p_access->info.i_pos    = 0;
  53.     p_access->info.b_eof    = VLC_FALSE;
  54.     p_access->info.i_title  = 0;
  55.     p_access->info.i_seekpoint = 0;
  56.     /* Before module_Need (for var_Create...) */
  57.     vlc_object_attach( p_access, p_obj );
  58.     p_access->p_module =
  59.         module_Need( p_access, "access2", p_access->psz_access, VLC_FALSE );
  60.     if( p_access->p_module == NULL )
  61.     {
  62.         vlc_object_detach( p_access );
  63.         free( p_access->psz_access );
  64.         free( p_access->psz_path );
  65.         free( p_access->psz_demux );
  66.         vlc_object_destroy( p_access );
  67.         return NULL;
  68.     }
  69.     return p_access;
  70. }
  71. /*****************************************************************************
  72.  * demux2_Delete:
  73.  *****************************************************************************/
  74. void access2_Delete( access_t *p_access )
  75. {
  76.     module_Unneed( p_access, p_access->p_module );
  77.     vlc_object_detach( p_access );
  78.     free( p_access->psz_access );
  79.     free( p_access->psz_path );
  80.     free( p_access->psz_demux );
  81.     vlc_object_destroy( p_access );
  82. }