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

📄 dtstofloat32.c

📁 uclinux 下的vlc播放器源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * dtstofloat32.c: DTS Coherent Acoustics decoder plugin for VLC. *   This plugin makes use of libdca to do the actual decoding *   (http://developers.videolan.org/libdca.html). ***************************************************************************** * Copyright (C) 2001, 2002libdca the VideoLAN team * $Id: dtstofloat32.c 15172 2006-04-11 13:17:20Z zorglub $ * * Author: Gildas Bazin <gbazin@videolan.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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <vlc/vlc.h>#include <stdlib.h>                                      /* malloc(), free() */#include <string.h>                                              /* strdup() */#include <dts.h>                                       /* libdca header file */#include <vlc/decoder.h>#include "aout_internal.h"#include "vlc_filter.h"/***************************************************************************** * Local prototypes *****************************************************************************/static int  Create    ( vlc_object_t * );static void Destroy   ( vlc_object_t * );static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,                        aout_buffer_t * );static int  Open      ( vlc_object_t *, filter_sys_t *,                        audio_format_t, audio_format_t );static int  OpenFilter ( vlc_object_t * );static void CloseFilter( vlc_object_t * );static block_t *Convert( filter_t *, block_t * );/* libdca channel order */static const uint32_t pi_channels_in[] ={ AOUT_CHAN_CENTER, AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,  AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_LFE, 0 };/* our internal channel order (WG-4 order) */static const uint32_t pi_channels_out[] ={ AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,  AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };/***************************************************************************** * Local structures *****************************************************************************/struct filter_sys_t{    dts_state_t * p_libdts; /* libdca internal structure */    vlc_bool_t b_dynrng; /* see below */    int i_flags; /* libdca flags, see dtsdec/doc/libdts.txt */    vlc_bool_t b_dontwarn;    int i_nb_channels; /* number of float32 per sample */    int pi_chan_table[AOUT_CHAN_MAX]; /* channel reordering */};/***************************************************************************** * Module descriptor *****************************************************************************/#define DYNRNG_TEXT N_("DTS dynamic range compression")#define DYNRNG_LONGTEXT N_( \    "Dynamic range compression makes the loud sounds softer, and the soft " \    "sounds louder, so you can more easily listen to the stream in a noisy " \    "environment without disturbing anyone. If you disable the dynamic range "\    "compression the playback will be more adapted to a movie theater or a " \    "listening room.")vlc_module_begin();    set_category( CAT_INPUT );    set_subcategory( SUBCAT_INPUT_ACODEC );    set_shortname( "DCA" );    set_description( _("DTS Coherent Acoustics audio decoder") );    add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE );    set_capability( "audio filter", 100 );    set_callbacks( Create, Destroy );    add_submodule();    set_description( _("DTS Coherent Acoustics audio decoder") );    set_capability( "audio filter2", 100 );    set_callbacks( OpenFilter, CloseFilter );vlc_module_end();/***************************************************************************** * Create: *****************************************************************************/static int Create( vlc_object_t *p_this ){    aout_filter_t *p_filter = (aout_filter_t *)p_this;    filter_sys_t *p_sys;    int i_ret;    if ( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ')          || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )    {        return -1;    }    if ( p_filter->input.i_rate != p_filter->output.i_rate )    {        return -1;    }    /* Allocate the memory needed to store the module's structure */    p_sys = malloc( sizeof(filter_sys_t) );    p_filter->p_sys = (struct aout_filter_sys_t *)p_sys;    if( p_sys == NULL )    {        msg_Err( p_filter, "out of memory" );        return -1;    }    i_ret = Open( VLC_OBJECT(p_filter), p_sys,                  p_filter->input, p_filter->output );    p_filter->pf_do_work = DoWork;    p_filter->b_in_place = 0;    return i_ret;}/***************************************************************************** * Open:  *****************************************************************************/static int Open( vlc_object_t *p_this, filter_sys_t *p_sys,                 audio_format_t input, audio_format_t output ){    p_sys->b_dynrng = config_GetInt( p_this, "dts-dynrng" );    p_sys->b_dontwarn = 0;    /* We'll do our own downmixing, thanks. */    p_sys->i_nb_channels = aout_FormatNbChannels( &output );    switch ( (output.i_physical_channels & AOUT_CHAN_PHYSMASK)              & ~AOUT_CHAN_LFE )    {    case AOUT_CHAN_CENTER:        if ( (output.i_original_channels & AOUT_CHAN_CENTER)              || (output.i_original_channels                   & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )        {            p_sys->i_flags = DTS_MONO;        }        break;    case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:        if ( output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )        {            p_sys->i_flags = DTS_DOLBY;        }        else if ( input.i_original_channels == AOUT_CHAN_CENTER )        {            p_sys->i_flags = DTS_MONO;        }        else if ( input.i_original_channels & AOUT_CHAN_DUALMONO )        {            p_sys->i_flags = DTS_CHANNEL;        }        else        {            p_sys->i_flags = DTS_STEREO;        }        break;    case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:        p_sys->i_flags = DTS_3F;        break;    case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:        p_sys->i_flags = DTS_2F1R;        break;    case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER          | AOUT_CHAN_REARCENTER:        p_sys->i_flags = DTS_3F1R;        break;    case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT          | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:        p_sys->i_flags = DTS_2F2R;        break;    case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER          | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:        p_sys->i_flags = DTS_3F2R;        break;    default:        msg_Warn( p_this, "unknown sample format!" );        free( p_sys );        return -1;    }    if ( output.i_physical_channels & AOUT_CHAN_LFE )    {        p_sys->i_flags |= DTS_LFE;    }    //p_sys->i_flags |= DTS_ADJUST_LEVEL;    /* Initialize libdca */    p_sys->p_libdts = dts_init( 0 );    if( p_sys->p_libdts == NULL )    {        msg_Err( p_this, "unable to initialize libdca" );        return VLC_EGENERIC;    }    aout_CheckChannelReorder( pi_channels_in, pi_channels_out,                              output.i_physical_channels & AOUT_CHAN_PHYSMASK,                              p_sys->i_nb_channels,                              p_sys->pi_chan_table );    return VLC_SUCCESS;}/***************************************************************************** * Interleave: helper function to interleave channels *****************************************************************************/static void Interleave( float * p_out, const float * p_in, int i_nb_channels,                        int *pi_chan_table ){    /* We do not only have to interleave, but also reorder the channels. */    int i, j;    for ( j = 0; j < i_nb_channels; j++ )

⌨️ 快捷键说明

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