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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * decoder.c: dummy decoder plugin for vlc.
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 the VideoLAN team
  5.  * $Id: ad1abaa4beaac6c3fee452f3fc9df90c91a49eed $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.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. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_codec.h>
  31. #ifdef HAVE_UNISTD_H
  32. #   include <unistd.h> /* write(), close() */
  33. #elif defined( WIN32 ) && !defined( UNDER_CE )
  34. #   include <io.h>
  35. #endif
  36. #ifdef HAVE_SYS_TYPES_H
  37. #   include <sys/types.h> /* open() */
  38. #endif
  39. #ifdef HAVE_SYS_STAT_H
  40. #   include <sys/stat.h>
  41. #endif
  42. #ifdef HAVE_FCNTL_H
  43. #   include <fcntl.h>
  44. #endif
  45. #include <limits.h> /* PATH_MAX */
  46. #include "dummy.h"
  47. /*****************************************************************************
  48.  * decoder_sys_t : theora decoder descriptor
  49.  *****************************************************************************/
  50. struct decoder_sys_t
  51. {
  52.     int i_fd;
  53. };
  54. /*****************************************************************************
  55.  * Local prototypes
  56.  *****************************************************************************/
  57. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block );
  58. /*****************************************************************************
  59.  * OpenDecoder: Open the decoder
  60.  *****************************************************************************/
  61. static int OpenDecoderCommon( vlc_object_t *p_this, bool b_force_dump )
  62. {
  63.     decoder_t *p_dec = (decoder_t*)p_this;
  64.     decoder_sys_t *p_sys;
  65.     char psz_file[ PATH_MAX ];
  66.     vlc_value_t val;
  67.     /* Allocate the memory needed to store the decoder's structure */
  68.     if( ( p_dec->p_sys = p_sys =
  69.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  70.     {
  71.         return VLC_ENOMEM;
  72.     }
  73.     snprintf( psz_file, sizeof( psz_file), "stream.%p", p_dec );
  74. #ifndef UNDER_CE
  75.     if( !b_force_dump )
  76.     {
  77.         var_Create( p_dec, "dummy-save-es", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  78.         var_Get( p_dec, "dummy-save-es", &val );
  79.         b_force_dump = val.b_bool;
  80.     }
  81.     if( b_force_dump )
  82.     {
  83.         p_sys->i_fd = open( psz_file, O_WRONLY | O_CREAT | O_TRUNC, 00644 );
  84.         if( p_sys->i_fd == -1 )
  85.         {
  86.             msg_Err( p_dec, "cannot create `%s'", psz_file );
  87.             free( p_sys );
  88.             return VLC_EGENERIC;
  89.         }
  90.         msg_Dbg( p_dec, "dumping stream to file `%s'", psz_file );
  91.     }
  92.     else
  93. #endif
  94.     {
  95.         p_sys->i_fd = -1;
  96.     }
  97.     /* Set callbacks */
  98.     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
  99.         DecodeBlock;
  100.     p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
  101.         DecodeBlock;
  102.     p_dec->pf_decode_sub = (subpicture_t *(*)(decoder_t *, block_t **))
  103.         DecodeBlock;
  104.     es_format_Copy( &p_dec->fmt_out, &p_dec->fmt_in );
  105.     return VLC_SUCCESS;
  106. }
  107. int OpenDecoder( vlc_object_t *p_this )
  108. {
  109.     return OpenDecoderCommon( p_this, false );
  110. }
  111. int  OpenDecoderDump( vlc_object_t *p_this )
  112. {
  113.     return OpenDecoderCommon( p_this, true );
  114. }
  115. /****************************************************************************
  116.  * RunDecoder: the whole thing
  117.  ****************************************************************************
  118.  * This function must be fed with ogg packets.
  119.  ****************************************************************************/
  120. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  121. {
  122.     decoder_sys_t *p_sys = p_dec->p_sys;
  123.     block_t *p_block;
  124.     if( !pp_block || !*pp_block ) return NULL;
  125.     p_block = *pp_block;
  126.     if( p_sys->i_fd >= 0 &&
  127.         p_block->i_buffer > 0 &&
  128.         (p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) ) == 0 )
  129.     {
  130. #ifndef UNDER_CE
  131.         write( p_sys->i_fd, p_block->p_buffer, p_block->i_buffer );
  132. #endif
  133.         msg_Dbg( p_dec, "dumped %zu bytes", p_block->i_buffer );
  134.     }
  135.     block_Release( p_block );
  136.     return NULL;
  137. }
  138. /*****************************************************************************
  139.  * CloseDecoder: decoder destruction
  140.  *****************************************************************************/
  141. void CloseDecoder ( vlc_object_t *p_this )
  142. {
  143.     decoder_t *p_dec = (decoder_t *)p_this;
  144.     decoder_sys_t *p_sys = p_dec->p_sys;
  145. #ifndef UNDER_CE
  146.     if( p_sys->i_fd >= 0 )
  147.         close( p_sys->i_fd );
  148. #endif
  149.     free( p_sys );
  150. }