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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * input_dummy.c: dummy input plugin, to manage "vlc:***" special options
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: input.c 8268 2004-07-24 11:57:47Z fenrir $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  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.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/intf.h>
  30. #include <vlc/input.h>
  31. /*****************************************************************************
  32.  * Access functions.
  33.  *****************************************************************************/
  34. static int AccessRead( access_t *p_access, uint8_t *p, int i_size )
  35. {
  36.     memset( p, 0, i_size );
  37.     return i_size;
  38. }
  39. static int AccessControl( access_t *p_access, int i_query, va_list args )
  40. {
  41.     vlc_bool_t   *pb_bool;
  42.     int          *pi_int;
  43.     int64_t      *pi_64;
  44.     switch( i_query )
  45.     {
  46.         /* */
  47.         case ACCESS_CAN_SEEK:
  48.         case ACCESS_CAN_FASTSEEK:
  49.         case ACCESS_CAN_PAUSE:
  50.         case ACCESS_CAN_CONTROL_PACE:
  51.             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
  52.             *pb_bool = VLC_FALSE;
  53.             break;
  54.         /* */
  55.         case ACCESS_GET_MTU:
  56.             pi_int = (int*)va_arg( args, int * );
  57.             *pi_int = 0;
  58.             break;
  59.         case ACCESS_GET_PTS_DELAY:
  60.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  61.             *pi_64 = DEFAULT_PTS_DELAY * 1000;
  62.             break;
  63.         /* */
  64.         case ACCESS_SET_PAUSE_STATE:
  65.         case ACCESS_GET_TITLE_INFO:
  66.         case ACCESS_SET_TITLE:
  67.         case ACCESS_SET_SEEKPOINT:
  68.             return VLC_EGENERIC;
  69.         default:
  70.             msg_Err( p_access, "unimplemented query in control" );
  71.             return VLC_EGENERIC;
  72.     }
  73.     return VLC_SUCCESS;
  74. }
  75. int E_(OpenAccess)( vlc_object_t *p_this )
  76. {
  77.     access_t *p_access = (access_t*)p_this;
  78.     /* Init p_access */
  79.     p_access->pf_read = AccessRead;
  80.     p_access->pf_block = NULL;
  81.     p_access->pf_seek = NULL;
  82.     p_access->pf_control = AccessControl;
  83.     p_access->info.i_update = 0;
  84.     p_access->info.i_size = 0;
  85.     p_access->info.i_pos = 0;
  86.     p_access->info.b_eof = VLC_FALSE;
  87.     p_access->info.i_title = 0;
  88.     p_access->info.i_seekpoint = 0;
  89.     p_access->p_sys = NULL;
  90.     /* Force dummy demux plug-in */
  91.     p_access->psz_demux = strdup( "vlc" );
  92.     return VLC_SUCCESS;
  93. }
  94. /*****************************************************************************
  95.  * Demux
  96.  *****************************************************************************/
  97. struct demux_sys_t
  98. {
  99.     /* The real command */
  100.     int i_command;
  101.     /* Used for the pause command */
  102.     mtime_t expiration;
  103. };
  104. enum
  105. {
  106.     COMMAND_NOP  = 0,
  107.     COMMAND_QUIT = 1,
  108.     COMMAND_LOOP = 2,
  109.     COMMAND_PAUSE= 3,
  110. };
  111. static int Demux( demux_t * );
  112. static int DemuxControl( demux_t *, int, va_list );
  113. /*****************************************************************************
  114.  * OpenDemux: initialize the target, ie. parse the command
  115.  *****************************************************************************/
  116. int E_(OpenDemux) ( vlc_object_t *p_this )
  117. {
  118.     demux_t *p_demux = (demux_t*)p_this;
  119.     char * psz_name = p_demux->psz_path;
  120.     int i_len = strlen( psz_name );
  121.     demux_sys_t *p_sys;
  122.     int   i_arg;
  123.     p_demux->pf_demux   = Demux;
  124.     p_demux->pf_control = DemuxControl;
  125.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  126.     /* Check for a "vlc:nop" command */
  127.     if( i_len == 3 && !strncasecmp( psz_name, "nop", 3 ) )
  128.     {
  129.         msg_Info( p_demux, "command `nop'" );
  130.         p_sys->i_command = COMMAND_NOP;
  131.         return VLC_SUCCESS;
  132.     }
  133.     /* Check for a "vlc:quit" command */
  134.     if( i_len == 4 && !strncasecmp( psz_name, "quit", 4 ) )
  135.     {
  136.         msg_Info( p_demux, "command `quit'" );
  137.         p_sys->i_command = COMMAND_QUIT;
  138.         return VLC_SUCCESS;
  139.     }
  140.     /* Check for a "vlc:loop" command */
  141.     if( i_len == 4 && !strncasecmp( psz_name, "loop", 4 ) )
  142.     {
  143.         msg_Info( p_demux, "command `loop'" );
  144.         p_sys->i_command = COMMAND_LOOP;
  145.         return VLC_SUCCESS;
  146.     }
  147.     /* Check for a "vlc:pause:***" command */
  148.     if( i_len > 6 && !strncasecmp( psz_name, "pause:", 6 ) )
  149.     {
  150.         i_arg = atoi( psz_name + 6 );
  151.         msg_Info( p_demux, "command `pause %i'", i_arg );
  152.         p_sys->i_command = COMMAND_PAUSE;
  153.         p_sys->expiration = mdate() + (mtime_t)i_arg * (mtime_t)1000000;
  154.         return VLC_SUCCESS;
  155.     }
  156.     msg_Err( p_demux, "unknown command `%s'", psz_name );
  157.     free( p_sys );
  158.     return VLC_EGENERIC;
  159. }
  160. /*****************************************************************************
  161.  * CloseDemux: initialize the target, ie. parse the command
  162.  *****************************************************************************/
  163. void E_(CloseDemux) ( vlc_object_t *p_this )
  164. {
  165.     demux_t *p_demux = (demux_t*)p_this;
  166.     free( p_demux->p_sys );
  167. }
  168. /*****************************************************************************
  169.  * Demux: do what the command says
  170.  *****************************************************************************/
  171. static int Demux( demux_t *p_demux )
  172. {
  173.     demux_sys_t *p_sys = p_demux->p_sys;
  174.     playlist_t *p_playlist;
  175.     vlc_bool_t b_eof = VLC_FALSE;
  176.     p_playlist = vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST, FIND_PARENT );
  177.     if( p_playlist == NULL )
  178.     {
  179.         msg_Err( p_demux, "we are not attached to a playlist" );
  180.         return -1;
  181.     }
  182.     switch( p_sys->i_command )
  183.     {
  184.         case COMMAND_QUIT:
  185.             b_eof = p_demux->p_vlc->b_die = VLC_TRUE;
  186.             break;
  187.         case COMMAND_LOOP:
  188.             playlist_Goto( p_playlist, 0 );
  189.             break;
  190.         case COMMAND_PAUSE:
  191.             if( mdate() >= p_sys->expiration )
  192.                 b_eof = VLC_TRUE;
  193.             else
  194.                 msleep( 10000 );
  195.             break;
  196.         case COMMAND_NOP:
  197.         default:
  198.             b_eof = VLC_TRUE;
  199.             break;
  200.     }
  201.     vlc_object_release( p_playlist );
  202.     return b_eof ? 0 : 1;
  203. }
  204. static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
  205. {
  206.     return demux2_vaControlHelper( p_demux->s,
  207.                                    0, 0, 0, 1,
  208.                                    i_query, args );
  209. }