Changeset 99c7892b3746862456ec379b9157f03833d9603c
- Timestamp:
- 05/13/08 21:48:01
(2 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1210708081 -0700
- git-parent:
[719151d261197f0a865d0afec5f1d273a884f648]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1210708081 -0700
- Message:
Put psb in NEWS, interface and options.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rb474765 |
r99c7892 |
|
| 109 | 109 | * MPL2 subtitles support |
|---|
| 110 | 110 | * Rewrite of ASS/SSA scripts and subtitles support. |
|---|
| | 111 | * PowerDivx (.psb) Subtitles support |
|---|
| 111 | 112 | |
|---|
| 112 | 113 | Encoders: |
|---|
| rb474765 |
r99c7892 |
|
| 204 | 204 | |
|---|
| 205 | 205 | #define EXTENSIONS_SUBTITLE "*.cdg;*.idx;*.srt;*.sub;*.utf;*.ass;*.ssa;*.aqt;" \ |
|---|
| 206 | | "*.jss" |
|---|
| | 206 | "*.jss;*.psb" |
|---|
| 207 | 207 | |
|---|
| 208 | 208 | /** \defgroup vlc_interaction Interaction |
|---|
| r719151d |
r99c7892 |
|
| 60 | 60 | "\"subrip\", \"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" " \ |
|---|
| 61 | 61 | "\"sami\", \"dvdsubtitle\", \"mpl2\", \"aqt\", \"pjs\" "\ |
|---|
| 62 | | "\"mpsub\" \"jacosub\" and \"auto\" (meaning autodetection, this " \ |
|---|
| | 62 | "\"mpsub\" \"jacosub\" \"psb\" and \"auto\" (meaning autodetection, this " \ |
|---|
| 63 | 63 | "should always work).") |
|---|
| 64 | 64 | static const char *ppsz_sub_type[] = |
|---|
| … | … | |
| 66 | 66 | "auto", "microdvd", "subrip", "subviewer", "ssa1", |
|---|
| 67 | 67 | "ssa2-4", "ass", "vplayer", "sami", "dvdsubtitle", "mpl2", |
|---|
| 68 | | "aqt", "pjs", "mpsub", "jacosub" |
|---|
| | 68 | "aqt", "pjs", "mpsub", "jacosub", "psb" |
|---|
| 69 | 69 | }; |
|---|
| 70 | 70 | |
|---|
| … | … | |
| 370 | 370 | p_sys->i_type = SUB_TYPE_PJS; |
|---|
| 371 | 371 | } |
|---|
| 372 | | else if( sscanf( s, "{%d:%d:%d}", &i_dummy, &i_dummy, &i_dummy ) == 3 ) |
|---|
| | 372 | else if( sscanf( s, "{%d:%d:%d}", |
|---|
| | 373 | &i_dummy, &i_dummy, &i_dummy ) == 3 ) |
|---|
| 373 | 374 | { |
|---|
| 374 | 375 | p_sys->i_type = SUB_TYPE_PSB; |
|---|