input.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * input_dummy.c: dummy input plugin, to manage "vlc://" special options
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: af93d5320e65dc92244adc136bd3978f6549ee7f $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_interface.h>
  31. #include <vlc_access.h>
  32. #include <vlc_demux.h>
  33. #include "dummy.h"
  34. /*****************************************************************************
  35.  * Access functions.
  36.  *****************************************************************************/
  37. static ssize_t AccessRead( access_t *p_access, uint8_t *p, size_t i_size )
  38. {
  39.     VLC_UNUSED(p_access);
  40.     memset( p, 0, i_size );
  41.     return i_size;
  42. }
  43. static int AccessControl( access_t *p_access, int i_query, va_list args )
  44. {
  45.     bool        *pb_bool;
  46.     int64_t     *pi_64;
  47.     switch( i_query )
  48.     {
  49.         /* */
  50.         case ACCESS_CAN_SEEK:
  51.         case ACCESS_CAN_FASTSEEK:
  52.         case ACCESS_CAN_PAUSE:
  53.         case ACCESS_CAN_CONTROL_PACE:
  54.             pb_bool = (bool*)va_arg( args, bool* );
  55.             *pb_bool = false;
  56.             break;
  57.         /* */
  58.         case ACCESS_GET_PTS_DELAY:
  59.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  60.             *pi_64 = DEFAULT_PTS_DELAY * 1000;
  61.             break;
  62.         /* */
  63.         case ACCESS_SET_PAUSE_STATE:
  64.         case ACCESS_GET_TITLE_INFO:
  65.         case ACCESS_GET_META:
  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 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 = 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.     free( p_access->psz_demux );
  92.     p_access->psz_demux = strdup( "vlc" );
  93.     return VLC_SUCCESS;
  94. }
  95. /*****************************************************************************
  96.  * Demux
  97.  *****************************************************************************/
  98. struct demux_sys_t
  99. {
  100.     /* The real command */
  101.     int i_command;
  102.     /* Used for the pause command */
  103.     mtime_t expiration;
  104. };
  105. enum
  106. {
  107.     COMMAND_NOP  = 0,
  108.     COMMAND_QUIT = 1,
  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 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://pause:***" command */
  141.     if( i_len > 6 && !strncasecmp( psz_name, "pause:", 6 ) )
  142.     {
  143.         i_arg = atoi( psz_name + 6 );
  144.         msg_Info( p_demux, "command `pause %i'", i_arg );
  145.         p_sys->i_command = COMMAND_PAUSE;
  146.         p_sys->expiration = mdate() + (mtime_t)i_arg * (mtime_t)1000000;
  147.         return VLC_SUCCESS;
  148.     }
  149.  
  150.     msg_Err( p_demux, "unknown command `%s'", psz_name );
  151.     free( p_sys );
  152.     return VLC_EGENERIC;
  153. }
  154. /*****************************************************************************
  155.  * CloseDemux: initialize the target, ie. parse the command
  156.  *****************************************************************************/
  157. void CloseDemux ( vlc_object_t *p_this )
  158. {
  159.     demux_t *p_demux = (demux_t*)p_this;
  160.     free( p_demux->p_sys );
  161. }
  162. /*****************************************************************************
  163.  * Demux: do what the command says
  164.  *****************************************************************************/
  165. static int Demux( demux_t *p_demux )
  166. {
  167.     demux_sys_t *p_sys = p_demux->p_sys;
  168.     bool b_eof = false;
  169.     switch( p_sys->i_command )
  170.     {
  171.         case COMMAND_QUIT:
  172.             b_eof = true;
  173.             libvlc_Quit( p_demux->p_libvlc );
  174.             break;
  175.         case COMMAND_PAUSE:
  176.             if( mdate() >= p_sys->expiration )
  177.                 b_eof = true;
  178.             else
  179.                 msleep( 10000 );
  180.             break;
  181.  
  182.         case COMMAND_NOP:
  183.         default:
  184.             b_eof = true;
  185.             break;
  186.     }
  187.     return b_eof ? 0 : 1;
  188. }
  189. static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
  190. {
  191.     return demux_vaControlHelper( p_demux->s,
  192.                                    0, 0, 0, 1,
  193.                                    i_query, args );
  194. }