Changeset cbca7229daf9e6a12a3e7e10bf34548da72502fb
- Timestamp:
- 05/07/08 18:36:15
(3 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1215275775 +0200
- git-parent:
[9b5889a2e846d4a99ebb0b5b1b72f1ea39da8468]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1215275775 +0200
- Message:
libvlc: Fix --auto-adjust-pts-delay help text.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re3272bb |
rcbca722 |
|
| 996 | 996 | "This option minimizes the number of threads needed to run VLC.") |
|---|
| 997 | 997 | |
|---|
| 998 | | #define USE_STREAM_IMMEDIATE N_("(Experimental) Use the StreamImmediate " \ |
|---|
| 999 | | "method and minimize the caching done at the access level.") |
|---|
| | 998 | #define USE_STREAM_IMMEDIATE N_("(Experimental) Don't do caching at the access level.") |
|---|
| 1000 | 999 | #define USE_STREAM_IMMEDIATE_LONGTEXT N_( \ |
|---|
| | 1000 | "This option is useful if you want to lower the latency when " \ |
|---|
| | 1001 | "reading a stream") |
|---|
| | 1002 | |
|---|
| | 1003 | #define AUTO_ADJUST_PTS_DELAY N_("(Experimental) Auto adjust the caching done "\ |
|---|
| | 1004 | "to minimize latency when reading live stream.") |
|---|
| | 1005 | #define AUTO_ADJUST_PTS_DELAY_LONGTEXT N_( \ |
|---|
| 1001 | 1006 | "This option is useful if you want to lower the latency when " \ |
|---|
| 1002 | 1007 | "reading a stream") |
|---|
| … | … | |
| 1825 | 1830 | add_bool( "use-stream-immediate", false, NULL, |
|---|
| 1826 | 1831 | USE_STREAM_IMMEDIATE, USE_STREAM_IMMEDIATE_LONGTEXT, false ); |
|---|
| | 1832 | |
|---|
| 1827 | 1833 | add_bool( "auto-adjust-pts-delay", false, NULL, |
|---|
| 1828 | | "auto-adjust-pts-delay", "auto-adjust-pts-delay", false ); |
|---|
| | 1834 | AUTO_ADJUST_PTS_DELAY, AUTO_ADJUST_PTS_LONGTEXT, false ); |
|---|
| 1829 | 1835 | |
|---|
| 1830 | 1836 | #if !defined(__APPLE__) && !defined(SYS_BEOS) && defined(LIBVLC_USE_PTHREAD) |
|---|