Changeset 1ea4a619452b34bcd255db59c3c568d9c86476a0
- Timestamp:
- 04/13/08 18:40:47
(5 months ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1208104847 +0200
- git-parent:
[698d753f31a1aa0338a04d369c890163a690621b]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1208098354 +0200
- Message:
Move ppsz_input_state[] to modules/control/rc.c because it is the only user of this variable. This silences a lot of warning messages.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc3dca4e |
r1ea4a61 |
|
| 545 | 545 | }; |
|---|
| 546 | 546 | |
|---|
| 547 | | static const char *ppsz_input_state[] = { N_("Initializing"), N_("Opening"), N_("Buffer"), N_("Play"), N_("Pause"), N_("Stop"), N_("Error") }; |
|---|
| 548 | | |
|---|
| 549 | 547 | /* "rate" default, min/max |
|---|
| 550 | 548 | * A rate below 1000 plays the movie faster, |
|---|
| r821a590 |
r1ea4a61 |
|
| 66 | 66 | #define MAX_LINE_LENGTH 256 |
|---|
| 67 | 67 | #define STATUS_CHANGE "status change: " |
|---|
| | 68 | |
|---|
| | 69 | static const char *ppsz_input_state[] = { N_("Initializing"), N_("Opening"), N_("Buffer"), N_("Play"), N_("Pause"), N_("Stop"), N_("Error") }; |
|---|
| 68 | 70 | |
|---|
| 69 | 71 | /***************************************************************************** |
|---|