tta.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * tta.c : The Lossless True Audio parser
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: 0922f389536461e946cab0cebd810c71afec35dd $
  6.  *
  7.  * Authors: Derk-Jan Hartman <hartman at videolan dot 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_demux.h>
  32. #include <vlc_codec.h>
  33. #include <math.h>
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. static int  Open  ( vlc_object_t * );
  38. static void Close ( vlc_object_t * );
  39. vlc_module_begin ()
  40.     set_shortname( "TTA" )
  41.     set_description( N_("TTA demuxer") )
  42.     set_category( CAT_INPUT )
  43.     set_subcategory( SUBCAT_INPUT_DEMUX )
  44.     set_capability( "demux", 145 )
  45.     set_callbacks( Open, Close )
  46.     add_shortcut( "tta" )
  47. vlc_module_end ()
  48. #define TTA_FRAMETIME 1.04489795918367346939
  49. /*****************************************************************************
  50.  * Local prototypes
  51.  *****************************************************************************/
  52. static int Demux  ( demux_t * );
  53. static int Control( demux_t *, int, va_list );
  54. struct demux_sys_t
  55. {
  56.     /* */
  57.     es_out_id_t *p_es;
  58.     /* */
  59.     uint32_t i_totalframes;
  60.     uint32_t i_currentframe;
  61.     uint32_t *pi_seektable;
  62.     uint32_t i_datalength;
  63.     int      i_framelength;
  64.     /* */
  65.     vlc_meta_t     *p_meta;
  66.     int64_t        i_start;
  67. };
  68. /*****************************************************************************
  69.  * Open: initializes ES structures
  70.  *****************************************************************************/
  71. static int Open( vlc_object_t * p_this )
  72. {
  73.     demux_t     *p_demux = (demux_t*)p_this;
  74.     demux_sys_t *p_sys;
  75.     es_format_t fmt;
  76.     const uint8_t *p_peek;
  77.     uint8_t     p_header[22];
  78.     uint8_t     *p_fullheader;
  79.     int         i_seektable_size = 0;
  80.     //char        psz_info[4096];
  81.     //module_t    *p_id3;
  82.     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 )
  83.         return VLC_EGENERIC;
  84.     if( memcmp( p_peek, "TTA1", 4 ) )
  85.     {
  86.         if( !p_demux->b_force )
  87.             return VLC_EGENERIC;
  88.         /* User forced */
  89.         msg_Err( p_demux, "this doesn't look like a true-audio stream, "
  90.                  "continuing anyway" );
  91.     }
  92.     if( stream_Read( p_demux->s, p_header, 22 ) < 22 )
  93.         return VLC_EGENERIC;
  94.     /* Fill p_demux fields */
  95.     p_demux->pf_demux = Demux;
  96.     p_demux->pf_control = Control;
  97.     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
  98.     if( !p_sys )
  99.         return VLC_ENOMEM;
  100.     p_sys->pi_seektable = NULL;
  101.     /* Read the metadata */
  102.     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 'T', 'T', 'A', '1' ) );
  103.     fmt.audio.i_channels = GetWLE( &p_header[6] );
  104.     fmt.audio.i_bitspersample = GetWLE( &p_header[8] );
  105.     fmt.audio.i_rate = GetDWLE( &p_header[10] );
  106.     if( fmt.audio.i_rate == 0 || /* Avoid divide by 0 */
  107.         fmt.audio.i_rate > ( 1 << 20 ) /* Avoid i_framelength overflow */ )
  108.     {
  109.         msg_Warn( p_demux, "Wrong sample rate" );
  110.         goto error;
  111.     }
  112.     p_sys->i_datalength = GetDWLE( &p_header[14] );
  113.     p_sys->i_framelength = TTA_FRAMETIME * fmt.audio.i_rate;
  114.     p_sys->i_totalframes = p_sys->i_datalength / p_sys->i_framelength +
  115.                           ((p_sys->i_datalength % p_sys->i_framelength) != 0);
  116.     p_sys->i_currentframe = 0;
  117.     if( p_sys->i_totalframes > (1 << 29))
  118.         goto error;
  119.     i_seektable_size = sizeof(uint32_t)*p_sys->i_totalframes;
  120.     /* Store the header and Seektable for avcodec */
  121.     fmt.i_extra = 22 + i_seektable_size + 4;
  122.     fmt.p_extra = p_fullheader = malloc( fmt.i_extra );
  123.     if( !p_fullheader )
  124.         goto error;
  125.     memcpy( p_fullheader, p_header, 22 );
  126.     p_fullheader += 22;
  127.     if( stream_Read( p_demux->s, p_fullheader, i_seektable_size )
  128.              != i_seektable_size )
  129.         goto error;
  130.     p_sys->pi_seektable = calloc( p_sys->i_totalframes, sizeof(uint32_t) );
  131.     if( !p_sys->pi_seektable )
  132.         goto error;
  133.     for( uint32_t i = 0; i < p_sys->i_totalframes; i++ )
  134.     {
  135.         p_sys->pi_seektable[i] = GetDWLE( p_fullheader );
  136.         p_fullheader += 4;
  137.     }
  138.     stream_Read( p_demux->s, p_fullheader, 4 ); /* CRC */
  139.     p_fullheader += 4;
  140.     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
  141.     p_sys->i_start = p_fullheader - (uint8_t *)fmt.p_extra;
  142.     return VLC_SUCCESS;
  143. error:
  144.     es_format_Clean( &fmt );
  145.     Close( p_this );
  146.     return VLC_EGENERIC;
  147. }
  148. /*****************************************************************************
  149.  * Close: frees unused data
  150.  *****************************************************************************/
  151. static void Close( vlc_object_t * p_this )
  152. {
  153.     demux_t        *p_demux = (demux_t*)p_this;
  154.     demux_sys_t    *p_sys = p_demux->p_sys;
  155.     free( p_sys->pi_seektable );
  156.     free( p_sys );
  157. }
  158. /*****************************************************************************
  159.  * Demux:
  160.  *****************************************************************************
  161.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  162.  *****************************************************************************/
  163. static int Demux( demux_t *p_demux )
  164. {
  165.     demux_sys_t *p_sys = p_demux->p_sys;
  166.     block_t     *p_data;
  167.     if( p_sys->i_currentframe > p_sys->i_totalframes )
  168.         return 0;
  169.     p_data = stream_Block( p_demux->s, p_sys->pi_seektable[p_sys->i_currentframe] );
  170.     if( p_data == NULL ) return 0;
  171.     p_data->i_dts = p_data->i_pts = (int64_t)(1 + INT64_C(1000000) * p_sys->i_currentframe) * TTA_FRAMETIME;
  172.     p_sys->i_currentframe++;
  173.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_data->i_dts );
  174.     es_out_Send( p_demux->out, p_sys->p_es, p_data );
  175.     return 1;
  176. }
  177. /*****************************************************************************
  178.  * Control:
  179.  *****************************************************************************/
  180. static int Control( demux_t *p_demux, int i_query, va_list args )
  181. {
  182.     demux_sys_t *p_sys = p_demux->p_sys;
  183.     double   f, *pf;
  184.     int64_t i64, *pi64;
  185.     switch( i_query )
  186.     {
  187.         case DEMUX_GET_POSITION:
  188.             pf = (double*) va_arg( args, double* );
  189.             i64 = stream_Size( p_demux->s ) - p_sys->i_start;
  190.             if( i64 > 0 )
  191.             {
  192.                 *pf = (double)(stream_Tell( p_demux->s ) - p_sys->i_start )/ (double)i64;
  193.             }
  194.             else
  195.             {
  196.                 *pf = 0.0;
  197.             }
  198.             return VLC_SUCCESS;
  199.         case DEMUX_SET_POSITION:
  200.             f = (double)va_arg( args, double );
  201.             i64 = (int64_t)(f * (stream_Size( p_demux->s ) - p_sys->i_start));
  202.             if( i64 > 0 )
  203.             {
  204.                 int64_t tmp = 0;
  205.                 uint32_t i;
  206.                 for( i=0; i < p_sys->i_totalframes && tmp+p_sys->pi_seektable[i] < i64; i++)
  207.                 {
  208.                     tmp += p_sys->pi_seektable[i];
  209.                 }
  210.                 stream_Seek( p_demux->s, tmp+p_sys->i_start );
  211.                 p_sys->i_currentframe = i;
  212.                 return VLC_SUCCESS;
  213.             }
  214.             return VLC_EGENERIC;
  215.         case DEMUX_GET_LENGTH:
  216.             pi64 = (int64_t*)va_arg( args, int64_t * );
  217.             *pi64 = INT64_C(1000000) * p_sys->i_totalframes * TTA_FRAMETIME;
  218.             return VLC_SUCCESS;
  219.         case DEMUX_GET_TIME:
  220.             pi64 = (int64_t*)va_arg( args, int64_t * );
  221.             *pi64 = INT64_C(1000000) * p_sys->i_currentframe * TTA_FRAMETIME;
  222.             return VLC_SUCCESS;
  223.         default:
  224.             return VLC_EGENERIC;
  225.     }
  226. }