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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * stream_demux.c
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2008 the VideoLAN team
  5.  * $Id: 7200ac17ce86ea07183c1c27c9a8c47786b7ccf7 $
  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 "demux.h"
  27. #include <libvlc.h>
  28. #include <vlc_codec.h>
  29. /****************************************************************************
  30.  * stream_Demux*: create a demuxer for an outpout stream (allow demuxer chain)
  31.  ****************************************************************************/
  32. struct stream_sys_t
  33. {
  34.     /* Data buffer */
  35.     block_fifo_t *p_fifo;
  36.     block_t      *p_block;
  37.     int64_t     i_pos;
  38.     /* Demuxer */
  39.     char        *psz_name;
  40.     es_out_t    *out;
  41.     demux_t     *p_demux;
  42. };
  43. static int  DStreamRead   ( stream_t *, void *p_read, unsigned int i_read );
  44. static int  DStreamPeek   ( stream_t *, const uint8_t **pp_peek, unsigned int i_peek );
  45. static int  DStreamControl( stream_t *, int i_query, va_list );
  46. static void DStreamDelete ( stream_t * );
  47. static void* DStreamThread ( vlc_object_t * );
  48. stream_t *__stream_DemuxNew( vlc_object_t *p_obj, const char *psz_demux,
  49.                              es_out_t *out )
  50. {
  51.     /* We create a stream reader, and launch a thread */
  52.     stream_t     *s;
  53.     stream_sys_t *p_sys;
  54.     s = stream_CommonNew( p_obj );
  55.     if( s == NULL )
  56.         return NULL;
  57.     s->psz_path  = strdup(""); /* N/A */
  58.     s->pf_read   = DStreamRead;
  59.     s->pf_peek   = DStreamPeek;
  60.     s->pf_control= DStreamControl;
  61.     s->pf_destroy= DStreamDelete;
  62.     s->p_sys = p_sys = malloc( sizeof( *p_sys) );
  63.     if( !s->psz_path || !s->p_sys )
  64.     {
  65.         stream_CommonDelete( s );
  66.         return NULL;
  67.     }
  68.     p_sys->i_pos = 0;
  69.     p_sys->out = out;
  70.     p_sys->p_demux = NULL;
  71.     p_sys->p_block = NULL;
  72.     p_sys->psz_name = strdup( psz_demux );
  73.     /* decoder fifo */
  74.     if( ( p_sys->p_fifo = block_FifoNew() ) == NULL )
  75.     {
  76.         stream_CommonDelete( s );
  77.         free( p_sys->psz_name );
  78.         free( p_sys );
  79.         return NULL;
  80.     }
  81.     vlc_object_attach( s, p_obj );
  82.     if( vlc_thread_create( s, "stream out", DStreamThread,
  83.                            VLC_THREAD_PRIORITY_INPUT ) )
  84.     {
  85.         vlc_object_detach( s );
  86.         stream_CommonDelete( s );
  87.         free( p_sys->psz_name );
  88.         free( p_sys );
  89.         return NULL;
  90.     }
  91.     return s;
  92. }
  93. void stream_DemuxSend( stream_t *s, block_t *p_block )
  94. {
  95.     stream_sys_t *p_sys = s->p_sys;
  96.     if( p_block )
  97.         block_FifoPut( p_sys->p_fifo, p_block );
  98. }
  99. static void DStreamDelete( stream_t *s )
  100. {
  101.     stream_sys_t *p_sys = s->p_sys;
  102.     block_t *p_empty;
  103.     vlc_object_kill( s );
  104.     if( p_sys->p_demux )
  105.         vlc_object_kill( p_sys->p_demux );
  106.     p_empty = block_New( s, 1 ); p_empty->i_buffer = 0;
  107.     block_FifoPut( p_sys->p_fifo, p_empty );
  108.     vlc_thread_join( s );
  109.     if( p_sys->p_demux )
  110.         demux_Delete( p_sys->p_demux );
  111.     if( p_sys->p_block )
  112.         block_Release( p_sys->p_block );
  113.     block_FifoRelease( p_sys->p_fifo );
  114.     free( p_sys->psz_name );
  115.     free( p_sys );
  116.     vlc_object_detach( s );
  117.     stream_CommonDelete( s );
  118. }
  119. static int DStreamRead( stream_t *s, void *p_read, unsigned int i_read )
  120. {
  121.     stream_sys_t *p_sys = s->p_sys;
  122.     uint8_t *p_out = p_read;
  123.     int i_out = 0;
  124.     //msg_Dbg( s, "DStreamRead: wanted %d bytes", i_read );
  125.     while( !s->b_die && !s->b_error && i_read )
  126.     {
  127.         block_t *p_block = p_sys->p_block;
  128.         int i_copy;
  129.         if( !p_block )
  130.         {
  131.             p_block = block_FifoGet( p_sys->p_fifo );
  132.             if( !p_block ) s->b_error = 1;
  133.             p_sys->p_block = p_block;
  134.         }
  135.         if( p_block && i_read )
  136.         {
  137.             i_copy = __MIN( i_read, p_block->i_buffer );
  138.             if( p_out && i_copy ) memcpy( p_out, p_block->p_buffer, i_copy );
  139.             i_read -= i_copy;
  140.             p_out += i_copy;
  141.             i_out += i_copy;
  142.             p_block->i_buffer -= i_copy;
  143.             p_block->p_buffer += i_copy;
  144.             if( !p_block->i_buffer )
  145.             {
  146.                 block_Release( p_block );
  147.                 p_sys->p_block = NULL;
  148.             }
  149.         }
  150.     }
  151.     p_sys->i_pos += i_out;
  152.     return i_out;
  153. }
  154. static int DStreamPeek( stream_t *s, const uint8_t **pp_peek, unsigned int i_peek )
  155. {
  156.     stream_sys_t *p_sys = s->p_sys;
  157.     block_t **pp_block = &p_sys->p_block;
  158.     int i_out = 0;
  159.     *pp_peek = 0;
  160.     //msg_Dbg( s, "DStreamPeek: wanted %d bytes", i_peek );
  161.     while( !s->b_die && !s->b_error && i_peek )
  162.     {
  163.         int i_copy;
  164.         if( !*pp_block )
  165.         {
  166.             *pp_block = block_FifoGet( p_sys->p_fifo );
  167.             if( !*pp_block ) s->b_error = 1;
  168.         }
  169.         if( *pp_block && i_peek )
  170.         {
  171.             i_copy = __MIN( i_peek, (*pp_block)->i_buffer );
  172.             i_peek -= i_copy;
  173.             i_out += i_copy;
  174.             if( i_peek ) pp_block = &(*pp_block)->p_next;
  175.         }
  176.     }
  177.     if( p_sys->p_block )
  178.     {
  179.         p_sys->p_block = block_ChainGather( p_sys->p_block );
  180.         *pp_peek = p_sys->p_block->p_buffer;
  181.     }
  182.     return i_out;
  183. }
  184. static int DStreamControl( stream_t *s, int i_query, va_list args )
  185. {
  186.     stream_sys_t *p_sys = s->p_sys;
  187.     int64_t    *p_i64;
  188.     bool *p_b;
  189.     switch( i_query )
  190.     {
  191.         case STREAM_GET_SIZE:
  192.             p_i64 = (int64_t*) va_arg( args, int64_t * );
  193.             *p_i64 = 0;
  194.             return VLC_SUCCESS;
  195.         case STREAM_CAN_SEEK:
  196.             p_b = (bool*) va_arg( args, bool * );
  197.             *p_b = false;
  198.             return VLC_SUCCESS;
  199.         case STREAM_CAN_FASTSEEK:
  200.             p_b = (bool*) va_arg( args, bool * );
  201.             *p_b = false;
  202.             return VLC_SUCCESS;
  203.         case STREAM_GET_POSITION:
  204.             p_i64 = (int64_t*) va_arg( args, int64_t * );
  205.             *p_i64 = p_sys->i_pos;
  206.             return VLC_SUCCESS;
  207.         case STREAM_SET_POSITION:
  208.         {
  209.             int64_t i64 = (int64_t)va_arg( args, int64_t );
  210.             int i_skip;
  211.             if( i64 < p_sys->i_pos ) return VLC_EGENERIC;
  212.             i_skip = i64 - p_sys->i_pos;
  213.             while( i_skip > 0 )
  214.             {
  215.                 int i_read = DStreamRead( s, NULL, (long)i_skip );
  216.                 if( i_read <= 0 ) return VLC_EGENERIC;
  217.                 i_skip -= i_read;
  218.             }
  219.             return VLC_SUCCESS;
  220.         }
  221.         case STREAM_CONTROL_ACCESS:
  222.         case STREAM_GET_CONTENT_TYPE:
  223.         case STREAM_SET_RECORD_STATE:
  224.             return VLC_EGENERIC;
  225.         default:
  226.             msg_Err( s, "invalid DStreamControl query=0x%x", i_query );
  227.             return VLC_EGENERIC;
  228.     }
  229. }
  230. static void* DStreamThread( vlc_object_t* p_this )
  231. {
  232.     stream_t *s = (stream_t *)p_this;
  233.     stream_sys_t *p_sys = s->p_sys;
  234.     demux_t *p_demux;
  235.     int canc = vlc_savecancel();
  236.     /* Create the demuxer */
  237.     if( !(p_demux = demux_New( s, "", p_sys->psz_name, "", s, p_sys->out,
  238.                                false )) )
  239.     {
  240.         return NULL;
  241.     }
  242.     /* stream_Demux cannot apply DVB filters.
  243.      * Get all programs and let the E/S output sort them out. */
  244.     demux_Control( p_demux, DEMUX_SET_GROUP, -1, NULL );
  245.     p_sys->p_demux = p_demux;
  246.     /* Main loop */
  247.     while( !s->b_die && !p_demux->b_die )
  248.     {
  249.         if( demux_Demux( p_demux ) <= 0 ) break;
  250.     }
  251.     vlc_restorecancel( canc );
  252.     vlc_object_kill( p_demux );
  253.     return NULL;
  254. }