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

midi

开发平台:

Unix_Linux

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