Changeset 384c053ced1826ca1a8800b46c944108f25d29e8
- Timestamp:
- 12/03/08 02:29:30
(9 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1205285370 -0700
- git-parent:
[fe79260ae8261e9ec68084820b53d97567b07791]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1205284950 -0700
- Message:
Kill a warning in mingww32
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re6ab052 |
r384c053 |
|
| 44 | 44 | #define MUX_LONGTEXT N_( \ |
|---|
| 45 | 45 | "Muxer to use for the stream." ) |
|---|
| 46 | | #define DST_TEXT N_("Output destination") |
|---|
| 47 | | #define DST_LONGTEXT N_( \ |
|---|
| | 46 | #define DEST_TEXT N_("Output destination") |
|---|
| | 47 | #define DEST_LONGTEXT N_( \ |
|---|
| 48 | 48 | "Destination (URL) to use for the stream." ) |
|---|
| 49 | 49 | #define NAME_TEXT N_("Session name") |
|---|
| … | … | |
| 97 | 97 | add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT, |
|---|
| 98 | 98 | MUX_LONGTEXT, VLC_FALSE ); |
|---|
| 99 | | add_string( SOUT_CFG_PREFIX "dst", "", NULL, DST_TEXT, |
|---|
| 100 | | DST_LONGTEXT, VLC_FALSE ); |
|---|
| | 99 | add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT, |
|---|
| | 100 | DEST_LONGTEXT, VLC_FALSE ); |
|---|
| 101 | 101 | change_unsafe(); |
|---|
| 102 | 102 | |
|---|