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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * demux.c: demux functions for dvdplay.
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2001 VideoLAN
  5.  * $Id: demux.c 7936 2004-06-07 18:32:12Z fenrir $
  6.  *
  7.  * Author: St閜hane Borel <stef@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. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <string.h>
  29. #include <vlc/vlc.h>
  30. #include <vlc/input.h>
  31. #include <vlc/intf.h>
  32. #include "../../demux/mpeg/system.h"
  33. #ifdef HAVE_UNISTD_H
  34. #   include <unistd.h>
  35. #endif
  36. #include <fcntl.h>
  37. #include <sys/types.h>
  38. #include <sys/stat.h>
  39. #include <string.h>
  40. #include <errno.h>
  41. #ifdef STRNCASECMP_IN_STRINGS_H
  42. #   include <strings.h>
  43. #endif
  44. #include "vcd.h"
  45. #include "vcdplayer.h"
  46. #include "intf.h"
  47. /* how many packets vcdx_Demux will read in each loop */
  48. /* #define vcdplay_READ_ONCE 64 */
  49. /*****************************************************************************
  50.  * Local prototypes
  51.  *****************************************************************************/
  52. static int  Demux         ( input_thread_t * );
  53. /*****************************************************************************
  54.  * Private structure
  55.  *****************************************************************************/
  56. struct demux_sys_t
  57. {
  58.     vcd_data_t * p_vcd;
  59.     module_t *   p_module;
  60.     mpeg_demux_t mpeg;
  61. };
  62. /*****************************************************************************
  63.  * InitVCD: initializes structures
  64.  *****************************************************************************/
  65. int E_(InitVCD) ( vlc_object_t *p_this )
  66. {
  67.     input_thread_t *p_input = (input_thread_t *)p_this;
  68.     vcd_data_t *    p_vcd = (vcd_data_t *)p_input->p_access_data;
  69.     demux_sys_t *   p_demux;
  70.     printf("++++ InitVCD CALLEDn");
  71.     
  72.     if( p_input->stream.i_method != INPUT_METHOD_VCD )
  73.     {
  74.         return VLC_EGENERIC;
  75.     }
  76.     p_demux = p_input->p_demux_data = malloc( sizeof(demux_sys_t ) );
  77.     if( p_demux == NULL )
  78.     {
  79.         return VLC_ENOMOD;
  80.     }
  81.     p_input->p_private = (void*)&p_demux->mpeg;
  82.     p_demux->p_module = module_Need( p_input, "mpeg-system", NULL, 0 );
  83.     if( p_demux->p_module == NULL )
  84.     {
  85.         free( p_input->p_demux_data );
  86.         return VLC_ENOMOD;
  87.     }
  88.     p_input->p_demux_data->p_vcd = p_vcd;
  89.     p_input->pf_demux = Demux;
  90.     p_input->pf_demux_control = demux_vaControlDefault;
  91.     p_input->pf_rewind = NULL;
  92.     p_vcd->p_intf = NULL;
  93.     p_vcd->i_still_time = 0;
  94.     return VLC_SUCCESS;
  95. }
  96. /*****************************************************************************
  97.  * EndVCD: frees unused data
  98.  *****************************************************************************/
  99. void E_(EndVCD) ( vlc_object_t *p_this )
  100. {
  101.     input_thread_t *p_input = (input_thread_t *)p_this;
  102.     vcd_data_t *    p_vcd = p_input->p_demux_data->p_vcd;
  103.     intf_thread_t * p_intf = NULL;
  104.     p_intf = vlc_object_find( p_input, VLC_OBJECT_INTF, FIND_CHILD );
  105.     if( p_intf != NULL )
  106.     {
  107.         intf_StopThread( p_intf );
  108.         vlc_object_detach( p_intf );
  109.         vlc_object_release( p_intf );
  110.         intf_Destroy( p_intf );
  111.     }
  112.     p_vcd->p_intf = NULL;
  113.     module_Unneed( p_input, p_input->p_demux_data->p_module );
  114.     free( p_input->p_demux_data );
  115. }
  116. /*****************************************************************************
  117.  * Demux
  118.  *****************************************************************************/
  119. static int Demux( input_thread_t * p_input )
  120. {
  121.     vcd_data_t *            p_vcd;
  122.     data_packet_t *         p_data;
  123.     ssize_t                 i_result;
  124.     ptrdiff_t               i_remains;
  125.     int                     i_data_nb = 0;
  126.     p_vcd = p_input->p_demux_data->p_vcd;
  127.     /* Read headers to compute payload length */
  128.     do
  129.     {
  130.         i_result = p_input->p_demux_data->mpeg.pf_read_ps( p_input, &p_data );
  131.         if( i_result <= 0 )
  132.         {
  133.             return i_result;
  134.         }
  135.         i_remains = p_input->p_last_data - p_input->p_current_data;
  136.         p_input->p_demux_data->mpeg.pf_demux_ps( p_input, p_data );
  137.         ++i_data_nb;
  138.     }
  139.     while( i_remains );
  140. //    if( p_vcd->b_still && p_vcd->b_end_of_cell && p_vcd->p_intf != NULL )
  141.     if( p_vcd->i_still_time && p_vcd->b_end_of_cell && p_vcd->p_intf != NULL )
  142.     {
  143.         pgrm_descriptor_t * p_pgrm;
  144.         /* when we receive still_time flag, we have to pause immediately */
  145.         var_SetInteger( p_input, "state", PAUSE_S );
  146.         vcdIntfStillTime( p_vcd->p_intf, p_vcd->i_still_time );
  147.         p_vcd->i_still_time = 0;
  148.         vlc_mutex_lock( &p_input->stream.stream_lock );
  149.         p_pgrm = p_input->stream.p_selected_program;
  150.         p_pgrm->i_synchro_state = SYNCHRO_REINIT;
  151.         vlc_mutex_unlock( &p_input->stream.stream_lock );
  152.         input_ClockManageControl( p_input, p_pgrm, 0 );
  153.     }
  154.     return i_data_nb;
  155. }