Changeset 2e448ef8ddd59d81aa28e207bda0bd2b4fcdf1b7

Show
Ignore:
Timestamp:
12/08/02 09:40:23 (6 years ago)
Author:
Christophe Massiot <massiot@videolan.org>
git-committer:
Christophe Massiot <massiot@videolan.org> 1029138023 +0000
git-parent:

[0ef062c72149bc5d6c359c4eb7845bf25fcc1b56]

git-author:
Christophe Massiot <massiot@videolan.org> 1029138023 +0000
Message:

Fixed a S/PDIF bug.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/audio_mixer/spdif.c

    rfec0d40 r2e448ef  
    33 ***************************************************************************** 
    44 * Copyright (C) 2002 VideoLAN 
    5  * $Id: spdif.c,v 1.1 2002/08/11 22:36:35 massiot Exp $ 
     5 * $Id: spdif.c,v 1.2 2002/08/12 07:40:23 massiot Exp $ 
    66 * 
    77 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    6565    /* This is a bit kludgy - do not ask for a new buffer, since the one 
    6666     * provided by the first input will be good enough. */ 
    67     p_aout->mixer.output_alloc.i_alloc = AOUT_ALLOC_NONE; 
     67    p_aout->mixer.output_alloc.i_alloc_type = AOUT_ALLOC_NONE; 
    6868 
    6969    return 0; 
     
    7575static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer ) 
    7676{ 
     77    aout_input_t * p_input = p_aout->pp_inputs[0]; 
     78    aout_FifoPop( p_aout, &p_input->fifo ); 
    7779} 
    7880