From: Jean-Baptiste Kempf Date: Mon, 19 May 2008 22:49:45 +0000 (-0700) Subject: Add options for preferences. X-Git-Tag: 0.9.0-test0~873 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=cffe2dbbf5082a82944aa2ca7aecfe8124780dd5;p=vlc Add options for preferences. --- diff --git a/modules/demux/subtitle.c b/modules/demux/subtitle.c index 21ea8fa014..fa113a2f02 100644 --- a/modules/demux/subtitle.c +++ b/modules/demux/subtitle.c @@ -59,13 +59,14 @@ static void Close( vlc_object_t *p_this ); N_("Force the subtiles format. Valid values are : \"microdvd\", " \ "\"subrip\", \"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" " \ "\"sami\", \"dvdsubtitle\", \"mpl2\", \"aqt\", \"pjs\" "\ - "\"mpsub\" \"jacosub\" \"psb\" and \"auto\" (meaning autodetection, this " \ - "should always work).") + "\"mpsub\" \"jacosub\" \"psb\" \"realtext\" \"dks\" and \"auto\" " \ + "(meaning autodetection, this should always work).") + static const char *ppsz_sub_type[] = { "auto", "microdvd", "subrip", "subviewer", "ssa1", "ssa2-4", "ass", "vplayer", "sami", "dvdsubtitle", "mpl2", - "aqt", "pjs", "mpsub", "jacosub", "psb" + "aqt", "pjs", "mpsub", "jacosub", "psb", "rt", "dks" }; vlc_module_begin();