Changeset b474765b049da00ea24aceb9f49eaeefb22da7a3
- Timestamp:
- 05/12/08 17:03:20
(2 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1210604600 -0700
- git-parent:
[6f9ce7c339bad3306598e2ec77391c6ab27ef29f]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1210604600 -0700
- Message:
Update the NEWS and the dialogs for the subtitles support.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r646ffee |
rb474765 |
|
| 85 | 85 | Decoders: |
|---|
| 86 | 86 | * VP60/VP61/VP6F/VP62 support |
|---|
| 87 | | * MKV USF subtitles support |
|---|
| 88 | | * HTML-based subtitles support |
|---|
| 89 | 87 | * Flash Screen Video support |
|---|
| 90 | 88 | * CamStudio Screen Video support |
|---|
| … | … | |
| 101 | 99 | * APE (Monkey audio) support |
|---|
| 102 | 100 | * VBI & EBU (Teletext) support |
|---|
| | 101 | |
|---|
| | 102 | Subtitles: |
|---|
| 103 | 103 | * Ogg/Kate subtitles support |
|---|
| | 104 | * AQTitle subtitles support |
|---|
| | 105 | * MKV USF subtitles support |
|---|
| | 106 | * HTML-based subtitles support |
|---|
| | 107 | * MPSub subtitles support |
|---|
| | 108 | * JacoSub subtitles basic support |
|---|
| | 109 | * MPL2 subtitles support |
|---|
| | 110 | * Rewrite of ASS/SSA scripts and subtitles support. |
|---|
| 104 | 111 | |
|---|
| 105 | 112 | Encoders: |
|---|
| r449fd28 |
rb474765 |
|
| 155 | 155 | /* Interface dialog ids for dialog providers */ |
|---|
| 156 | 156 | typedef enum vlc_dialog { |
|---|
| 157 | | INTF_DIALOG_FILE_SIMPLE = 1, |
|---|
| 158 | | INTF_DIALOG_FILE, |
|---|
| 159 | | INTF_DIALOG_DISC, |
|---|
| 160 | | INTF_DIALOG_NET, |
|---|
| 161 | | INTF_DIALOG_CAPTURE, |
|---|
| 162 | | INTF_DIALOG_SAT, |
|---|
| 163 | | INTF_DIALOG_DIRECTORY, |
|---|
| 164 | | |
|---|
| 165 | | INTF_DIALOG_STREAMWIZARD, |
|---|
| 166 | | INTF_DIALOG_WIZARD, |
|---|
| 167 | | |
|---|
| 168 | | INTF_DIALOG_PLAYLIST, |
|---|
| 169 | | INTF_DIALOG_MESSAGES, |
|---|
| 170 | | INTF_DIALOG_FILEINFO, |
|---|
| 171 | | INTF_DIALOG_PREFS, |
|---|
| 172 | | INTF_DIALOG_BOOKMARKS, |
|---|
| 173 | | INTF_DIALOG_EXTENDED, |
|---|
| 174 | | |
|---|
| 175 | | INTF_DIALOG_POPUPMENU = 20, |
|---|
| 176 | | INTF_DIALOG_AUDIOPOPUPMENU, |
|---|
| 177 | | INTF_DIALOG_VIDEOPOPUPMENU, |
|---|
| 178 | | INTF_DIALOG_MISCPOPUPMENU, |
|---|
| 179 | | |
|---|
| 180 | | INTF_DIALOG_FILE_GENERIC = 30, |
|---|
| 181 | | INTF_DIALOG_INTERACTION = 50, |
|---|
| 182 | | |
|---|
| 183 | | INTF_DIALOG_UPDATEVLC = 90, |
|---|
| 184 | | INTF_DIALOG_VLM, |
|---|
| 185 | | |
|---|
| 186 | | INTF_DIALOG_EXIT = 99 |
|---|
| | 157 | INTF_DIALOG_FILE_SIMPLE = 1, |
|---|
| | 158 | INTF_DIALOG_FILE, |
|---|
| | 159 | INTF_DIALOG_DISC, |
|---|
| | 160 | INTF_DIALOG_NET, |
|---|
| | 161 | INTF_DIALOG_CAPTURE, |
|---|
| | 162 | INTF_DIALOG_SAT, |
|---|
| | 163 | INTF_DIALOG_DIRECTORY, |
|---|
| | 164 | |
|---|
| | 165 | INTF_DIALOG_STREAMWIZARD, |
|---|
| | 166 | INTF_DIALOG_WIZARD, |
|---|
| | 167 | |
|---|
| | 168 | INTF_DIALOG_PLAYLIST, |
|---|
| | 169 | INTF_DIALOG_MESSAGES, |
|---|
| | 170 | INTF_DIALOG_FILEINFO, |
|---|
| | 171 | INTF_DIALOG_PREFS, |
|---|
| | 172 | INTF_DIALOG_BOOKMARKS, |
|---|
| | 173 | INTF_DIALOG_EXTENDED, |
|---|
| | 174 | |
|---|
| | 175 | INTF_DIALOG_POPUPMENU = 20, |
|---|
| | 176 | INTF_DIALOG_AUDIOPOPUPMENU, |
|---|
| | 177 | INTF_DIALOG_VIDEOPOPUPMENU, |
|---|
| | 178 | INTF_DIALOG_MISCPOPUPMENU, |
|---|
| | 179 | |
|---|
| | 180 | INTF_DIALOG_FILE_GENERIC = 30, |
|---|
| | 181 | INTF_DIALOG_INTERACTION = 50, |
|---|
| | 182 | |
|---|
| | 183 | INTF_DIALOG_UPDATEVLC = 90, |
|---|
| | 184 | INTF_DIALOG_VLM, |
|---|
| | 185 | |
|---|
| | 186 | INTF_DIALOG_EXIT = 99 |
|---|
| 187 | 187 | } vlc_dialog_t; |
|---|
| 188 | 188 | |
|---|
| … | … | |
| 203 | 203 | EXTENSIONS_PLAYLIST |
|---|
| 204 | 204 | |
|---|
| 205 | | #define EXTENSIONS_SUBTITLE "*.cdg;*.idx;*.srt;*.sub;*.utf" |
|---|
| | 205 | #define EXTENSIONS_SUBTITLE "*.cdg;*.idx;*.srt;*.sub;*.utf;*.ass;*.ssa;*.aqt;" \ |
|---|
| | 206 | "*.jss" |
|---|
| 206 | 207 | |
|---|
| 207 | 208 | /** \defgroup vlc_interaction Interaction |
|---|
| … | … | |
| 242 | 243 | //for interaction |
|---|
| 243 | 244 | }; |
|---|
| | 245 | |
|---|
| 244 | 246 | /** |
|---|
| 245 | 247 | * Possible flags . Dialog types |
|---|