common.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:20k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * common.c : audio output management of common data structures
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: common.c 8860 2004-09-30 16:46:37Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                            /* calloc(), malloc(), free() */
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include "audio_output.h"
  30. #include "aout_internal.h"
  31. /*
  32.  * Instances management (internal and external)
  33.  */
  34. /*****************************************************************************
  35.  * aout_New: initialize aout structure
  36.  *****************************************************************************/
  37. aout_instance_t * __aout_New( vlc_object_t * p_parent )
  38. {
  39.     aout_instance_t * p_aout;
  40.     vlc_value_t val;
  41.     /* Allocate descriptor. */
  42.     p_aout = vlc_object_create( p_parent, VLC_OBJECT_AOUT );
  43.     if( p_aout == NULL )
  44.     {
  45.         return NULL;
  46.     }
  47.     /* Initialize members. */
  48.     vlc_mutex_init( p_parent, &p_aout->input_fifos_lock );
  49.     vlc_mutex_init( p_parent, &p_aout->mixer_lock );
  50.     vlc_mutex_init( p_parent, &p_aout->output_fifo_lock );
  51.     p_aout->i_nb_inputs = 0;
  52.     p_aout->mixer.f_multiplier = 1.0;
  53.     p_aout->mixer.b_error = 1;
  54.     p_aout->output.b_error = 1;
  55.     p_aout->output.b_starving = 1;
  56.     var_Create( p_aout, "intf-change", VLC_VAR_BOOL );
  57.     val.b_bool = VLC_TRUE;
  58.     var_Set( p_aout, "intf-change", val );
  59.     return p_aout;
  60. }
  61. /*****************************************************************************
  62.  * aout_Delete: destroy aout structure
  63.  *****************************************************************************/
  64. void aout_Delete( aout_instance_t * p_aout )
  65. {
  66.     var_Destroy( p_aout, "intf-change" );
  67.     vlc_mutex_destroy( &p_aout->input_fifos_lock );
  68.     vlc_mutex_destroy( &p_aout->mixer_lock );
  69.     vlc_mutex_destroy( &p_aout->output_fifo_lock );
  70.     /* Free structure. */
  71.     vlc_object_destroy( p_aout );
  72. }
  73. /*
  74.  * Formats management (internal and external)
  75.  */
  76. /*****************************************************************************
  77.  * aout_FormatNbChannels : return the number of channels
  78.  *****************************************************************************/
  79. unsigned int aout_FormatNbChannels( const audio_sample_format_t * p_format )
  80. {
  81.     static const uint32_t pi_channels[] =
  82.         { AOUT_CHAN_CENTER, AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  83.           AOUT_CHAN_REARCENTER, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  84.           AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, AOUT_CHAN_LFE };
  85.     unsigned int i_nb = 0, i;
  86.     for ( i = 0; i < sizeof(pi_channels)/sizeof(uint32_t); i++ )
  87.     {
  88.         if ( p_format->i_physical_channels & pi_channels[i] ) i_nb++;
  89.     }
  90.     return i_nb;
  91. }
  92. /*****************************************************************************
  93.  * aout_FormatPrepare : compute the number of bytes per frame & frame length
  94.  *****************************************************************************/
  95. void aout_FormatPrepare( audio_sample_format_t * p_format )
  96. {
  97.     int i_result;
  98.     switch ( p_format->i_format )
  99.     {
  100.     case VLC_FOURCC('u','8',' ',' '):
  101.     case VLC_FOURCC('s','8',' ',' '):
  102.         i_result = 1;
  103.         break;
  104.     case VLC_FOURCC('u','1','6','l'):
  105.     case VLC_FOURCC('s','1','6','l'):
  106.     case VLC_FOURCC('u','1','6','b'):
  107.     case VLC_FOURCC('s','1','6','b'):
  108.         i_result = 2;
  109.         break;
  110.     case VLC_FOURCC('f','l','3','2'):
  111.     case VLC_FOURCC('f','i','3','2'):
  112.         i_result = 4;
  113.         break;
  114.     case VLC_FOURCC('s','p','d','i'):
  115.     case VLC_FOURCC('a','5','2',' '):
  116.     case VLC_FOURCC('d','t','s',' '):
  117.     case VLC_FOURCC('m','p','g','a'):
  118.     case VLC_FOURCC('m','p','g','3'):
  119.     default:
  120.         /* For these formats the caller has to indicate the parameters
  121.          * by hand. */
  122.         return;
  123.     }
  124.     p_format->i_bytes_per_frame = i_result * aout_FormatNbChannels( p_format );
  125.     p_format->i_frame_length = 1;
  126. }
  127. /*****************************************************************************
  128.  * aout_FormatPrintChannels : print a channel in a human-readable form
  129.  *****************************************************************************/
  130. const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format )
  131. {
  132.     switch ( p_format->i_physical_channels & AOUT_CHAN_PHYSMASK )
  133.     {
  134.     case AOUT_CHAN_CENTER:
  135.         if ( (p_format->i_original_channels & AOUT_CHAN_CENTER)
  136.               || (p_format->i_original_channels
  137.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  138.             return "Mono";
  139.         else if ( p_format->i_original_channels & AOUT_CHAN_LEFT )
  140.             return "Left";
  141.         return "Right";
  142.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
  143.         if ( p_format->i_original_channels & AOUT_CHAN_REVERSESTEREO )
  144.         {
  145.             if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  146.                 return "Dolby/Reverse";
  147.             return "Stereo/Reverse";
  148.         }
  149.         else
  150.         {
  151.             if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  152.                 return "Dolby";
  153.             else if ( p_format->i_original_channels & AOUT_CHAN_DUALMONO )
  154.                 return "Dual-mono";
  155.             else if ( p_format->i_original_channels == AOUT_CHAN_CENTER )
  156.                 return "Stereo/Mono";
  157.             else if ( !(p_format->i_original_channels & AOUT_CHAN_RIGHT) )
  158.                 return "Stereo/Left";
  159.             else if ( !(p_format->i_original_channels & AOUT_CHAN_LEFT) )
  160.                 return "Stereo/Right";
  161.             return "Stereo";
  162.         }
  163.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
  164.         return "3F";
  165.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
  166.         return "2F1R";
  167.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  168.           | AOUT_CHAN_REARCENTER:
  169.         return "3F1R";
  170.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  171.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  172.         return "2F2R";
  173.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  174.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  175.         return "3F2R";
  176.     case AOUT_CHAN_CENTER | AOUT_CHAN_LFE:
  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/LFE";
  181.         else if ( p_format->i_original_channels & AOUT_CHAN_LEFT )
  182.             return "Left/LFE";
  183.         return "Right/LFE";
  184.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_LFE:
  185.         if ( p_format->i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  186.             return "Dolby/LFE";
  187.         else if ( p_format->i_original_channels & AOUT_CHAN_DUALMONO )
  188.             return "Dual-mono/LFE";
  189.         else if ( p_format->i_original_channels == AOUT_CHAN_CENTER )
  190.             return "Mono/LFE";
  191.         else if ( !(p_format->i_original_channels & AOUT_CHAN_RIGHT) )
  192.             return "Stereo/Left/LFE";
  193.         else if ( !(p_format->i_original_channels & AOUT_CHAN_LEFT) )
  194.             return "Stereo/Right/LFE";
  195.          return "Stereo/LFE";
  196.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER | AOUT_CHAN_LFE:
  197.         return "3F/LFE";
  198.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER
  199.           | AOUT_CHAN_LFE:
  200.         return "2F1R/LFE";
  201.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  202.           | AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE:
  203.         return "3F1R/LFE";
  204.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  205.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE:
  206.         return "2F2R/LFE";
  207.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  208.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE:
  209.         return "3F2R/LFE";
  210.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  211.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
  212.           | AOUT_CHAN_MIDDLERIGHT:
  213.         return "3F2M2R";
  214.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  215.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT
  216.           | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE:
  217.         return "3F2M2R/LFE";
  218.     }
  219.     return "ERROR";
  220. }
  221. /*****************************************************************************
  222.  * aout_FormatPrint : print a format in a human-readable form
  223.  *****************************************************************************/
  224. void aout_FormatPrint( aout_instance_t * p_aout, const char * psz_text,
  225.                        const audio_sample_format_t * p_format )
  226. {
  227.     msg_Dbg( p_aout, "%s '%4.4s' %d Hz %s frame=%d samples/%d bytes", psz_text,
  228.              (char *)&p_format->i_format, p_format->i_rate,
  229.              aout_FormatPrintChannels( p_format ),
  230.              p_format->i_frame_length, p_format->i_bytes_per_frame );
  231. }
  232. /*****************************************************************************
  233.  * aout_FormatsPrint : print two formats in a human-readable form
  234.  *****************************************************************************/
  235. void aout_FormatsPrint( aout_instance_t * p_aout, const char * psz_text,
  236.                         const audio_sample_format_t * p_format1,
  237.                         const audio_sample_format_t * p_format2 )
  238. {
  239.     msg_Dbg( p_aout, "%s '%4.4s'->'%4.4s' %d Hz->%d Hz %s->%s",
  240.              psz_text,
  241.              (char *)&p_format1->i_format, (char *)&p_format2->i_format,
  242.              p_format1->i_rate, p_format2->i_rate,
  243.              aout_FormatPrintChannels( p_format1 ),
  244.              aout_FormatPrintChannels( p_format2 ) );
  245. }
  246. /*
  247.  * FIFO management (internal) - please understand that solving race conditions
  248.  * is _your_ job, ie. in the audio output you should own the mixer lock
  249.  * before calling any of these functions.
  250.  */
  251. /*****************************************************************************
  252.  * aout_FifoInit : initialize the members of a FIFO
  253.  *****************************************************************************/
  254. void aout_FifoInit( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  255.                     uint32_t i_rate )
  256. {
  257.     p_fifo->p_first = NULL;
  258.     p_fifo->pp_last = &p_fifo->p_first;
  259.     aout_DateInit( &p_fifo->end_date, i_rate );
  260. }
  261. /*****************************************************************************
  262.  * aout_FifoPush : push a packet into the FIFO
  263.  *****************************************************************************/
  264. void aout_FifoPush( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  265.                     aout_buffer_t * p_buffer )
  266. {
  267.     *p_fifo->pp_last = p_buffer;
  268.     p_fifo->pp_last = &p_buffer->p_next;
  269.     *p_fifo->pp_last = NULL;
  270.     /* Enforce the continuity of the stream. */
  271.     if ( aout_DateGet( &p_fifo->end_date ) )
  272.     {
  273.         p_buffer->start_date = aout_DateGet( &p_fifo->end_date );
  274.         p_buffer->end_date = aout_DateIncrement( &p_fifo->end_date,
  275.                                                  p_buffer->i_nb_samples );
  276.     }
  277.     else
  278.     {
  279.         aout_DateSet( &p_fifo->end_date, p_buffer->end_date );
  280.     }
  281. }
  282. /*****************************************************************************
  283.  * aout_FifoSet : set end_date and trash all buffers (because they aren't
  284.  * properly dated)
  285.  *****************************************************************************/
  286. void aout_FifoSet( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  287.                    mtime_t date )
  288. {
  289.     aout_buffer_t * p_buffer;
  290.     aout_DateSet( &p_fifo->end_date, date );
  291.     p_buffer = p_fifo->p_first;
  292.     while ( p_buffer != NULL )
  293.     {
  294.         aout_buffer_t * p_next = p_buffer->p_next;
  295.         aout_BufferFree( p_buffer );
  296.         p_buffer = p_next;
  297.     }
  298.     p_fifo->p_first = NULL;
  299.     p_fifo->pp_last = &p_fifo->p_first;
  300. }
  301. /*****************************************************************************
  302.  * aout_FifoMoveDates : Move forwards or backwards all dates in the FIFO
  303.  *****************************************************************************/
  304. void aout_FifoMoveDates( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
  305.                          mtime_t difference )
  306. {
  307.     aout_buffer_t * p_buffer;
  308.     aout_DateMove( &p_fifo->end_date, difference );
  309.     p_buffer = p_fifo->p_first;
  310.     while ( p_buffer != NULL )
  311.     {
  312.         p_buffer->start_date += difference;
  313.         p_buffer->end_date += difference;
  314.         p_buffer = p_buffer->p_next;
  315.     }
  316. }
  317. /*****************************************************************************
  318.  * aout_FifoNextStart : return the current end_date
  319.  *****************************************************************************/
  320. mtime_t aout_FifoNextStart( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  321. {
  322.     return aout_DateGet( &p_fifo->end_date );
  323. }
  324. /*****************************************************************************
  325.  * aout_FifoFirstDate : return the playing date of the first buffer in the
  326.  * FIFO
  327.  *****************************************************************************/
  328. mtime_t aout_FifoFirstDate( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  329. {
  330.     return p_fifo->p_first ?  p_fifo->p_first->start_date : 0;
  331. }
  332. /*****************************************************************************
  333.  * aout_FifoPop : get the next buffer out of the FIFO
  334.  *****************************************************************************/
  335. aout_buffer_t * aout_FifoPop( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  336. {
  337.     aout_buffer_t * p_buffer;
  338.     p_buffer = p_fifo->p_first;
  339.     if ( p_buffer == NULL ) return NULL;
  340.     p_fifo->p_first = p_buffer->p_next;
  341.     if ( p_fifo->p_first == NULL )
  342.     {
  343.         p_fifo->pp_last = &p_fifo->p_first;
  344.     }
  345.     return p_buffer;
  346. }
  347. /*****************************************************************************
  348.  * aout_FifoDestroy : destroy a FIFO and its buffers
  349.  *****************************************************************************/
  350. void aout_FifoDestroy( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
  351. {
  352.     aout_buffer_t * p_buffer;
  353.     p_buffer = p_fifo->p_first;
  354.     while ( p_buffer != NULL )
  355.     {
  356.         aout_buffer_t * p_next = p_buffer->p_next;
  357.         aout_BufferFree( p_buffer );
  358.         p_buffer = p_next;
  359.     }
  360.     p_fifo->p_first = NULL;
  361.     p_fifo->pp_last = &p_fifo->p_first;
  362. }
  363. /*
  364.  * Date management (internal and external)
  365.  */
  366. /*****************************************************************************
  367.  * aout_DateInit : set the divider of an audio_date_t
  368.  *****************************************************************************/
  369. void aout_DateInit( audio_date_t * p_date, uint32_t i_divider )
  370. {
  371.     p_date->date = 0;
  372.     p_date->i_divider = i_divider;
  373.     p_date->i_remainder = 0;
  374. }
  375. /*****************************************************************************
  376.  * aout_DateSet : set the date of an audio_date_t
  377.  *****************************************************************************/
  378. void aout_DateSet( audio_date_t * p_date, mtime_t new_date )
  379. {
  380.     p_date->date = new_date;
  381.     p_date->i_remainder = 0;
  382. }
  383. /*****************************************************************************
  384.  * aout_DateMove : move forwards or backwards the date of an audio_date_t
  385.  *****************************************************************************/
  386. void aout_DateMove( audio_date_t * p_date, mtime_t difference )
  387. {
  388.     p_date->date += difference;
  389. }
  390. /*****************************************************************************
  391.  * aout_DateGet : get the date of an audio_date_t
  392.  *****************************************************************************/
  393. mtime_t aout_DateGet( const audio_date_t * p_date )
  394. {
  395.     return p_date->date;
  396. }
  397. /*****************************************************************************
  398.  * aout_DateIncrement : increment the date and return the result, taking
  399.  * into account rounding errors
  400.  *****************************************************************************/
  401. mtime_t aout_DateIncrement( audio_date_t * p_date, uint32_t i_nb_samples )
  402. {
  403.     mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000;
  404.     p_date->date += i_dividend / p_date->i_divider;
  405.     p_date->i_remainder += (int)(i_dividend % p_date->i_divider);
  406.     if ( p_date->i_remainder >= p_date->i_divider )
  407.     {
  408.         /* This is Bresenham algorithm. */
  409.         p_date->date++;
  410.         p_date->i_remainder -= p_date->i_divider;
  411.     }
  412.     return p_date->date;
  413. }
  414. /*****************************************************************************
  415.  * aout_CheckChannelReorder : Check if we need to do some channel re-ordering
  416.  *****************************************************************************/
  417. int aout_CheckChannelReorder( const uint32_t *pi_chan_order_in,
  418.                               const uint32_t *pi_chan_order_out,
  419.                               uint32_t i_channel_mask,
  420.                               int i_channels, int *pi_chan_table )
  421. {
  422.     vlc_bool_t b_chan_reorder = VLC_FALSE;
  423.     int i, j, k, l;
  424.     if( i_channels > AOUT_CHAN_MAX ) return VLC_FALSE;
  425.     for( i = 0, j = 0; pi_chan_order_in[i]; i++ )
  426.     {
  427.         if( !(i_channel_mask & pi_chan_order_in[i]) ) continue;
  428.         for( k = 0, l = 0; pi_chan_order_in[i] != pi_chan_order_out[k]; k++ )
  429.         {
  430.             if( i_channel_mask & pi_chan_order_out[k] ) l++;
  431.         }
  432.         pi_chan_table[j++] = l;
  433.     }
  434.     for( i = 0; i < i_channels; i++ )
  435.     {
  436.         if( pi_chan_table[i] != i ) b_chan_reorder = VLC_TRUE;
  437.     }
  438.     return b_chan_reorder;
  439. }
  440. /*****************************************************************************
  441.  * aout_ChannelReorder :
  442.  *****************************************************************************/
  443. void aout_ChannelReorder( uint8_t *p_buf, int i_buffer,
  444.                           int i_channels, const int *pi_chan_table,
  445.                           int i_bits_per_sample )
  446. {
  447.     uint8_t p_tmp[AOUT_CHAN_MAX * 4];
  448.     int i, j;
  449.     if( i_bits_per_sample == 8 )
  450.     {
  451.         for( i = 0; i < i_buffer / i_channels; i++ )
  452.         {
  453.             for( j = 0; j < i_channels; j++ )
  454.             {
  455.                 p_tmp[pi_chan_table[j]] = p_buf[j];
  456.             }
  457.             memcpy( p_buf, p_tmp, i_channels );
  458.             p_buf += i_channels;
  459.         }
  460.     }
  461.     else if( i_bits_per_sample == 16 )
  462.     {
  463.         for( i = 0; i < i_buffer / i_channels / 2; i++ )
  464.         {
  465.             for( j = 0; j < i_channels; j++ )
  466.             {
  467.                 p_tmp[2 * pi_chan_table[j]]     = p_buf[2 * j];
  468.                 p_tmp[2 * pi_chan_table[j] + 1] = p_buf[2 * j + 1];
  469.             }
  470.             memcpy( p_buf, p_tmp, 2 * i_channels );
  471.             p_buf += 2 * i_channels;
  472.         }
  473.     }
  474.     else if( i_bits_per_sample == 24 )
  475.     {
  476.         for( i = 0; i < i_buffer / i_channels / 3; i++ )
  477.         {
  478.             for( j = 0; j < i_channels; j++ )
  479.             {
  480.                 p_tmp[3 * pi_chan_table[j]]     = p_buf[3 * j];
  481.                 p_tmp[3 * pi_chan_table[j] + 1] = p_buf[3 * j + 1];
  482.                 p_tmp[3 * pi_chan_table[j] + 2] = p_buf[3 * j + 2];
  483.             }
  484.             memcpy( p_buf, p_tmp, 3 * i_channels );
  485.             p_buf += 3 * i_channels;
  486.         }
  487.     }
  488.     else if( i_bits_per_sample == 32 )
  489.     {
  490.         for( i = 0; i < i_buffer / i_channels / 4; i++ )
  491.         {
  492.             for( j = 0; j < i_channels; j++ )
  493.             {
  494.                 p_tmp[4 * pi_chan_table[j]]     = p_buf[4 * j];
  495.                 p_tmp[4 * pi_chan_table[j] + 1] = p_buf[4 * j + 1];
  496.                 p_tmp[4 * pi_chan_table[j] + 2] = p_buf[4 * j + 2];
  497.                 p_tmp[4 * pi_chan_table[j] + 3] = p_buf[4 * j + 3];
  498.             }
  499.             memcpy( p_buf, p_tmp, 4 * i_channels );
  500.             p_buf += 4 * i_channels;
  501.         }
  502.     }
  503. }