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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * stream_filter.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 Laurent Aimar
  5.  * $Id: 99060f89c74e0480bfb737e54820b853e74e1b82 $
  6.  *
  7.  * Author: Laurent Aimar <fenrir _AT_ videolan _DOT_ 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. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include <vlc_common.h>
  27. #include <vlc_stream.h>
  28. #include <libvlc.h>
  29. #include "stream.h"
  30. static void StreamDelete( stream_t * );
  31. stream_t *stream_FilterNew( stream_t *p_source,
  32.                             const char *psz_stream_filter )
  33. {
  34.     stream_t *s;
  35.     s = stream_CommonNew( VLC_OBJECT( p_source ) );
  36.     if( s == NULL )
  37.         return NULL;
  38.     /* */
  39.     s->psz_path = strdup( p_source->psz_path );
  40.     if( !s->psz_path )
  41.     {
  42.         stream_CommonDelete( s );
  43.         return NULL;
  44.     }
  45.     s->p_source = p_source;
  46.     /* */
  47.     vlc_object_attach( s, p_source );
  48.     s->p_module = module_need( s, "stream_filter", psz_stream_filter, true );
  49.     if( !s->p_module )
  50.     {
  51.         stream_CommonDelete( s );
  52.         return NULL;
  53.     }
  54.     s->pf_destroy = StreamDelete;
  55.     return s;
  56. }
  57. stream_t *stream_FilterChainNew( stream_t *p_source,
  58.                                  const char *psz_chain,
  59.                                  bool b_record )
  60. {
  61.     /* Add auto stream filter */
  62.     for( ;; )
  63.     {
  64.         stream_t *p_filter = stream_FilterNew( p_source, NULL );
  65.         if( !p_filter )
  66.             break;
  67.         msg_Dbg( p_filter, "Inserted a stream filter" );
  68.         p_source = p_filter;
  69.     }
  70.     /* Add user stream filter */
  71.     char *psz_tmp = psz_chain ? strdup( psz_chain ) : NULL;
  72.     char *psz = psz_tmp;
  73.     while( psz && *psz )
  74.     {
  75.         stream_t *p_filter;
  76.         char *psz_end = strchr( psz, ':' );
  77.         if( psz_end )
  78.             *psz_end++ = '';
  79.         p_filter = stream_FilterNew( p_source, psz );
  80.         if( p_filter )
  81.             p_source = p_filter;
  82.         else
  83.             msg_Warn( p_source, "failed to insert stream filter %s", psz );
  84.         psz = psz_end;
  85.     }
  86.     free( psz_tmp );
  87.     /* Add record filter if usefull */
  88.     if( b_record )
  89.     {
  90.         stream_t *p_filter = stream_FilterNew( p_source,
  91.                                                "stream_filter_record" );
  92.         if( p_filter )
  93.             p_source = p_filter;
  94.     }
  95.     return p_source;
  96. }
  97. static void StreamDelete( stream_t *s )
  98. {
  99.     module_unneed( s, s->p_module );
  100.     if( s->p_source )
  101.         stream_Delete( s->p_source );
  102.     stream_CommonDelete( s );
  103. }