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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * demuxdump.c : Pseudo demux module for vlc (dump raw stream)
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2004 VideoLAN
  5.  * $Id: demuxdump.c 8640 2004-09-03 18:38:33Z massiot $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@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 <stdlib.h>                                      /* malloc(), free() */
  27. #include <string.h>                                              /* strdup() */
  28. #include <errno.h>
  29. #include <vlc/vlc.h>
  30. #include <vlc/input.h>
  31. /*****************************************************************************
  32.  * Module descriptor
  33.  *****************************************************************************/
  34. #define FILE_TEXT N_("Filename of dump")
  35. #define FILE_LONGTEXT N_( 
  36.     "Specify a file name to which the raw stream will be dumped." )
  37. #define APPEND_TEXT N_("Append")
  38. #define APPEND_LONGTEXT N_( 
  39.     "If the file exists and this option is selected, the existing file " 
  40.     "will not be overwritten." )
  41. static int  Open( vlc_object_t * );
  42. static void Close ( vlc_object_t * );
  43. vlc_module_begin();
  44.     set_description( _("Filedump demuxer") );
  45.     set_capability( "demux2", 0 );
  46.     add_file( "demuxdump-file", "stream-demux.dump", NULL, FILE_TEXT,
  47.               FILE_LONGTEXT, VLC_FALSE );
  48.     add_bool( "demuxdump-append", 0, NULL, APPEND_TEXT, APPEND_LONGTEXT,
  49.               VLC_FALSE );
  50.     set_callbacks( Open, Close );
  51.     add_shortcut( "dump" );
  52. vlc_module_end();
  53. /*****************************************************************************
  54.  * Local prototypes
  55.  *****************************************************************************/
  56. static int Demux( demux_t * );
  57. static int Control( demux_t *, int,va_list );
  58. #define DUMP_BLOCKSIZE  16384
  59. struct demux_sys_t
  60. {
  61.     char        *psz_file;
  62.     FILE        *p_file;
  63.     uint64_t    i_write;
  64.     uint8_t     buffer[DUMP_BLOCKSIZE];
  65. };
  66. /*
  67.  * Data reading functions
  68.  */
  69. /*****************************************************************************
  70.  * Open: initializes dump structures
  71.  *****************************************************************************/
  72. static int Open( vlc_object_t * p_this )
  73. {
  74.     demux_t     *p_demux = (demux_t*)p_this;
  75.     demux_sys_t *p_sys;
  76.     char        *psz_mode;
  77.     vlc_value_t val;
  78.     vlc_bool_t  b_append;
  79.     /* Accept only if forced */
  80.     if( strcasecmp( p_demux->psz_demux, "dump" ) )
  81.         return VLC_EGENERIC;
  82.     var_Create( p_demux, "demuxdump-append", VLC_VAR_BOOL|VLC_VAR_DOINHERIT );
  83.     var_Get( p_demux, "demuxdump-append", &val );
  84.     b_append = val.b_bool;
  85.     if ( b_append )
  86.         psz_mode = "ab";
  87.     else
  88.         psz_mode = "wb";
  89.     p_demux->pf_demux = Demux;
  90.     p_demux->pf_control = Control;
  91.     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
  92.     p_sys->i_write = 0;
  93.     p_sys->p_file = NULL;
  94.     p_sys->psz_file = var_CreateGetString( p_demux, "demuxdump-file" );
  95.     if( *p_sys->psz_file == '' )
  96.     {
  97.         msg_Warn( p_demux, "no dump file name given" );
  98.         return VLC_EGENERIC;
  99.     }
  100.     if( !strcmp( p_sys->psz_file, "-" ) )
  101.     {
  102.         msg_Info( p_demux, "dumping raw stream to standard output" );
  103.         p_sys->p_file = stdout;
  104.     }
  105.     else if( ( p_sys->p_file = fopen( p_sys->psz_file, psz_mode ) ) == NULL )
  106.     {
  107.         msg_Err( p_demux, "cannot create `%s' for writing", p_sys->psz_file );
  108.         free( p_sys );
  109.         return VLC_EGENERIC;
  110.     }
  111.     msg_Info( p_demux, "%s raw stream to file `%s'",
  112.               b_append ? "appending" : "dumping", p_sys->psz_file );
  113.     return VLC_SUCCESS;
  114. }
  115. /*****************************************************************************
  116.  * Close:
  117.  *****************************************************************************/
  118. static void Close( vlc_object_t *p_this )
  119. {
  120.     demux_t     *p_demux = (demux_t*)p_this;
  121.     demux_sys_t *p_sys = p_demux->p_sys;
  122.     msg_Info( p_demux ,"closing %s ("I64Fd" Kbytes dumped)", p_sys->psz_file,
  123.               p_sys->i_write / 1024 );
  124.     if( p_sys->p_file != stdout )
  125.     {
  126.         fclose( p_sys->p_file );
  127.     }
  128.     free( p_sys->psz_file );
  129.     free( p_sys );
  130. }
  131. /*****************************************************************************
  132.  * Demux: reads and demuxes data packets
  133.  *****************************************************************************
  134.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  135.  *****************************************************************************/
  136. static int Demux( demux_t *p_demux )
  137. {
  138.     demux_sys_t *p_sys = p_demux->p_sys;
  139.     int i_data;
  140.     /* I'm pretty sure that stream_Peek,stream_Read( , NULL ) would be faster*/
  141.     i_data = stream_Read( p_demux->s, p_sys->buffer, DUMP_BLOCKSIZE );
  142.     if ( i_data <= 0 )
  143.         return i_data;
  144.     i_data = fwrite( p_sys->buffer, 1, i_data, p_sys->p_file );
  145.     if( i_data < 0 )
  146.     {
  147.         msg_Err( p_demux, "failed to write data" );
  148.         return -1;
  149.     }
  150. #if 0
  151.     msg_Dbg( p_demux, "dumped %d bytes", i_data );
  152. #endif
  153.     p_sys->i_write += i_data;
  154.     return 1;
  155. }
  156. /*****************************************************************************
  157.  * Demux: reads and demuxes data packets
  158.  *****************************************************************************/
  159. static int Control( demux_t *p_demux, int i_query, va_list args )
  160. {
  161.     return demux2_vaControlHelper( p_demux->s, 0, -1, 0, 1, i_query, args );
  162. }