⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decoder.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 4 页
字号:
/***************************************************************************** * decoder.c: Functions for the management of decoders ***************************************************************************** * Copyright (C) 1999-2004 the VideoLAN team * $Id: 0ed169b1b241c22f80f1720df42dc6a880502be6 $ * * Authors: Christophe Massiot <massiot@via.ecp.fr> *          Gildas Bazin <gbazin@videolan.org> *          Laurent Aimar <fenrir@via.ecp.fr> * * 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <assert.h>#include <vlc_common.h>#include <vlc_block.h>#include <vlc_vout.h>#include <vlc_aout.h>#include <vlc_sout.h>#include <vlc_codec.h>#include <vlc_osd.h>#include <vlc_interface.h>#include "audio_output/aout_internal.h"#include "stream_output/stream_output.h"#include "input_internal.h"static decoder_t * CreateDecoder( input_thread_t *, es_format_t *, int );static void        DeleteDecoder( decoder_t * );static void*        DecoderThread( vlc_object_t * );static int         DecoderDecode( decoder_t * p_dec, block_t *p_block );/* Buffers allocation callbacks for the decoders */static aout_buffer_t *aout_new_buffer( decoder_t *, int );static void aout_del_buffer( decoder_t *, aout_buffer_t * );static picture_t *vout_new_buffer( decoder_t * );static void vout_del_buffer( decoder_t *, picture_t * );static void vout_link_picture( decoder_t *, picture_t * );static void vout_unlink_picture( decoder_t *, picture_t * );static subpicture_t *spu_new_buffer( decoder_t * );static void spu_del_buffer( decoder_t *, subpicture_t * );static es_format_t null_es_format;struct decoder_owner_sys_t{    bool      b_own_thread;    int64_t         i_preroll_end;    input_thread_t  *p_input;    aout_instance_t *p_aout;    aout_input_t    *p_aout_input;    vout_thread_t   *p_vout;    vout_thread_t   *p_spu_vout;    int              i_spu_channel;    sout_instance_t         *p_sout;    sout_packetizer_input_t *p_sout_input;    /* Some decoders require already packetized data (ie. not truncated) */    decoder_t *p_packetizer;    /* Current format in use by the output */    video_format_t video;    audio_format_t audio;    es_format_t    sout;    /* fifo */    block_fifo_t *p_fifo;    /* CC */    bool b_cc_supported;    vlc_mutex_t lock_cc;    bool pb_cc_present[4];    decoder_t *pp_cc[4];};/* */static void DecoderUnsupportedCodec( decoder_t *p_dec, vlc_fourcc_t codec ){    msg_Err( p_dec, "no suitable decoder module for fourcc `%4.4s'.\n"             "VLC probably does not support this sound or video format.",             (char*)&codec );    intf_UserFatal( p_dec, false, _("No suitable decoder module"),                     _("VLC does not support the audio or video format \"%4.4s\". "                      "Unfortunately there is no way for you to fix this."), (char*)&codec );}/* decoder_GetInputAttachment: */input_attachment_t *decoder_GetInputAttachment( decoder_t *p_dec,                                                const char *psz_name ){    input_attachment_t *p_attachment;    if( input_Control( p_dec->p_owner->p_input, INPUT_GET_ATTACHMENT, &p_attachment, psz_name ) )        return NULL;    return p_attachment;}/* decoder_GetInputAttachments: */int decoder_GetInputAttachments( decoder_t *p_dec,                                 input_attachment_t ***ppp_attachment,                                 int *pi_attachment ){    return input_Control( p_dec->p_owner->p_input, INPUT_GET_ATTACHMENTS,                          ppp_attachment, pi_attachment );}/* decoder_GetDisplayDate: */mtime_t decoder_GetDisplayDate( decoder_t *p_dec, mtime_t i_ts ){    VLC_UNUSED(p_dec);    return i_ts;}/** * Spawns a new decoder thread * * \param p_input the input thread * \param p_es the es descriptor * \return the spawned decoder object */decoder_t *input_DecoderNew( input_thread_t *p_input,                             es_format_t *fmt, bool b_force_decoder ){    decoder_t   *p_dec = NULL;    vlc_value_t val;#ifndef ENABLE_SOUT    (void)b_force_decoder;#else    /* If we are in sout mode, search for packetizer module */    if( p_input->p->p_sout && !b_force_decoder )    {        /* Create the decoder configuration structure */        p_dec = CreateDecoder( p_input, fmt, VLC_OBJECT_PACKETIZER );        if( p_dec == NULL )        {            msg_Err( p_input, "could not create packetizer" );            intf_UserFatal( p_input, false, _("Streaming / Transcoding failed"),                            _("VLC could not open the packetizer module.") );            return NULL;        }    }    else#endif    {        /* Create the decoder configuration structure */        p_dec = CreateDecoder( p_input, fmt, VLC_OBJECT_DECODER );        if( p_dec == NULL )        {            msg_Err( p_input, "could not create decoder" );            intf_UserFatal( p_input, false, _("Streaming / Transcoding failed"),                            _("VLC could not open the decoder module.") );            return NULL;        }    }    if( !p_dec->p_module )    {        DecoderUnsupportedCodec( p_dec, fmt->i_codec );        DeleteDecoder( p_dec );        vlc_object_release( p_dec );        return NULL;    }    if( p_input->p->p_sout && p_input->p->input.b_can_pace_control &&        !b_force_decoder )    {        msg_Dbg( p_input, "stream out mode -> no decoder thread" );        p_dec->p_owner->b_own_thread = false;    }    else    {        var_Get( p_input, "minimize-threads", &val );        p_dec->p_owner->b_own_thread = !val.b_bool;    }    if( p_dec->p_owner->b_own_thread )    {        int i_priority;        if( fmt->i_cat == AUDIO_ES )            i_priority = VLC_THREAD_PRIORITY_AUDIO;        else            i_priority = VLC_THREAD_PRIORITY_VIDEO;        /* Spawn the decoder thread */        if( vlc_thread_create( p_dec, "decoder", DecoderThread,                               i_priority, false ) )        {            msg_Err( p_dec, "cannot spawn decoder thread" );            module_Unneed( p_dec, p_dec->p_module );            DeleteDecoder( p_dec );            vlc_object_release( p_dec );            return NULL;        }    }    return p_dec;}/** * Kills a decoder thread and waits until it's finished * * \param p_input the input thread * \param p_es the es descriptor * \return nothing */void input_DecoderDelete( decoder_t *p_dec ){    vlc_object_kill( p_dec );    if( p_dec->p_owner->b_own_thread )    {        /* Make sure the thread leaves the function by         * sending it an empty block. */        block_t *p_block = block_New( p_dec, 0 );        input_DecoderDecode( p_dec, p_block );        vlc_thread_join( p_dec );        /* Don't module_Unneed() here because of the dll loader that wants         * close() in the same thread than open()/decode() */    }    else    {        /* Flush */        input_DecoderDecode( p_dec, NULL );        module_Unneed( p_dec, p_dec->p_module );    }    /* */    if( p_dec->p_owner->b_cc_supported )    {        int i;        for( i = 0; i < 4; i++ )            input_DecoderSetCcState( p_dec, false, i );    }    /* Delete decoder configuration */    DeleteDecoder( p_dec );    /* Delete the decoder */    vlc_object_release( p_dec );}/** * Put a block_t in the decoder's fifo. * * \param p_dec the decoder object * \param p_block the data block */void input_DecoderDecode( decoder_t * p_dec, block_t *p_block ){    if( p_dec->p_owner->b_own_thread )    {        if( p_dec->p_owner->p_input->p->b_out_pace_control )        {            /* FIXME !!!!! */            while( !p_dec->b_die && !p_dec->b_error &&                   block_FifoCount( p_dec->p_owner->p_fifo ) > 10 )            {                msleep( 1000 );            }        }        else if( block_FifoSize( p_dec->p_owner->p_fifo ) > 50000000 /* 50 MB */ )        {            /* FIXME: ideally we would check the time amount of data             * in the fifo instead of its size. */            msg_Warn( p_dec, "decoder/packetizer fifo full (data not "                      "consumed quickly enough), resetting fifo!" );            block_FifoEmpty( p_dec->p_owner->p_fifo );        }        block_FifoPut( p_dec->p_owner->p_fifo, p_block );    }    else    {        if( p_dec->b_error || (p_block && p_block->i_buffer <= 0) )        {            if( p_block ) block_Release( p_block );        }        else        {            DecoderDecode( p_dec, p_block );        }    }}void input_DecoderDiscontinuity( decoder_t * p_dec, bool b_flush ){    block_t *p_null;    /* Empty the fifo */    if( p_dec->p_owner->b_own_thread && b_flush )        block_FifoEmpty( p_dec->p_owner->p_fifo );    /* Send a special block */    p_null = block_New( p_dec, 128 );    p_null->i_flags |= BLOCK_FLAG_DISCONTINUITY;    /* FIXME check for p_packetizer or b_packitized from es_format_t of input ? */    if( p_dec->p_owner->p_packetizer && b_flush )        p_null->i_flags |= BLOCK_FLAG_CORRUPTED;    memset( p_null->p_buffer, 0, p_null->i_buffer );    input_DecoderDecode( p_dec, p_null );}bool input_DecoderEmpty( decoder_t * p_dec ){    if( p_dec->p_owner->b_own_thread     && block_FifoCount( p_dec->p_owner->p_fifo ) > 0 )    {        return false;    }    return true;}void input_DecoderIsCcPresent( decoder_t *p_dec, bool pb_present[4] ){    int i;    vlc_mutex_lock( &p_dec->p_owner->lock_cc );    for( i = 0; i < 4; i++ )        pb_present[i] =  p_dec->p_owner->pb_cc_present[i];    vlc_mutex_unlock( &p_dec->p_owner->lock_cc );}int input_DecoderSetCcState( decoder_t *p_dec, bool b_decode, int i_channel ){    decoder_owner_sys_t *p_owner = p_dec->p_owner;    //msg_Warn( p_dec, "input_DecoderSetCcState: %d @%d", b_decode, i_channel );    if( i_channel < 0 || i_channel >= 4 || !p_owner->pb_cc_present[i_channel] )        return VLC_EGENERIC;    if( b_decode )    {        static const vlc_fourcc_t fcc[4] = {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -