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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * decoder.c: dummy decoder plugin for vlc.
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: decoder.c 8913 2004-10-04 17:22:52Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. #include <vlc/decoder.h>
  28. #ifdef HAVE_UNISTD_H
  29. #   include <unistd.h> /* write(), close() */
  30. #elif defined( WIN32 ) && !defined( UNDER_CE )
  31. #   include <io.h>
  32. #endif
  33. #ifdef HAVE_SYS_TYPES_H
  34. #   include <sys/types.h> /* open() */
  35. #endif
  36. #ifdef HAVE_SYS_STAT_H
  37. #   include <sys/stat.h>
  38. #endif
  39. #ifdef HAVE_FCNTL_H
  40. #   include <fcntl.h>
  41. #endif
  42. #ifdef HAVE_LIMITS_H
  43. #   include <limits.h> /* PATH_MAX */
  44. #endif
  45. #include <stdio.h> /* sprintf() */
  46. /*****************************************************************************
  47.  * decoder_sys_t : theora decoder descriptor
  48.  *****************************************************************************/
  49. struct decoder_sys_t
  50. {
  51.     int i_fd;
  52. };
  53. /*****************************************************************************
  54.  * Local prototypes
  55.  *****************************************************************************/
  56. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block );
  57. /*****************************************************************************
  58.  * OpenDecoder: Open the decoder
  59.  *****************************************************************************/
  60. int E_(OpenDecoder) ( vlc_object_t *p_this )
  61. {
  62.     decoder_t *p_dec = (decoder_t*)p_this;
  63.     decoder_sys_t *p_sys;
  64.     char psz_file[ PATH_MAX ];
  65.     vlc_value_t val;
  66.     /* Allocate the memory needed to store the decoder's structure */
  67.     if( ( p_dec->p_sys = p_sys =
  68.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  69.     {
  70.         msg_Err( p_dec, "out of memory" );
  71.         return VLC_EGENERIC;
  72.     }
  73.     sprintf( psz_file, "stream.%i", p_dec->i_object_id );
  74. #ifndef UNDER_CE
  75.     var_Create( p_dec, "dummy-save-es", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  76.     var_Get( p_dec, "dummy-save-es", &val );
  77.     if( val.b_bool )
  78.     {
  79.         p_sys->i_fd = open( psz_file, O_WRONLY | O_CREAT | O_TRUNC, 00644 );
  80.         if( p_sys->i_fd == -1 )
  81.         {
  82.             msg_Err( p_dec, "cannot create `%s'", psz_file );
  83.             return VLC_EGENERIC;
  84.         }
  85.         msg_Dbg( p_dec, "dumping stream to file `%s'", psz_file );
  86.     }
  87.     else
  88. #endif
  89.     {
  90.         p_sys->i_fd = -1;
  91.     }
  92.     /* Set callbacks */
  93.     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
  94.         DecodeBlock;
  95.     p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
  96.         DecodeBlock;
  97.     return VLC_SUCCESS;
  98. }
  99. /****************************************************************************
  100.  * RunDecoder: the whole thing
  101.  ****************************************************************************
  102.  * This function must be fed with ogg packets.
  103.  ****************************************************************************/
  104. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  105. {
  106.     decoder_sys_t *p_sys = p_dec->p_sys;
  107.     block_t *p_block;
  108.     if( !pp_block || !*pp_block ) return NULL;
  109.     p_block = *pp_block;
  110.     if( p_sys->i_fd >= 0 && p_block->i_buffer )
  111.     {
  112. #ifndef UNDER_CE
  113.         write( p_sys->i_fd, p_block->p_buffer, p_block->i_buffer );
  114. #endif
  115.         msg_Dbg( p_dec, "dumped %i bytes", p_block->i_buffer );
  116.     }
  117.     block_Release( p_block );
  118.     return NULL;
  119. }
  120. /*****************************************************************************
  121.  * CloseDecoder: decoder destruction
  122.  *****************************************************************************/
  123. void E_(CloseDecoder) ( vlc_object_t *p_this )
  124. {
  125.     decoder_t *p_dec = (decoder_t *)p_this;
  126.     decoder_sys_t *p_sys = p_dec->p_sys;
  127. #ifndef UNDER_CE
  128.     if( p_sys->i_fd >= 0 ) close( p_sys->i_fd );
  129. #endif
  130.     free( p_sys );
  131. }