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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * common.c : audio output management of common data structures
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2007 the VideoLAN team
  5.  * $Id: 0b19748e351d4671c62e0ed77d0ae645e5a0ae7b $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  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 <assert.h>
  30. #include <vlc_common.h>
  31. #include <vlc_aout.h>
  32. #include "aout_internal.h"
  33. #include "libvlc.h"
  34. /*
  35.  * Instances management (internal and external)
  36.  */
  37. #define AOUT_ASSERT_FIFO_LOCKED aout_assert_fifo_locked(p_aout, p_fifo)
  38. static inline void aout_assert_fifo_locked( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  39. {
  40. #ifndef NDEBUG
  41.     if( p_fifo == &p_aout->output.fifo )
  42.         vlc_assert_locked( &p_aout->output_fifo_lock );
  43.     else
  44.     {
  45.         int i;
  46.         for( i = 0; i < p_aout->i_nb_inputs; i++ )
  47.         {
  48.             if( p_fifo == &p_aout->pp_inputs[i]->fifo)
  49.             {
  50.                 vlc_assert_locked( &p_aout->input_fifos_lock );
  51.                 break;
  52.             }
  53.         }
  54.         if( i == p_aout->i_nb_inputs )
  55.             vlc_assert_locked( &p_aout->mixer_lock );
  56.     }
  57. #else
  58.     (void)p_aout;
  59.     (void)p_fifo;
  60. #endif
  61. }
  62. /* Local functions */
  63. static void aout_Destructor( vlc_object_t * p_this );
  64. /*****************************************************************************
  65.  * aout_New: initialize aout structure
  66.  *****************************************************************************/
  67. aout_instance_t * __aout_New( vlc_object_t * p_parent )
  68. {
  69.     aout_instance_t * p_aout;
  70.     vlc_value_t val;
  71.     /* Allocate descriptor. */
  72.     p_aout = vlc_object_create( p_parent, VLC_OBJECT_AOUT );
  73.     if( p_aout == NULL )
  74.     {
  75.         return NULL;
  76.     }
  77.     /* Initialize members. */
  78.     vlc_mutex_init( &p_aout->input_fifos_lock );
  79.     vlc_mutex_init( &p_aout->mixer_lock );
  80.     vlc_mutex_init( &p_aout->output_fifo_lock );
  81.     p_aout->i_nb_inputs = 0;
  82.     p_aout->mixer.f_multiplier = 1.0;
  83.     p_aout->mixer.b_error = 1;
  84.     p_aout->output.b_error = 1;
  85.     p_aout->output.b_starving = 1;
  86.     var_Create( p_aout, "intf-change", VLC_VAR_BOOL );
  87.     val.b_bool = true;
  88.     var_Set( p_aout, "intf-change", val );
  89.     vlc_object_set_destructor( p_aout, aout_Destructor );
  90.     return p_aout;
  91. }
  92. /*****************************************************************************
  93.  * aout_Destructor: destroy aout structure
  94.  *****************************************************************************/
  95. static void aout_Destructor( vlc_object_t * p_this )
  96. {
  97.     aout_instance_t * p_aout = (aout_instance_t *)p_this;
  98.     vlc_mutex_destroy( &p_aout->input_fifos_lock );
  99.     vlc_mutex_destroy( &p_aout->mixer_lock );
  100.     vlc_mutex_destroy( &p_aout->output_fifo_lock );
  101. }
  102. /*
  103.  * Formats management (internal and external)
  104.  */
  105. /*****************************************************************************
  106.  * aout_FormatNbChannels : return the number of channels
  107.  *****************************************************************************/
  108. unsigned int aout_FormatNbChannels( const audio_sample_format_t * p_format )
  109. {
  110.     static const uint32_t pi_channels[] =
  111.         { AOUT_CHAN_CENTER, AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  112.           AOUT_CHAN_REARCENTER, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  113.           AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, AOUT_CHAN_LFE };
  114.     unsigned int i_nb = 0, i;
  115.     for ( i = 0; i < sizeof(pi_channels)/sizeof(uint32_t); i++ )
  116.     {
  117.         if ( p_format->i_physical_channels & pi_channels[i] ) i_nb++;
  118.     }
  119.     return i_nb;
  120. }
  121. /*****************************************************************************
  122.  * aout_BitsPerSample : get the number of bits per sample
  123.  *****************************************************************************/
  124. unsigned int aout_BitsPerSample( vlc_fourcc_t i_format )
  125. {
  126.     switch( i_format )
  127.     {
  128.     case VLC_FOURCC('u','8',' ',' '):
  129.     case VLC_FOURCC('s','8',' ',' '):
  130.         return 8;
  131.     case VLC_FOURCC('u','1','6','l'):
  132.     case VLC_FOURCC('s','1','6','l'):
  133.     case VLC_FOURCC('u','1','6','b'):
  134.     case VLC_FOURCC('s','1','6','b'):
  135.         return 16;
  136.     case VLC_FOURCC('u','2','4','l'):
  137.     case VLC_FOURCC('s','2','4','l'):
  138.     case VLC_FOURCC('u','2','4','b'):
  139.     case VLC_FOURCC('s','2','4','b'):
  140.         return 24;
  141.     case VLC_FOURCC('s','3','2','l'):
  142.     case VLC_FOURCC('s','3','2','b'):
  143.     case VLC_FOURCC('f','l','3','2'):
  144.     case VLC_FOURCC('f','i','3','2'):
  145.         return 32;
  146.     case VLC_FOURCC('f','l','6','4'):
  147.         return 64;
  148.     default:
  149.         /* For these formats the caller has to indicate the parameters
  150.          * by hand. */
  151.         return 0;
  152.     }
  153. }
  154. /*****************************************************************************
  155.  * aout_FormatPrepare : compute the number of bytes per frame & frame length
  156.  *****************************************************************************/
  157. void aout_FormatPrepare( audio_sample_format_t * p_format )
  158. {
  159.     p_format->i_bitspersample = aout_BitsPerSample( p_format->i_format );
  160.     if( p_format->i_bitspersample > 0 )
  161.     {
  162.         p_format->i_bytes_per_frame = ( p_format->i_bitspersample / 8 )
  163.                                     * aout_FormatNbChannels( p_format );
  164.         p_format->i_frame_length = 1;
  165.     }
  166. }
  167. /*****************************************************************************
  168.  * aout_FormatPrintChannels : print a channel in a human-readable form
  169.  *****************************************************************************/
  170. const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format )
  171. {
  172.     switch ( p_format->i_physical_channels & AOUT_CHAN_PHYSMASK )
  173.     {
  174.     case AOUT_CHAN_LEFT:
  175.     case AOUT_CHAN_RIGHT:
  176.     case AOUT_CHAN_CENTER:
  177.         if ( (p_format->i_original_channels & AOUT_CHAN_CENTER)
  178.               || (p_format->i_original_channels
  179.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  180.             return "Mono";
  181.         else if ( p_format->i_original_channels & AOUT_CHAN_LEFT )
  182.             return "Left";
  183.         return "Right";
  184.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
  185.         if ( p_format->i_original_channels & AOUT_CHAN_REVERSESTEREO )
  186.         {
  187.             if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  188.                 return "Dolby/Reverse";
  189.             return "Stereo/Reverse";
  190.         }
  191.         else
  192.         {
  193.             if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  194.                 return "Dolby";
  195.             else if ( p_format->i_original_channels & AOUT_CHAN_DUALMONO )
  196.                 return "Dual-mono";
  197.             else if ( p_format->i_original_channels == AOUT_CHAN_CENTER )
  198.                 return "Stereo/Mono";
  199.             else if ( !(p_format->i_original_channels & AOUT_CHAN_RIGHT) )
  200.                 return "Stereo/Left";
  201.             else if ( !(p_format->i_original_channels & AOUT_CHAN_LEFT) )
  202.                 return "Stereo/Right";
  203.             return "Stereo";
  204.         }
  205.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
  206.         return "3F";
  207.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
  208.         return "2F1R";
  209.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  210.           | AOUT_CHAN_REARCENTER:
  211.         return "3F1R";
  212.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  213.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  214.         return "2F2R";
  215.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  216.           | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT:
  217.         return "2F2M";
  218.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  219.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  220.         return "3F2R";
  221.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  222.           | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT:
  223.         return "3F2M";
  224.     case AOUT_CHAN_CENTER | AOUT_CHAN_LFE:
  225.         if ( (p_format->i_original_channels & AOUT_CHAN_CENTER)
  226.               || (p_format->i_original_channels
  227.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  228.             return "Mono/LFE";
  229.         else if ( p_format->i_original_channels & AOUT_CHAN_LEFT )
  230.             return "Left/LFE";
  231.         return "Right/LFE";
  232.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_LFE:
  233.         if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  234.             return "Dolby/LFE";
  235.         else if ( p_format->i_original_channels & AOUT_CHAN_DUALMONO )
  236.             return "Dual-mono/LFE";
  237.         else if ( p_format->i_original_channels == AOUT_CHAN_CENTER )
  238.             return "Mono/LFE";
  239.         else if ( !(p_format->i_original_channels & AOUT_CHAN_RIGHT) )
  240.             return "Stereo/Left/LFE";
  241.         else if ( !(p_format->i_original_channels & AOUT_CHAN_LEFT) )
  242.             return "Stereo/Right/LFE";
  243.          return "Stereo/LFE";
  244.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER | AOUT_CHAN_LFE:
  245.         return "3F/LFE";
  246.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER
  247.           | AOUT_CHAN_LFE:
  248.         return "2F1R/LFE";
  249.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  250.           | AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE:
  251.         return "3F1R/LFE";
  252.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  253.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE:
  254.         return "2F2R/LFE";
  255.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  256.           | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
  257.         return "2F2M/LFE";
  258.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  259.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE:
  260.         return "3F2R/LFE";
  261.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  262.           | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
  263.         return "3F2M/LFE";
  264.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  265.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
  266.           | AOUT_CHAN_MIDDLERIGHT:
  267.         return "3F2M2R";
  268.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  269.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
  270.           | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
  271.         return "3F2M2R/LFE";
  272.     }
  273.     return "ERROR";
  274. }
  275. /*****************************************************************************
  276.  * aout_FormatPrint : print a format in a human-readable form
  277.  *****************************************************************************/
  278. void aout_FormatPrint( aout_instance_t * p_aout, const char * psz_text,
  279.                        const audio_sample_format_t * p_format )
  280. {
  281.     msg_Dbg( p_aout, "%s '%4.4s' %d Hz %s frame=%d samples/%d bytes", psz_text,
  282.              (char *)&p_format->i_format, p_format->i_rate,
  283.              aout_FormatPrintChannels( p_format ),
  284.              p_format->i_frame_length, p_format->i_bytes_per_frame );
  285. }
  286. /*****************************************************************************
  287.  * aout_FormatsPrint : print two formats in a human-readable form
  288.  *****************************************************************************/
  289. void aout_FormatsPrint( aout_instance_t * p_aout, const char * psz_text,
  290.                         const audio_sample_format_t * p_format1,
  291.                         const audio_sample_format_t * p_format2 )
  292. {
  293.     msg_Dbg( p_aout, "%s '%4.4s'->'%4.4s' %d Hz->%d Hz %s->%s",
  294.              psz_text,
  295.              (char *)&p_format1->i_format, (char *)&p_format2->i_format,
  296.              p_format1->i_rate, p_format2->i_rate,
  297.              aout_FormatPrintChannels( p_format1 ),
  298.              aout_FormatPrintChannels( p_format2 ) );
  299. }
  300. /*
  301.  * FIFO management (internal) - please understand that solving race conditions
  302.  * is _your_ job, ie. in the audio output you should own the mixer lock
  303.  * before calling any of these functions.
  304.  */
  305. /*****************************************************************************
  306.  * aout_FifoInit : initialize the members of a FIFO
  307.  *****************************************************************************/
  308. void aout_FifoInit( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  309.                     uint32_t i_rate )
  310. {
  311.     AOUT_ASSERT_FIFO_LOCKED;
  312.     if( i_rate == 0 )
  313.     {
  314.         msg_Err( p_aout, "initialising fifo with zero divider" );
  315.     }
  316.     p_fifo->p_first = NULL;
  317.     p_fifo->pp_last = &p_fifo->p_first;
  318.     aout_DateInit( &p_fifo->end_date, i_rate );
  319. }
  320. /*****************************************************************************
  321.  * aout_FifoPush : push a packet into the FIFO
  322.  *****************************************************************************/
  323. void aout_FifoPush( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  324.                     aout_buffer_t * p_buffer )
  325. {
  326.     (void)p_aout;
  327.     AOUT_ASSERT_FIFO_LOCKED;
  328.     *p_fifo->pp_last = p_buffer;
  329.     p_fifo->pp_last = &p_buffer->p_next;
  330.     *p_fifo->pp_last = NULL;
  331.     /* Enforce the continuity of the stream. */
  332.     if ( aout_DateGet( &p_fifo->end_date ) )
  333.     {
  334.         p_buffer->start_date = aout_DateGet( &p_fifo->end_date );
  335.         p_buffer->end_date = aout_DateIncrement( &p_fifo->end_date,
  336.                                                  p_buffer->i_nb_samples );
  337.     }
  338.     else
  339.     {
  340.         aout_DateSet( &p_fifo->end_date, p_buffer->end_date );
  341.     }
  342. }
  343. /*****************************************************************************
  344.  * aout_FifoSet : set end_date and trash all buffers (because they aren't
  345.  * properly dated)
  346.  *****************************************************************************/
  347. void aout_FifoSet( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  348.                    mtime_t date )
  349. {
  350.     aout_buffer_t * p_buffer;
  351.     (void)p_aout;
  352.     AOUT_ASSERT_FIFO_LOCKED;
  353.     aout_DateSet( &p_fifo->end_date, date );
  354.     p_buffer = p_fifo->p_first;
  355.     while ( p_buffer != NULL )
  356.     {
  357.         aout_buffer_t * p_next = p_buffer->p_next;
  358.         aout_BufferFree( p_buffer );
  359.         p_buffer = p_next;
  360.     }
  361.     p_fifo->p_first = NULL;
  362.     p_fifo->pp_last = &p_fifo->p_first;
  363. }
  364. /*****************************************************************************
  365.  * aout_FifoMoveDates : Move forwards or backwards all dates in the FIFO
  366.  *****************************************************************************/
  367. void aout_FifoMoveDates( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  368.                          mtime_t difference )
  369. {
  370.     aout_buffer_t * p_buffer;
  371.     (void)p_aout;
  372.     AOUT_ASSERT_FIFO_LOCKED;
  373.     aout_DateMove( &p_fifo->end_date, difference );
  374.     p_buffer = p_fifo->p_first;
  375.     while ( p_buffer != NULL )
  376.     {
  377.         p_buffer->start_date += difference;
  378.         p_buffer->end_date += difference;
  379.         p_buffer = p_buffer->p_next;
  380.     }
  381. }
  382. /*****************************************************************************
  383.  * aout_FifoNextStart : return the current end_date
  384.  *****************************************************************************/
  385. mtime_t aout_FifoNextStart( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  386. {
  387.     (void)p_aout;
  388.     AOUT_ASSERT_FIFO_LOCKED;
  389.     return aout_DateGet( &p_fifo->end_date );
  390. }
  391. /*****************************************************************************
  392.  * aout_FifoFirstDate : return the playing date of the first buffer in the
  393.  * FIFO
  394.  *****************************************************************************/
  395. mtime_t aout_FifoFirstDate( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  396. {
  397.     (void)p_aout;
  398.     AOUT_ASSERT_FIFO_LOCKED;
  399.     return p_fifo->p_first ?  p_fifo->p_first->start_date : 0;
  400. }
  401. /*****************************************************************************
  402.  * aout_FifoPop : get the next buffer out of the FIFO
  403.  *****************************************************************************/
  404. aout_buffer_t * aout_FifoPop( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  405. {
  406.     aout_buffer_t * p_buffer;
  407.     (void)p_aout;
  408.     AOUT_ASSERT_FIFO_LOCKED;
  409.     p_buffer = p_fifo->p_first;
  410.     if ( p_buffer == NULL ) return NULL;
  411.     p_fifo->p_first = p_buffer->p_next;
  412.     if ( p_fifo->p_first == NULL )
  413.     {
  414.         p_fifo->pp_last = &p_fifo->p_first;
  415.     }
  416.     return p_buffer;
  417. }
  418. /*****************************************************************************
  419.  * aout_FifoDestroy : destroy a FIFO and its buffers
  420.  *****************************************************************************/
  421. void aout_FifoDestroy( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  422. {
  423.     aout_buffer_t * p_buffer;
  424.     (void)p_aout;
  425.     AOUT_ASSERT_FIFO_LOCKED;
  426.     p_buffer = p_fifo->p_first;
  427.     while ( p_buffer != NULL )
  428.     {
  429.         aout_buffer_t * p_next = p_buffer->p_next;
  430.         aout_BufferFree( p_buffer );
  431.         p_buffer = p_next;
  432.     }
  433.     p_fifo->p_first = NULL;
  434.     p_fifo->pp_last = &p_fifo->p_first;
  435. }
  436. /*
  437.  * Date management (internal and external)
  438.  */
  439. /*****************************************************************************
  440.  * aout_DateInit : set the divider of an audio_date_t
  441.  *****************************************************************************/
  442. void aout_DateInit( audio_date_t * p_date, uint32_t i_divider )
  443. {
  444.     p_date->date = 0;
  445.     p_date->i_divider = i_divider;
  446.     p_date->i_remainder = 0;
  447. }
  448. /*****************************************************************************
  449.  * aout_DateSet : set the date of an audio_date_t
  450.  *****************************************************************************/
  451. void aout_DateSet( audio_date_t * p_date, mtime_t new_date )
  452. {
  453.     p_date->date = new_date;
  454.     p_date->i_remainder = 0;
  455. }
  456. /*****************************************************************************
  457.  * aout_DateMove : move forwards or backwards the date of an audio_date_t
  458.  *****************************************************************************/
  459. void aout_DateMove( audio_date_t * p_date, mtime_t difference )
  460. {
  461.     p_date->date += difference;
  462. }
  463. /*****************************************************************************
  464.  * aout_DateGet : get the date of an audio_date_t
  465.  *****************************************************************************/
  466. mtime_t aout_DateGet( const audio_date_t * p_date )
  467. {
  468.     return p_date->date;
  469. }
  470. /*****************************************************************************
  471.  * aout_DateIncrement : increment the date and return the result, taking
  472.  * into account rounding errors
  473.  *****************************************************************************/
  474. mtime_t aout_DateIncrement( audio_date_t * p_date, uint32_t i_nb_samples )
  475. {
  476.     mtime_t i_dividend = INT64_C(1000000) * i_nb_samples;
  477.     assert( p_date->i_divider > 0 ); /* uninitialized audio_data_t ? */
  478.     p_date->date += i_dividend / p_date->i_divider;
  479.     p_date->i_remainder += (int)(i_dividend % p_date->i_divider);
  480.     if ( p_date->i_remainder >= p_date->i_divider )
  481.     {
  482.         /* This is Bresenham algorithm. */
  483.         p_date->date++;
  484.         p_date->i_remainder -= p_date->i_divider;
  485.     }
  486.     return p_date->date;
  487. }
  488. /*****************************************************************************
  489.  * aout_CheckChannelReorder : Check if we need to do some channel re-ordering
  490.  *****************************************************************************/
  491. int aout_CheckChannelReorder( const uint32_t *pi_chan_order_in,
  492.                               const uint32_t *pi_chan_order_out,
  493.                               uint32_t i_channel_mask,
  494.                               int i_channels, int *pi_chan_table )
  495. {
  496.     bool b_chan_reorder = false;
  497.     int i, j, k, l;
  498.     if( i_channels > AOUT_CHAN_MAX )
  499.         return false;
  500.     if( pi_chan_order_in == NULL )
  501.         pi_chan_order_in = pi_vlc_chan_order_wg4;
  502.     if( pi_chan_order_out == NULL )
  503.         pi_chan_order_out = pi_vlc_chan_order_wg4;
  504.     for( i = 0, j = 0; pi_chan_order_in[i]; i++ )
  505.     {
  506.         if( !(i_channel_mask & pi_chan_order_in[i]) ) continue;
  507.         for( k = 0, l = 0; pi_chan_order_in[i] != pi_chan_order_out[k]; k++ )
  508.         {
  509.             if( i_channel_mask & pi_chan_order_out[k] ) l++;
  510.         }
  511.         pi_chan_table[j++] = l;
  512.     }
  513.     for( i = 0; i < i_channels; i++ )
  514.     {
  515.         if( pi_chan_table[i] != i ) b_chan_reorder = true;
  516.     }
  517.     return b_chan_reorder;
  518. }
  519. /*****************************************************************************
  520.  * aout_ChannelReorder :
  521.  *****************************************************************************/
  522. void aout_ChannelReorder( uint8_t *p_buf, int i_buffer,
  523.                           int i_channels, const int *pi_chan_table,
  524.                           int i_bits_per_sample )
  525. {
  526.     uint8_t p_tmp[AOUT_CHAN_MAX * 4];
  527.     int i, j;
  528.     if( i_bits_per_sample == 8 )
  529.     {
  530.         for( i = 0; i < i_buffer / i_channels; i++ )
  531.         {
  532.             for( j = 0; j < i_channels; j++ )
  533.             {
  534.                 p_tmp[pi_chan_table[j]] = p_buf[j];
  535.             }
  536.             memcpy( p_buf, p_tmp, i_channels );
  537.             p_buf += i_channels;
  538.         }
  539.     }
  540.     else if( i_bits_per_sample == 16 )
  541.     {
  542.         for( i = 0; i < i_buffer / i_channels / 2; i++ )
  543.         {
  544.             for( j = 0; j < i_channels; j++ )
  545.             {
  546.                 p_tmp[2 * pi_chan_table[j]]     = p_buf[2 * j];
  547.                 p_tmp[2 * pi_chan_table[j] + 1] = p_buf[2 * j + 1];
  548.             }
  549.             memcpy( p_buf, p_tmp, 2 * i_channels );
  550.             p_buf += 2 * i_channels;
  551.         }
  552.     }
  553.     else if( i_bits_per_sample == 24 )
  554.     {
  555.         for( i = 0; i < i_buffer / i_channels / 3; i++ )
  556.         {
  557.             for( j = 0; j < i_channels; j++ )
  558.             {
  559.                 p_tmp[3 * pi_chan_table[j]]     = p_buf[3 * j];
  560.                 p_tmp[3 * pi_chan_table[j] + 1] = p_buf[3 * j + 1];
  561.                 p_tmp[3 * pi_chan_table[j] + 2] = p_buf[3 * j + 2];
  562.             }
  563.             memcpy( p_buf, p_tmp, 3 * i_channels );
  564.             p_buf += 3 * i_channels;
  565.         }
  566.     }
  567.     else if( i_bits_per_sample == 32 )
  568.     {
  569.         for( i = 0; i < i_buffer / i_channels / 4; i++ )
  570.         {
  571.             for( j = 0; j < i_channels; j++ )
  572.             {
  573.                 p_tmp[4 * pi_chan_table[j]]     = p_buf[4 * j];
  574.                 p_tmp[4 * pi_chan_table[j] + 1] = p_buf[4 * j + 1];
  575.                 p_tmp[4 * pi_chan_table[j] + 2] = p_buf[4 * j + 2];
  576.                 p_tmp[4 * pi_chan_table[j] + 3] = p_buf[4 * j + 3];
  577.             }
  578.             memcpy( p_buf, p_tmp, 4 * i_channels );
  579.             p_buf += 4 * i_channels;
  580.         }
  581.     }
  582. }
  583. /*****************************************************************************
  584.  * aout_ChannelExtract:
  585.  *****************************************************************************/
  586. static inline void ExtractChannel( uint8_t *pi_dst, int i_dst_channels,
  587.                                    const uint8_t *pi_src, int i_src_channels,
  588.                                    int i_sample_count,
  589.                                    const int *pi_selection, int i_bytes )
  590. {
  591.     for( int i = 0; i < i_sample_count; i++ )
  592.     {
  593.         for( int j = 0; j < i_dst_channels; j++ )
  594.             memcpy( &pi_dst[j * i_bytes], &pi_src[pi_selection[j] * i_bytes], i_bytes );
  595.         pi_dst += i_dst_channels * i_bytes;
  596.         pi_src += i_src_channels * i_bytes;
  597.     }
  598. }
  599. void aout_ChannelExtract( void *p_dst, int i_dst_channels,
  600.                           const void *p_src, int i_src_channels,
  601.                           int i_sample_count, const int *pi_selection, int i_bits_per_sample )
  602. {
  603.     /* It does not work in place */
  604.     assert( p_dst != p_src );
  605.     /* Force the compiler to inline for the specific cases so it can optimize */
  606.     if( i_bits_per_sample == 8 )
  607.         ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 1 );
  608.     else  if( i_bits_per_sample == 16 )
  609.         ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 2 );
  610.     else  if( i_bits_per_sample == 24 )
  611.         ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 3 );
  612.     else  if( i_bits_per_sample == 32 )
  613.         ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 4 );
  614.     else  if( i_bits_per_sample == 64 )
  615.         ExtractChannel( p_dst, i_dst_channels, p_src, i_src_channels, i_sample_count, pi_selection, 8 );
  616. }
  617. bool aout_CheckChannelExtraction( int *pi_selection,
  618.                                   uint32_t *pi_layout, int *pi_channels,
  619.                                   const uint32_t pi_order_dst[AOUT_CHAN_MAX],
  620.                                   const uint32_t *pi_order_src, int i_channels )
  621. {
  622.     const uint32_t pi_order_dual_mono[] = { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT };
  623.     uint32_t i_layout = 0;
  624.     int i_out = 0;
  625.     int pi_index[AOUT_CHAN_MAX];
  626.     /* */
  627.     if( !pi_order_dst )
  628.         pi_order_dst = pi_vlc_chan_order_wg4;
  629.     /* Detect special dual mono case */
  630.     if( i_channels == 2 &&
  631.         pi_order_src[0] == AOUT_CHAN_CENTER && pi_order_src[1] == AOUT_CHAN_CENTER )
  632.     {
  633.         i_layout |= AOUT_CHAN_DUALMONO;
  634.         pi_order_src = pi_order_dual_mono;
  635.     }
  636.     /* */
  637.     for( int i = 0; i < i_channels; i++ )
  638.     {
  639.         /* Ignore unknown or duplicated channels or not present in output */
  640.         if( !pi_order_src[i] || (i_layout & pi_order_src[i]) )
  641.             continue;
  642.         for( int j = 0; j < AOUT_CHAN_MAX; j++ )
  643.         {
  644.             if( pi_order_dst[j] == pi_order_src[i] )
  645.             {
  646.                 assert( i_out < AOUT_CHAN_MAX );
  647.                 pi_index[i_out++] = i;
  648.                 i_layout |= pi_order_src[i];
  649.                 break;
  650.             }
  651.         }
  652.     }
  653.     /* */
  654.     for( int i = 0, j = 0; i < AOUT_CHAN_MAX; i++ )
  655.     {
  656.         for( int k = 0; k < i_out; k++ )
  657.         {
  658.             if( pi_order_dst[i] == pi_order_src[pi_index[k]] )
  659.             {
  660.                 pi_selection[j++] = pi_index[k];
  661.                 break;
  662.             }
  663.         }
  664.     }
  665.     *pi_layout = i_layout;
  666.     *pi_channels = i_out;
  667.     for( int i = 0; i < i_out; i++ )
  668.     {
  669.         if( pi_selection[i] != i )
  670.             return true;
  671.     }
  672.     return i_out == i_channels;
  673. }