decoder.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:5k
- /*****************************************************************************
- * decoder.c: dummy decoder plugin for vlc.
- *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: decoder.c 8913 2004-10-04 17:22:52Z gbazin $
- *
- * Authors: Samuel Hocevar <sam@zoy.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
- *****************************************************************************/
- /*****************************************************************************
- * Preamble
- *****************************************************************************/
- #include <vlc/vlc.h>
- #include <vlc/decoder.h>
- #ifdef HAVE_UNISTD_H
- # include <unistd.h> /* write(), close() */
- #elif defined( WIN32 ) && !defined( UNDER_CE )
- # include <io.h>
- #endif
- #ifdef HAVE_SYS_TYPES_H
- # include <sys/types.h> /* open() */
- #endif
- #ifdef HAVE_SYS_STAT_H
- # include <sys/stat.h>
- #endif
- #ifdef HAVE_FCNTL_H
- # include <fcntl.h>
- #endif
- #ifdef HAVE_LIMITS_H
- # include <limits.h> /* PATH_MAX */
- #endif
- #include <stdio.h> /* sprintf() */
- /*****************************************************************************
- * decoder_sys_t : theora decoder descriptor
- *****************************************************************************/
- struct decoder_sys_t
- {
- int i_fd;
- };
- /*****************************************************************************
- * Local prototypes
- *****************************************************************************/
- static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block );
- /*****************************************************************************
- * OpenDecoder: Open the decoder
- *****************************************************************************/
- int E_(OpenDecoder) ( vlc_object_t *p_this )
- {
- decoder_t *p_dec = (decoder_t*)p_this;
- decoder_sys_t *p_sys;
- char psz_file[ PATH_MAX ];
- vlc_value_t val;
- /* Allocate the memory needed to store the decoder's structure */
- if( ( p_dec->p_sys = p_sys =
- (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
- {
- msg_Err( p_dec, "out of memory" );
- return VLC_EGENERIC;
- }
- sprintf( psz_file, "stream.%i", p_dec->i_object_id );
- #ifndef UNDER_CE
- var_Create( p_dec, "dummy-save-es", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
- var_Get( p_dec, "dummy-save-es", &val );
- if( val.b_bool )
- {
- p_sys->i_fd = open( psz_file, O_WRONLY | O_CREAT | O_TRUNC, 00644 );
- if( p_sys->i_fd == -1 )
- {
- msg_Err( p_dec, "cannot create `%s'", psz_file );
- return VLC_EGENERIC;
- }
- msg_Dbg( p_dec, "dumping stream to file `%s'", psz_file );
- }
- else
- #endif
- {
- p_sys->i_fd = -1;
- }
- /* Set callbacks */
- p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
- DecodeBlock;
- p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
- DecodeBlock;
- return VLC_SUCCESS;
- }
- /****************************************************************************
- * RunDecoder: the whole thing
- ****************************************************************************
- * This function must be fed with ogg packets.
- ****************************************************************************/
- static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
- {
- decoder_sys_t *p_sys = p_dec->p_sys;
- block_t *p_block;
- if( !pp_block || !*pp_block ) return NULL;
- p_block = *pp_block;
- if( p_sys->i_fd >= 0 && p_block->i_buffer )
- {
- #ifndef UNDER_CE
- write( p_sys->i_fd, p_block->p_buffer, p_block->i_buffer );
- #endif
- msg_Dbg( p_dec, "dumped %i bytes", p_block->i_buffer );
- }
- block_Release( p_block );
- return NULL;
- }
- /*****************************************************************************
- * CloseDecoder: decoder destruction
- *****************************************************************************/
- void E_(CloseDecoder) ( vlc_object_t *p_this )
- {
- decoder_t *p_dec = (decoder_t *)p_this;
- decoder_sys_t *p_sys = p_dec->p_sys;
- #ifndef UNDER_CE
- if( p_sys->i_fd >= 0 ) close( p_sys->i_fd );
- #endif
- free( p_sys );
- }