Changeset 69784399879bef522d099d5cf71149aba7d9fc9a
- Timestamp:
- 04/07/03 01:44:53
(5 years ago)
- Author:
- Christophe Massiot <massiot@videolan.org>
- git-committer:
- Christophe Massiot <massiot@videolan.org> 1049672693 +0000
- git-parent:
[11eecc2e6f64e5974bfe75c5f387ea16ccb67277]
- git-author:
- Christophe Massiot <massiot@videolan.org> 1049672693 +0000
- Message:
* Renamed the "headphone" option to "headphone-opt" to avoid error
messages "option headphone does not exist". I'm not clever enough to find
out why it doesn't work when it's named "headphone".
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r75426e2 |
r6978439 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2002 VideoLAN |
|---|
| 5 | | * $Id: input.c,v 1.33 2003/03/04 03:27:40 gbazin Exp $ |
|---|
| | 5 | * $Id: input.c,v 1.34 2003/04/06 23:44:53 massiot Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 61 | 61 | sizeof(audio_sample_format_t) ); |
|---|
| 62 | 62 | headphone_intermediate_format.i_rate = p_input->input.i_rate; |
|---|
| 63 | | if ( config_GetInt( p_aout , "headphone" ) ) |
|---|
| | 63 | if ( config_GetInt( p_aout , "headphone-opt" ) ) |
|---|
| 64 | 64 | { |
|---|
| 65 | 65 | /* Do we use heaphone filter ? */ |
|---|
| re8325b3 |
r6978439 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1998-2002 VideoLAN |
|---|
| 5 | | * $Id: libvlc.h,v 1.54 2003/04/06 14:12:46 massiot Exp $ |
|---|
| | 5 | * $Id: libvlc.h,v 1.55 2003/04/06 23:44:53 massiot Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Vincent Seguin <seguin@via.ecp.fr> |
|---|
| … | … | |
| 472 | 472 | add_integer( "desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT, VLC_TRUE ); |
|---|
| 473 | 473 | add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_FALSE ); |
|---|
| 474 | | add_bool( "headphone", 0, NULL, HEADPHONE_TEXT, HEADPHONE_LONGTEXT, VLC_FALSE ); |
|---|
| | 474 | add_bool( "headphone-opt", 0, NULL, HEADPHONE_TEXT, HEADPHONE_LONGTEXT, VLC_FALSE ); |
|---|
| 475 | 475 | |
|---|
| 476 | 476 | /* Video options */ |
|---|