Changeset 2e448ef8ddd59d81aa28e207bda0bd2b4fcdf1b7
- 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
| rfec0d40 |
r2e448ef |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * 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 $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 65 | 65 | /* This is a bit kludgy - do not ask for a new buffer, since the one |
|---|
| 66 | 66 | * 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; |
|---|
| 68 | 68 | |
|---|
| 69 | 69 | return 0; |
|---|
| … | … | |
| 75 | 75 | static void DoWork( aout_instance_t * p_aout, aout_buffer_t * p_buffer ) |
|---|
| 76 | 76 | { |
|---|
| | 77 | aout_input_t * p_input = p_aout->pp_inputs[0]; |
|---|
| | 78 | aout_FifoPop( p_aout, &p_input->fifo ); |
|---|
| 77 | 79 | } |
|---|
| 78 | 80 | |
|---|