mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
Added missing parameter for output_spdif
This commit is contained in:
parent
e9835e9530
commit
964ce9d768
1 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@
|
|||
void
|
||||
init_spdif(void);
|
||||
int
|
||||
output_spdif(uint_8 *data_start, uint_8 *data_end);
|
||||
output_spdif(uint_8 *data_start, uint_8 *data_end, int quiet);
|
||||
|
||||
static int quiet = 0;
|
||||
|
||||
|
|
@ -206,7 +206,7 @@ int main(int argc,char *argv[])
|
|||
signal(SIGTERM, ac3dec_signal_handler);
|
||||
signal(SIGABRT, ac3dec_signal_handler);
|
||||
while (fill_buffer(&start, &end) > 0)
|
||||
if (output_spdif(start, end) < 0)
|
||||
if (output_spdif(start, end, quiet) < 0)
|
||||
break;
|
||||
}
|
||||
output_close();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue