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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * es.c : Generic audio ES input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2008 the VideoLAN team
  5.  * $Id: 936653ccd8d33064aa163c39ab8cb3ac90eaeb75 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_demux.h>
  33. #include <vlc_codec.h>
  34. #include <vlc_codecs.h>
  35. #include <vlc_input.h>
  36. #include "../../codec/a52.h"
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. static int  Open ( vlc_object_t * );
  41. static void Close( vlc_object_t * );
  42. vlc_module_begin ()
  43.     set_category( CAT_INPUT )
  44.     set_subcategory( SUBCAT_INPUT_DEMUX )
  45.     set_description( N_("MPEG-I/II/4 / A52 / DTS / MLP audio" ) )
  46.     set_capability( "demux", 155 )
  47.     set_callbacks( Open, Close )
  48.     add_shortcut( "mpga" )
  49.     add_shortcut( "mp3" )
  50.     add_shortcut( "m4a" )
  51.     add_shortcut( "mp4a" )
  52.     add_shortcut( "aac" )
  53.     add_shortcut( "ac3" )
  54.     add_shortcut( "a52" )
  55.     add_shortcut( "eac3" )
  56.     add_shortcut( "dts" )
  57.     add_shortcut( "mlp" )
  58.     add_shortcut( "thd" )
  59. vlc_module_end ()
  60. /*****************************************************************************
  61.  * Local prototypes
  62.  *****************************************************************************/
  63. static int Demux  ( demux_t * );
  64. static int Control( demux_t *, int, va_list );
  65. typedef struct
  66. {
  67.     vlc_fourcc_t i_codec;
  68.     bool       b_use_word;
  69.     const char *psz_name;
  70.     int  (*pf_probe)( demux_t *p_demux, int64_t *pi_offset );
  71.     int  (*pf_init)( demux_t *p_demux );
  72. } codec_t;
  73. struct demux_sys_t
  74. {
  75.     codec_t codec;
  76.     es_out_id_t *p_es;
  77.     bool  b_start;
  78.     decoder_t   *p_packetizer;
  79.     mtime_t     i_pts;
  80.     mtime_t     i_time_offset;
  81.     int64_t     i_bytes;
  82.     bool        b_big_endian;
  83.     bool        b_estimate_bitrate;
  84.     int         i_bitrate_avg;  /* extracted from Xing header */
  85.     bool b_initial_sync_failed;
  86.     int i_packet_size;
  87.     int64_t i_stream_offset;
  88.     /* Mpga specific */
  89.     struct
  90.     {
  91.         int i_frames;
  92.         int i_bytes;
  93.         int i_bitrate_avg;
  94.         int i_frame_samples;
  95.     } xing;
  96. };
  97. static int MpgaProbe( demux_t *p_demux, int64_t *pi_offset );
  98. static int MpgaInit( demux_t *p_demux );
  99. static int AacProbe( demux_t *p_demux, int64_t *pi_offset );
  100. static int AacInit( demux_t *p_demux );
  101. static int EA52Probe( demux_t *p_demux, int64_t *pi_offset );
  102. static int A52Probe( demux_t *p_demux, int64_t *pi_offset );
  103. static int A52Init( demux_t *p_demux );
  104. static int DtsProbe( demux_t *p_demux, int64_t *pi_offset );
  105. static int DtsInit( demux_t *p_demux );
  106. static int MlpProbe( demux_t *p_demux, int64_t *pi_offset );
  107. static int MlpInit( demux_t *p_demux );
  108. static const codec_t p_codec[] = {
  109.     { VLC_FOURCC( 'm', 'p', '4', 'a' ), false, "mp4 audio",  AacProbe,  AacInit },
  110.     { VLC_FOURCC( 'm', 'p', 'g', 'a' ), false, "mpeg audio", MpgaProbe, MpgaInit },
  111.     { VLC_FOURCC( 'a', '5', '2', ' ' ), true,  "a52 audio",  A52Probe,  A52Init },
  112.     { VLC_FOURCC( 'e', 'a', 'c', '3' ), true,  "eac3 audio", EA52Probe, A52Init },
  113.     { VLC_FOURCC( 'd', 't', 's', ' ' ), false, "dts audio",  DtsProbe,  DtsInit },
  114.     { VLC_FOURCC( 't', 'r', 'h', 'd' ), false, "mlp audio",  MlpProbe,  MlpInit },
  115.     { 0, false, NULL, NULL, NULL }
  116. };
  117. /*****************************************************************************
  118.  * Open: initializes demux structures
  119.  *****************************************************************************/
  120. static int Open( vlc_object_t * p_this )
  121. {
  122.     demux_t     *p_demux = (demux_t*)p_this;
  123.     demux_sys_t *p_sys;
  124.     es_format_t fmt;
  125.     int64_t i_offset;
  126.     int i_index;
  127.     for( i_index = 0; p_codec[i_index].i_codec != 0; i_index++ )
  128.     {
  129.         if( !p_codec[i_index].pf_probe( p_demux, &i_offset ) )
  130.             break;
  131.     }
  132.     if( p_codec[i_index].i_codec == 0 )
  133.         return VLC_EGENERIC;
  134.     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
  135.     memset( p_sys, 0, sizeof( demux_sys_t ) );
  136.     p_sys->codec = p_codec[i_index];
  137.     p_sys->p_es = NULL;
  138.     p_sys->b_start = true;
  139.     p_sys->i_stream_offset = i_offset;
  140.     p_sys->b_estimate_bitrate = true;
  141.     p_sys->i_bitrate_avg = 0;
  142.     p_sys->b_big_endian = false;
  143.     if( stream_Seek( p_demux->s, p_sys->i_stream_offset ) )
  144.     {
  145.         free( p_sys );
  146.         return VLC_EGENERIC;
  147.     }
  148.     if( p_sys->codec.pf_init( p_demux ) )
  149.     {
  150.         free( p_sys );
  151.         return VLC_EGENERIC;
  152.     }
  153.     msg_Dbg( p_demux, "detected format %4.4s", (const char*)&p_sys->codec.i_codec );
  154.     /* Load the audio packetizer */
  155.     es_format_Init( &fmt, AUDIO_ES, p_sys->codec.i_codec );
  156.     p_sys->p_packetizer = demux_PacketizerNew( p_demux, &fmt, p_sys->codec.psz_name );
  157.     if( !p_sys->p_packetizer )
  158.     {
  159.         free( p_sys );
  160.         return VLC_EGENERIC;
  161.     }
  162.     return VLC_SUCCESS;
  163. }
  164. /*****************************************************************************
  165.  * Demux: reads and demuxes data packets
  166.  *****************************************************************************
  167.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  168.  *****************************************************************************/
  169. static int Demux( demux_t *p_demux )
  170. {
  171.     demux_sys_t *p_sys = p_demux->p_sys;
  172.     block_t *p_block_in, *p_block_out;
  173.     if( p_sys->codec.b_use_word )
  174.     {
  175.         /* Make sure we are word aligned */
  176.         int64_t i_pos = stream_Tell( p_demux->s );
  177.         if( i_pos % 2 )
  178.             stream_Read( p_demux->s, NULL, 1 );
  179.     }
  180.     if( ( p_block_in = stream_Block( p_demux->s, p_sys->i_packet_size ) ) == NULL )
  181.         return 0;
  182.     if( p_sys->codec.b_use_word && !p_sys->b_big_endian && p_block_in->i_buffer > 0 )
  183.     {
  184.         /* Convert to big endian */
  185.         swab( p_block_in->p_buffer, p_block_in->p_buffer, p_block_in->i_buffer );
  186.     }
  187.     p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start || p_sys->b_initial_sync_failed ? 1 : 0;
  188.     p_sys->b_initial_sync_failed = p_sys->b_start; /* Only try to resync once */
  189.     while( ( p_block_out = p_sys->p_packetizer->pf_packetize( p_sys->p_packetizer, &p_block_in ) ) )
  190.     {
  191.         p_sys->b_initial_sync_failed = false;
  192.         while( p_block_out )
  193.         {
  194.             block_t *p_next = p_block_out->p_next;
  195.             if( !p_sys->p_es )
  196.             {
  197.                 p_sys->p_packetizer->fmt_out.b_packetized = true;
  198.                 p_sys->p_es = es_out_Add( p_demux->out,
  199.                                           &p_sys->p_packetizer->fmt_out);
  200.                 /* Try the xing header */
  201.                 if( p_sys->xing.i_bytes && p_sys->xing.i_frames &&
  202.                     p_sys->xing.i_frame_samples )
  203.                 {
  204.                     p_sys->i_bitrate_avg = p_sys->xing.i_bytes * INT64_C(8) *
  205.                         p_sys->p_packetizer->fmt_out.audio.i_rate /
  206.                         p_sys->xing.i_frames / p_sys->xing.i_frame_samples;
  207.                     if( p_sys->i_bitrate_avg > 0 )
  208.                         p_sys->b_estimate_bitrate = false;
  209.                 }
  210.                 /* Use the bitrate as initual value */
  211.                 if( p_sys->b_estimate_bitrate )
  212.                     p_sys->i_bitrate_avg = p_sys->p_packetizer->fmt_out.i_bitrate;
  213.             }
  214.             p_sys->i_pts = p_block_out->i_pts;
  215.             /* Re-estimate bitrate */
  216.             if( p_sys->b_estimate_bitrate && p_sys->i_pts > 1 + INT64_C(500000) )
  217.                 p_sys->i_bitrate_avg = 8*INT64_C(1000000)*p_sys->i_bytes/(p_sys->i_pts-1);
  218.             p_sys->i_bytes += p_block_out->i_buffer;
  219.             /* Correct timestamp */
  220.             p_block_out->i_pts += p_sys->i_time_offset;
  221.             p_block_out->i_dts += p_sys->i_time_offset;
  222.             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
  223.             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
  224.             p_block_out = p_next;
  225.         }
  226.     }
  227.     if( p_sys->b_initial_sync_failed )
  228.         msg_Dbg( p_demux, "did not sync on first block" );
  229.     p_sys->b_start = false;
  230.     return 1;
  231. }
  232. /*****************************************************************************
  233.  * Close: frees unused data
  234.  *****************************************************************************/
  235. static void Close( vlc_object_t * p_this )
  236. {
  237.     demux_t     *p_demux = (demux_t*)p_this;
  238.     demux_sys_t *p_sys = p_demux->p_sys;
  239.     demux_PacketizerDestroy( p_sys->p_packetizer );
  240.     free( p_sys );
  241. }
  242. /*****************************************************************************
  243.  * Control:
  244.  *****************************************************************************/
  245. static int Control( demux_t *p_demux, int i_query, va_list args )
  246. {
  247.     demux_sys_t *p_sys  = p_demux->p_sys;
  248.     int64_t *pi64;
  249.     bool *pb_bool;
  250.     int i_ret;
  251.     va_list args_save;
  252.     va_copy ( args_save, args );
  253.     switch( i_query )
  254.     {
  255.         case DEMUX_HAS_UNSUPPORTED_META:
  256.             pb_bool = (bool*)va_arg( args, bool* );
  257.             *pb_bool = true;
  258.             return VLC_SUCCESS;
  259.         case DEMUX_GET_TIME:
  260.             pi64 = (int64_t*)va_arg( args, int64_t * );
  261.             *pi64 = p_sys->i_pts + p_sys->i_time_offset;
  262.             return VLC_SUCCESS;
  263.         case DEMUX_GET_LENGTH:
  264.             i_ret = demux_vaControlHelper( p_demux->s, p_sys->i_stream_offset, -1,
  265.                                             p_sys->i_bitrate_avg, 1, i_query,
  266.                                             args );
  267.             /* No bitrate, we can't have it precisely, but we can compute
  268.              * a raw approximation with time/position */
  269.             if( i_ret && !p_sys->i_bitrate_avg )
  270.             {
  271.                 float f_pos = (double)(uint64_t)( stream_Tell( p_demux->s ) ) /
  272.                               (double)(uint64_t)( stream_Size( p_demux->s ) );
  273.                 /* The first few seconds are guaranteed to be very whacky,
  274.                  * don't bother trying ... Too bad */
  275.                 if( f_pos < 0.01 ||
  276.                     (p_sys->i_pts + p_sys->i_time_offset) < 8000000 )
  277.                     return VLC_EGENERIC;
  278.                 pi64 = (int64_t *)va_arg( args_save, int64_t * );
  279.                 *pi64 = (p_sys->i_pts + p_sys->i_time_offset) / f_pos;
  280.                 return VLC_SUCCESS;
  281.             }
  282.             va_end( args_save );
  283.             return i_ret;
  284.         case DEMUX_SET_TIME:
  285.             /* FIXME TODO: implement a high precision seek (with mp3 parsing)
  286.              * needed for multi-input */
  287.         default:
  288.             i_ret = demux_vaControlHelper( p_demux->s, p_sys->i_stream_offset, -1,
  289.                                             p_sys->i_bitrate_avg, 1, i_query,
  290.                                             args );
  291.             if( !i_ret && p_sys->i_bitrate_avg > 0 &&
  292.                 (i_query == DEMUX_SET_POSITION || i_query == DEMUX_SET_TIME) )
  293.             {
  294.                 int64_t i_time = INT64_C(8000000) * ( stream_Tell(p_demux->s) - p_sys->i_stream_offset ) /
  295.                     p_sys->i_bitrate_avg;
  296.                 /* Fix time_offset */
  297.                 if( i_time >= 0 )
  298.                     p_sys->i_time_offset = i_time - p_sys->i_pts;
  299.             }
  300.             return i_ret;
  301.     }
  302. }
  303. /*****************************************************************************
  304.  * Wav header skipper
  305.  *****************************************************************************/
  306. #define WAV_PROBE_SIZE (512*1024)
  307. static int WavSkipHeader( demux_t *p_demux, int *pi_skip, const int pi_format[] )
  308. {
  309.     const uint8_t *p_peek;
  310.     int         i_peek = 0;
  311.     /* */
  312.     *pi_skip = 0;
  313.     /* Check if we are dealing with a WAV file */
  314.     if( stream_Peek( p_demux->s, &p_peek, 12+8 ) != 12 + 8 )
  315.         return VLC_SUCCESS;
  316.     if( memcmp( p_peek, "RIFF", 4 ) || memcmp( &p_peek[8], "WAVE", 4 ) )
  317.         return VLC_SUCCESS;
  318.     /* Find the wave format header */
  319.     i_peek = 12 + 8;
  320.     while( memcmp( p_peek + i_peek - 8, "fmt ", 4 ) )
  321.     {
  322.         uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
  323.         if( i_len > WAV_PROBE_SIZE || i_peek + i_len > WAV_PROBE_SIZE )
  324.             return VLC_EGENERIC;
  325.         i_peek += i_len + 8;
  326.         if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
  327.             return VLC_EGENERIC;
  328.     }
  329.     /* Sanity check the wave format header */
  330.     uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
  331.     if( i_len > WAV_PROBE_SIZE )
  332.         return VLC_EGENERIC;
  333.     i_peek += i_len + 8;
  334.     if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
  335.         return VLC_EGENERIC;
  336.     const int i_format = GetWLE( p_peek + i_peek - i_len - 8 /* wFormatTag */ );
  337.     int i_format_idx;
  338.     for( i_format_idx = 0; pi_format[i_format_idx] != WAVE_FORMAT_UNKNOWN; i_format_idx++ )
  339.     {
  340.         if( i_format == pi_format[i_format_idx] )
  341.             break;
  342.     }
  343.     if( pi_format[i_format_idx] == WAVE_FORMAT_UNKNOWN )
  344.         return VLC_EGENERIC;
  345.     if( i_format == WAVE_FORMAT_PCM )
  346.     {
  347.         if( GetWLE( p_peek + i_peek - i_len - 6 /* nChannels */ ) != 2 )
  348.             return VLC_EGENERIC;
  349.         if( GetDWLE( p_peek + i_peek - i_len - 4 /* nSamplesPerSec */ ) !=
  350.             44100 )
  351.             return VLC_EGENERIC;
  352.     }
  353.     /* Skip the wave header */
  354.     while( memcmp( p_peek + i_peek - 8, "data", 4 ) )
  355.     {
  356.         uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
  357.         if( i_len > WAV_PROBE_SIZE || i_peek + i_len > WAV_PROBE_SIZE )
  358.             return VLC_EGENERIC;
  359.         i_peek += i_len + 8;
  360.         if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
  361.             return VLC_EGENERIC;
  362.     }
  363.     *pi_skip = i_peek;
  364.     return VLC_SUCCESS;
  365. }
  366. static int GenericProbe( demux_t *p_demux, int64_t *pi_offset,
  367.                          const char * ppsz_name[],
  368.                          int (*pf_check)( const uint8_t *, int * ), int i_check_size,
  369.                          const int pi_wav_format[] )
  370. {
  371.     bool   b_forced_demux;
  372.     int64_t i_offset;
  373.     const uint8_t *p_peek;
  374.     int i_skip;
  375.     b_forced_demux = false;
  376.     for( int i = 0; ppsz_name[i] != NULL; i++ )
  377.     {
  378.         b_forced_demux |= demux_IsForced( p_demux, ppsz_name[i] );
  379.     }
  380.     i_offset = stream_Tell( p_demux->s );
  381.     if( WavSkipHeader( p_demux, &i_skip, pi_wav_format ) )
  382.     {
  383.         if( !b_forced_demux )
  384.             return VLC_EGENERIC;
  385.     }
  386.     const bool b_wav = i_skip > 0;
  387.     /* peek the begining
  388.      * It is common that wav files have some sort of garbage at the begining
  389.      * We suppose that 8000 will be larger than any frame (for which pf_check
  390.      * return a size).
  391.      */
  392.     const int i_probe = i_skip + i_check_size + 8000 + ( b_wav ? 8000 : 0);
  393.     const int i_peek = stream_Peek( p_demux->s, &p_peek, i_probe );
  394.     if( i_peek < i_skip + i_check_size )
  395.     {
  396.         msg_Err( p_demux, "cannot peek" );
  397.         return VLC_EGENERIC;
  398.     }
  399.     for( ;; )
  400.     {
  401.         if( i_skip + i_check_size > i_peek )
  402.         {
  403.             if( !b_forced_demux )
  404.                 return VLC_EGENERIC;
  405.             break;
  406.         }
  407.         int i_samples = 0;
  408.         int i_size = pf_check( &p_peek[i_skip], &i_samples );
  409.         if( i_size >= 0 )
  410.         {
  411.             if( i_size == 0 )
  412.                 break;
  413.             /* If we have the frame size, check the next frame for
  414.              * extra robustness
  415.              * The second test is because some .wav have paddings
  416.              */
  417.             bool b_ok = false;
  418.             for( int t = 0; t < 1 + !!b_wav; t++ )
  419.             {
  420.                 if( t == 1 )
  421.                     i_size = i_samples * 2 * 2;
  422.                 if( i_skip + i_check_size + i_size <= i_peek )
  423.                 {
  424.                     b_ok = pf_check( &p_peek[i_skip+i_size], NULL ) >= 0;
  425.                     if( b_ok )
  426.                         break;
  427.                 }
  428.             }
  429.             if( b_ok )
  430.                 break;
  431.         }
  432.         i_skip++;
  433.         if( !b_wav && !b_forced_demux )
  434.             return VLC_EGENERIC;
  435.     }
  436.     *pi_offset = i_offset + i_skip;
  437.     return VLC_SUCCESS;
  438. }
  439. /*****************************************************************************
  440.  * Mpeg I/II Audio
  441.  *****************************************************************************/
  442. static int MpgaCheckSync( const uint8_t *p_peek )
  443. {
  444.     uint32_t h = GetDWBE( p_peek );
  445.     if( ((( h >> 21 )&0x07FF) != 0x07FF )   /* header sync */
  446.         || (((h >> 17)&0x03) == 0 )         /* valid layer ?*/
  447.         || (((h >> 12)&0x0F) == 0x0F )
  448.         || (((h >> 12)&0x0F) == 0x00 )      /* valid bitrate ? */
  449.         || (((h >> 10) & 0x03) == 0x03 )    /* valide sampling freq ? */
  450.         || ((h & 0x03) == 0x02 ))           /* valid emphasis ? */
  451.     {
  452.         return false;
  453.     }
  454.     return true;
  455. }
  456. #define MPGA_VERSION( h )   ( 1 - (((h)>>19)&0x01) )
  457. #define MPGA_MODE(h)        (((h)>> 6)&0x03)
  458. static int MpgaGetFrameSamples( uint32_t h )
  459. {
  460.     const int i_layer = 3 - (((h)>>17)&0x03);
  461.     switch( i_layer )
  462.     {
  463.     case 0:
  464.         return 384;
  465.     case 1:
  466.         return 1152;
  467.     case 2:
  468.         return MPGA_VERSION(h) ? 576 : 1152;
  469.     default:
  470.         return 0;
  471.     }
  472. }
  473. static int MpgaProbe( demux_t *p_demux, int64_t *pi_offset )
  474. {
  475.     const int pi_wav[] = { WAVE_FORMAT_MPEG, WAVE_FORMAT_MPEGLAYER3, WAVE_FORMAT_UNKNOWN };
  476.     bool   b_forced;
  477.     bool   b_forced_demux;
  478.     int64_t i_offset;
  479.     const uint8_t *p_peek;
  480.     int i_skip;
  481.     b_forced = demux_IsPathExtension( p_demux, ".mp3" );
  482.     b_forced_demux = demux_IsForced( p_demux, "mp3" ) ||
  483.                      demux_IsForced( p_demux, "mpga" );
  484.     i_offset = stream_Tell( p_demux->s );
  485.     if( WavSkipHeader( p_demux, &i_skip, pi_wav ) )
  486.     {
  487.         if( !b_forced_demux )
  488.             return VLC_EGENERIC;
  489.         return VLC_EGENERIC;
  490.     }
  491.     if( stream_Peek( p_demux->s, &p_peek, i_skip + 4 ) < i_skip + 4 )
  492.         return VLC_EGENERIC;
  493.     if( !MpgaCheckSync( &p_peek[i_skip] ) )
  494.     {
  495.         bool b_ok = false;
  496.         int i_peek;
  497.         if( !b_forced_demux && !b_forced )
  498.             return VLC_EGENERIC;
  499.         i_peek = stream_Peek( p_demux->s, &p_peek, i_skip + 8096 );
  500.         while( i_skip + 4 < i_peek )
  501.         {
  502.             if( MpgaCheckSync( &p_peek[i_skip] ) )
  503.             {
  504.                 b_ok = true;
  505.                 break;
  506.             }
  507.             i_skip++;
  508.         }
  509.         if( !b_ok && !b_forced_demux )
  510.             return VLC_EGENERIC;
  511.     }
  512.     *pi_offset = i_offset + i_skip;
  513.     return VLC_SUCCESS;
  514. }
  515. static void MpgaXingSkip( const uint8_t **pp_xing, int *pi_xing, int i_count )
  516. {
  517.     if(i_count > *pi_xing )
  518.         i_count = *pi_xing;
  519.     (*pp_xing) += i_count;
  520.     (*pi_xing) -= i_count;
  521. }
  522. static uint32_t MpgaXingGetDWBE( const uint8_t **pp_xing, int *pi_xing, uint32_t i_default )
  523. {
  524.     if( *pi_xing < 4 )
  525.         return i_default;
  526.     uint32_t v = GetDWBE( *pp_xing );
  527.     MpgaXingSkip( pp_xing, pi_xing, 4 );
  528.     return v;
  529. }
  530. static int MpgaInit( demux_t *p_demux )
  531. {
  532.     demux_sys_t *p_sys = p_demux->p_sys;
  533.     const uint8_t *p_peek;
  534.     int i_peek;
  535.     /* */
  536.     p_sys->i_packet_size = 1024;
  537.     /* Load a potential xing header */
  538.     i_peek = stream_Peek( p_demux->s, &p_peek, 4 + 1024 );
  539.     if( i_peek < 4 + 21 )
  540.         return VLC_SUCCESS;
  541.     const uint32_t header = GetDWBE( p_peek );
  542.     if( !MpgaCheckSync( p_peek ) )
  543.         return VLC_SUCCESS;
  544.     /* Xing header */
  545.     const uint8_t *p_xing = p_peek;
  546.     int i_xing = i_peek;
  547.     int i_skip;
  548.     if( MPGA_VERSION( header ) == 0 )
  549.         i_skip = MPGA_MODE( header ) != 3 ? 36 : 21;
  550.     else
  551.         i_skip = MPGA_MODE( header ) != 3 ? 21 : 13;
  552.     if( i_skip + 8 >= i_xing || memcmp( &p_xing[i_skip], "Xing", 4 ) )
  553.         return VLC_SUCCESS;
  554.     const uint32_t i_flags = GetDWBE( &p_xing[i_skip+4] );
  555.     MpgaXingSkip( &p_xing, &i_xing, i_skip + 8 );
  556.     if( i_flags&0x01 )
  557.         p_sys->xing.i_frames = MpgaXingGetDWBE( &p_xing, &i_xing, 0 );
  558.     if( i_flags&0x02 )
  559.         p_sys->xing.i_bytes = MpgaXingGetDWBE( &p_xing, &i_xing, 0 );
  560.     if( i_flags&0x04 ) /* TODO Support XING TOC to improve seeking accuracy */
  561.         MpgaXingSkip( &p_xing, &i_xing, 100 );
  562.     if( i_flags&0x08 )
  563.     {
  564.         /* FIXME: doesn't return the right bitrage average, at least
  565.            with some MP3's */
  566.         p_sys->xing.i_bitrate_avg = MpgaXingGetDWBE( &p_xing, &i_xing, 0 );
  567.         msg_Dbg( p_demux, "xing vbr value present (%d)",
  568.                  p_sys->xing.i_bitrate_avg );
  569.     }
  570.     if( p_sys->xing.i_frames > 0 && p_sys->xing.i_bytes > 0 )
  571.     {
  572.         p_sys->xing.i_frame_samples = MpgaGetFrameSamples( header );
  573.         msg_Dbg( p_demux, "xing frames&bytes value present "
  574.                  "(%d bytes, %d frames, %d samples/frame)",
  575.                  p_sys->xing.i_bytes, p_sys->xing.i_frames,
  576.                  p_sys->xing.i_frame_samples );
  577.     }
  578.     return VLC_SUCCESS;
  579. }
  580. /*****************************************************************************
  581.  * AAC
  582.  *****************************************************************************/
  583. static int AacProbe( demux_t *p_demux, int64_t *pi_offset )
  584. {
  585.     bool   b_forced;
  586.     bool   b_forced_demux;
  587.     int64_t i_offset;
  588.     const uint8_t *p_peek;
  589.     b_forced = demux_IsPathExtension( p_demux, ".aac" ) ||
  590.                demux_IsPathExtension( p_demux, ".aacp" );
  591.     b_forced_demux = demux_IsForced( p_demux, "m4a" ) ||
  592.                      demux_IsForced( p_demux, "aac" ) ||
  593.                      demux_IsForced( p_demux, "mp4a" );
  594.     if( !b_forced_demux && !b_forced )
  595.         return VLC_EGENERIC;
  596.     i_offset = stream_Tell( p_demux->s );
  597.     /* peek the begining (10 is for adts header) */
  598.     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
  599.     {
  600.         msg_Err( p_demux, "cannot peek" );
  601.         return VLC_EGENERIC;
  602.     }
  603.     if( !strncmp( (char *)p_peek, "ADIF", 4 ) )
  604.     {
  605.         msg_Err( p_demux, "ADIF file. Not yet supported. (Please report)" );
  606.         return VLC_EGENERIC;
  607.     }
  608.     *pi_offset = i_offset;
  609.     return VLC_SUCCESS;
  610. }
  611. static int AacInit( demux_t *p_demux )
  612. {
  613.     demux_sys_t *p_sys = p_demux->p_sys;
  614.     p_sys->i_packet_size = 4096;
  615.     return VLC_SUCCESS;
  616. }
  617. /*****************************************************************************
  618.  * A52
  619.  *****************************************************************************/
  620. static int A52CheckSync( const uint8_t *p_peek, bool *p_big_endian, int *pi_samples, bool b_eac3 )
  621. {
  622.     vlc_a52_header_t header;
  623.     uint8_t p_tmp[VLC_A52_HEADER_SIZE];
  624.     *p_big_endian =  p_peek[0] == 0x0b && p_peek[1] == 0x77;
  625.     if( !*p_big_endian )
  626.     {
  627.         swab( p_peek, p_tmp, VLC_A52_HEADER_SIZE );
  628.         p_peek = p_tmp;
  629.     }
  630.     if( vlc_a52_header_Parse( &header, p_peek, VLC_A52_HEADER_SIZE ) )
  631.         return VLC_EGENERIC;
  632.     if( !header.b_eac3 != !b_eac3 )
  633.         return VLC_EGENERIC;
  634.     if( pi_samples )
  635.         *pi_samples = header.i_samples;
  636.     return header.i_size;
  637. }
  638. static int EA52CheckSyncProbe( const uint8_t *p_peek, int *pi_samples )
  639. {
  640.     bool b_dummy;
  641.     return A52CheckSync( p_peek, &b_dummy, pi_samples, true );
  642. }
  643. static int EA52Probe( demux_t *p_demux, int64_t *pi_offset )
  644. {
  645.     const char *ppsz_name[] = { "eac3", NULL };
  646.     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_A52, WAVE_FORMAT_UNKNOWN };
  647.     return GenericProbe( p_demux, pi_offset, ppsz_name, EA52CheckSyncProbe, VLC_A52_HEADER_SIZE, pi_wav );
  648. }
  649. static int A52CheckSyncProbe( const uint8_t *p_peek, int *pi_samples )
  650. {
  651.     bool b_dummy;
  652.     return A52CheckSync( p_peek, &b_dummy, pi_samples, false );
  653. }
  654. static int A52Probe( demux_t *p_demux, int64_t *pi_offset )
  655. {
  656.     const char *ppsz_name[] = { "a52", "ac3", NULL };
  657.     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_A52, WAVE_FORMAT_UNKNOWN };
  658.     return GenericProbe( p_demux, pi_offset, ppsz_name, A52CheckSyncProbe, VLC_A52_HEADER_SIZE, pi_wav );
  659. }
  660. static int A52Init( demux_t *p_demux )
  661. {
  662.     demux_sys_t *p_sys = p_demux->p_sys;
  663.     p_sys->b_big_endian = false;
  664.     p_sys->i_packet_size = 1024;
  665.     const uint8_t *p_peek;
  666.     /* peek the begining */
  667.     if( stream_Peek( p_demux->s, &p_peek, VLC_A52_HEADER_SIZE ) >= VLC_A52_HEADER_SIZE )
  668.     {
  669.         A52CheckSync( p_peek, &p_sys->b_big_endian, NULL, true );
  670.     }
  671.     return VLC_SUCCESS;
  672. }
  673. /*****************************************************************************
  674.  * DTS
  675.  *****************************************************************************/
  676. static int DtsCheckSync( const uint8_t *p_peek, int *pi_samples )
  677. {
  678.     /* TODO return frame size for robustness */
  679.     /* 14 bits, little endian version of the bitstream */
  680.     if( p_peek[0] == 0xff && p_peek[1] == 0x1f &&
  681.         p_peek[2] == 0x00 && p_peek[3] == 0xe8 &&
  682.         (p_peek[4] & 0xf0) == 0xf0 && p_peek[5] == 0x07 )
  683.     {
  684.         return 0;
  685.     }
  686.     /* 14 bits, big endian version of the bitstream */
  687.     else if( p_peek[0] == 0x1f && p_peek[1] == 0xff &&
  688.              p_peek[2] == 0xe8 && p_peek[3] == 0x00 &&
  689.              p_peek[4] == 0x07 && (p_peek[5] & 0xf0) == 0xf0)
  690.     {
  691.         return 0;
  692.     }
  693.     /* 16 bits, big endian version of the bitstream */
  694.     else if( p_peek[0] == 0x7f && p_peek[1] == 0xfe &&
  695.              p_peek[2] == 0x80 && p_peek[3] == 0x01 )
  696.     {
  697.         return 0;
  698.     }
  699.     /* 16 bits, little endian version of the bitstream */
  700.     else if( p_peek[0] == 0xfe && p_peek[1] == 0x7f &&
  701.              p_peek[2] == 0x01 && p_peek[3] == 0x80 )
  702.     {
  703.         return 0;
  704.     }
  705.     VLC_UNUSED(pi_samples);
  706.     return VLC_EGENERIC;
  707. }
  708. static int DtsProbe( demux_t *p_demux, int64_t *pi_offset )
  709. {
  710.     const char *ppsz_name[] = { "dts", NULL };
  711.     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_DTS, WAVE_FORMAT_UNKNOWN };
  712.     return GenericProbe( p_demux, pi_offset, ppsz_name, DtsCheckSync, 11, pi_wav );
  713. }
  714. static int DtsInit( demux_t *p_demux )
  715. {
  716.     demux_sys_t *p_sys = p_demux->p_sys;
  717.     p_sys->i_packet_size = 16384;
  718.     return VLC_SUCCESS;
  719. }
  720. /*****************************************************************************
  721.  * MLP
  722.  *****************************************************************************/
  723. static int MlpCheckSync( const uint8_t *p_peek, int *pi_samples )
  724. {
  725.     if( p_peek[4+0] != 0xf8 || p_peek[4+1] != 0x72 || p_peek[4+2] != 0x6f )
  726.         return -1;
  727.     if( p_peek[4+3] != 0xba && p_peek[4+3] != 0xbb )
  728.         return -1;
  729.     /* TODO checksum and real size for robustness */
  730.     VLC_UNUSED(pi_samples);
  731.     return 0;
  732. }
  733. static int MlpProbe( demux_t *p_demux, int64_t *pi_offset )
  734. {
  735.     const char *ppsz_name[] = { "mlp", "thd", NULL };
  736.     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_UNKNOWN };
  737.     return GenericProbe( p_demux, pi_offset, ppsz_name, MlpCheckSync, 4+28+16*4, pi_wav );
  738. }
  739. static int MlpInit( demux_t *p_demux )
  740. {
  741.     demux_sys_t *p_sys = p_demux->p_sys;
  742.     p_sys->i_packet_size = 4096;
  743.     return VLC_SUCCESS;
  744. }