Changeset 0856d3ae70c252e950b2b9a80ec5e05abc311d8c
- Timestamp:
- 21/10/06 21:30:04
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1161459004 +0000
- git-parent:
[1dfa47c08284d591ecf8747914c5fc2eff19e7da]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1161459004 +0000
- Message:
Attempt to fix dshow build
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf485214 |
r0856d3a |
|
| 71 | 71 | * Module descriptor |
|---|
| 72 | 72 | *****************************************************************************/ |
|---|
| 73 | | static char *ppsz_vdev[] = { "", "none" }; |
|---|
| 74 | | static char *ppsz_vdev_text[] = { N_("Default"), N_("None") }; |
|---|
| 75 | | static char *ppsz_adev[] = { "", "none" }; |
|---|
| 76 | | static char *ppsz_adev_text[] = { N_("Default"), N_("None") }; |
|---|
| | 73 | static const char *ppsz_vdev[] = { "", "none" }; |
|---|
| | 74 | static const char *ppsz_vdev_text[] = { N_("Default"), N_("None") }; |
|---|
| | 75 | static const char *ppsz_adev[] = { "", "none" }; |
|---|
| | 76 | static const char *ppsz_adev_text[] = { N_("Default"), N_("None") }; |
|---|
| 77 | 77 | static int pi_tuner_input[] = { 0, 1, 2 }; |
|---|
| 78 | | static char *ppsz_tuner_input_text[] = |
|---|
| | 78 | static const char *ppsz_tuner_input_text[] = |
|---|
| 79 | 79 | {N_("Default"), N_("Cable"), N_("Antenna")}; |
|---|
| 80 | 80 | static int pi_amtuner_mode[] = { AMTUNER_MODE_DEFAULT, |
|---|