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

📄 dtstofloat32.c

📁 uclinux 下的vlc播放器源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
    {        for ( i = 0; i < 256; i++ )        {            p_out[i * i_nb_channels + pi_chan_table[j]] = p_in[j * 256 + i];        }    }}/***************************************************************************** * Duplicate: helper function to duplicate a unique channel *****************************************************************************/static void Duplicate( float * p_out, const float * p_in ){    int i;    for ( i = 256; i--; )    {        *p_out++ = *p_in;        *p_out++ = *p_in;        p_in++;    }}/***************************************************************************** * Exchange: helper function to exchange left & right channels *****************************************************************************/static void Exchange( float * p_out, const float * p_in ){    int i;    const float * p_first = p_in + 256;    const float * p_second = p_in;    for ( i = 0; i < 256; i++ )    {        *p_out++ = *p_first++;        *p_out++ = *p_second++;    }}/***************************************************************************** * DoWork: decode a DTS frame. *****************************************************************************/static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,                    aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf ){    filter_sys_t    *p_sys = (filter_sys_t *)p_filter->p_sys;    sample_t        i_sample_level = 1;    int             i_flags = p_sys->i_flags;    int             i_bytes_per_block = 256 * p_sys->i_nb_channels                      * sizeof(float);    int             i;    /*     * Do the actual decoding now.     */    /* Needs to be called so the decoder knows which type of bitstream it is     * dealing with. */    int i_sample_rate, i_bit_rate, i_frame_length;    if( !dts_syncinfo( p_sys->p_libdts, p_in_buf->p_buffer, &i_flags,                       &i_sample_rate, &i_bit_rate, &i_frame_length ) )    {        msg_Warn( p_aout, "libdca couldn't sync on frame" );        p_out_buf->i_nb_samples = p_out_buf->i_nb_bytes = 0;        return;    }    i_flags = p_sys->i_flags;    dts_frame( p_sys->p_libdts, p_in_buf->p_buffer,               &i_flags, &i_sample_level, 0 );    if ( (i_flags & DTS_CHANNEL_MASK) != (p_sys->i_flags & DTS_CHANNEL_MASK)          && !p_sys->b_dontwarn )    {        msg_Warn( p_aout,                  "libdca couldn't do the requested downmix 0x%x->0x%x",                  p_sys->i_flags  & DTS_CHANNEL_MASK,                  i_flags & DTS_CHANNEL_MASK );        p_sys->b_dontwarn = 1;    }    if( 0)//!p_sys->b_dynrng )    {        dts_dynrng( p_sys->p_libdts, NULL, NULL );    }    for ( i = 0; i < dts_blocks_num(p_sys->p_libdts); i++ )    {        sample_t * p_samples;        if( dts_block( p_sys->p_libdts ) )        {            msg_Warn( p_aout, "dts_block failed for block %d", i );            break;        }        p_samples = dts_samples( p_sys->p_libdts );        if ( (p_sys->i_flags & DTS_CHANNEL_MASK) == DTS_MONO              && (p_filter->output.i_physical_channels                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )        {            Duplicate( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),                       p_samples );        }        else if ( p_filter->output.i_original_channels                    & AOUT_CHAN_REVERSESTEREO )        {            Exchange( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),                      p_samples );        }        else        {            /* Interleave the *$£%ù samples. */            Interleave( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),                        p_samples, p_sys->i_nb_channels, p_sys->pi_chan_table);        }    }    p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;    p_out_buf->i_nb_bytes = i_bytes_per_block * i;}/***************************************************************************** * Destroy : deallocate data structures *****************************************************************************/static void Destroy( vlc_object_t *p_this ){    aout_filter_t *p_filter = (aout_filter_t *)p_this;    filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;    dts_free( p_sys->p_libdts );    free( p_sys );}/***************************************************************************** * OpenFilter:  *****************************************************************************/static int OpenFilter( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    filter_sys_t *p_sys;    int i_ret;    if( p_filter->fmt_in.i_codec != VLC_FOURCC('d','t','s',' ')  )    {        return VLC_EGENERIC;    }    p_filter->fmt_out.audio.i_format =        p_filter->fmt_out.i_codec = VLC_FOURCC('f','l','3','2');    /* Allocate the memory needed to store the module's structure */    p_sys = p_filter->p_sys = malloc( sizeof(filter_sys_t) );    if( p_sys == NULL )    {        msg_Err( p_filter, "out of memory" );        return VLC_EGENERIC;    }    /* Allocate the memory needed to store the module's structure */    p_filter->p_sys = p_sys = malloc( sizeof(filter_sys_t) );    if( p_sys == NULL )    {        msg_Err( p_filter, "out of memory" );        return VLC_EGENERIC;    }    i_ret = Open( VLC_OBJECT(p_filter), p_sys,                  p_filter->fmt_in.audio, p_filter->fmt_out.audio );    p_filter->pf_audio_filter = Convert;    p_filter->fmt_out.audio.i_rate = p_filter->fmt_in.audio.i_rate;    return i_ret;}/***************************************************************************** * CloseFilter : deallocate data structures *****************************************************************************/static void CloseFilter( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    filter_sys_t *p_sys = p_filter->p_sys;    dts_free( p_sys->p_libdts );    free( p_sys );}static block_t *Convert( filter_t *p_filter, block_t *p_block ){    aout_filter_t aout_filter;    aout_buffer_t in_buf, out_buf;    block_t *p_out;    int i_out_size;    if( !p_block || !p_block->i_samples )    {        if( p_block ) p_block->pf_release( p_block );        return NULL;    }    i_out_size = p_block->i_samples *      p_filter->fmt_out.audio.i_bitspersample *        p_filter->fmt_out.audio.i_channels / 8;    p_out = p_filter->pf_audio_buffer_new( p_filter, i_out_size );    if( !p_out )    {        msg_Warn( p_filter, "can't get output buffer" );        p_block->pf_release( p_block );        return NULL;    }    p_out->i_samples = p_block->i_samples;    p_out->i_dts = p_block->i_dts;    p_out->i_pts = p_block->i_pts;    p_out->i_length = p_block->i_length;    aout_filter.p_sys = (struct aout_filter_sys_t *)p_filter->p_sys;    aout_filter.input = p_filter->fmt_in.audio;    aout_filter.input.i_format = p_filter->fmt_in.i_codec;    aout_filter.output = p_filter->fmt_out.audio;    aout_filter.output.i_format = p_filter->fmt_out.i_codec;    in_buf.p_buffer = p_block->p_buffer;    in_buf.i_nb_bytes = p_block->i_buffer;    in_buf.i_nb_samples = p_block->i_samples;    out_buf.p_buffer = p_out->p_buffer;    out_buf.i_nb_bytes = p_out->i_buffer;    out_buf.i_nb_samples = p_out->i_samples;    DoWork( (aout_instance_t *)p_filter, &aout_filter, &in_buf, &out_buf );    p_out->i_buffer = out_buf.i_nb_bytes;    p_out->i_samples = out_buf.i_nb_samples;    p_block->pf_release( p_block );    return p_out;}

⌨️ 快捷键说明

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