Changeset cbca7229daf9e6a12a3e7e10bf34548da72502fb

Show
Ignore:
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
  • src/libvlc-module.c

    re3272bb rcbca722  
    996996     "This option minimizes the number of threads needed to run VLC.") 
    997997 
    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.") 
    1000999#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_( \ 
    10011006     "This option is useful if you want to lower the latency when " \ 
    10021007     "reading a stream") 
     
    18251830    add_bool( "use-stream-immediate", false, NULL, 
    18261831               USE_STREAM_IMMEDIATE, USE_STREAM_IMMEDIATE_LONGTEXT, false ); 
     1832 
    18271833    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 ); 
    18291835 
    18301836#if !defined(__APPLE__) && !defined(SYS_BEOS) && defined(LIBVLC_USE_PTHREAD)