Changeset 8329bd853e8e85d9cac4894d5ca3186ef92ed7e1
- Timestamp:
- 10/07/05 17:45:02
(3 years ago)
- Author:
- Benjamin Pracht <bigben@videolan.org>
- git-committer:
- Benjamin Pracht <bigben@videolan.org> 1121010302 +0000
- git-parent:
[4ba7bb60af1ccf816bf5dcd61f541dc98481a04b]
- git-author:
- Benjamin Pracht <bigben@videolan.org> 1121010302 +0000
- Message:
Add the "X" deinterlace mode to the list displayed in guis. (We should certainly find a better name, but I cannot see any).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3de41d4 |
r8329bd8 |
|
| 424 | 424 | val.psz_string = "linear"; text.psz_string = _("Linear"); |
|---|
| 425 | 425 | var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text ); |
|---|
| | 426 | val.psz_string = "x"; text.psz_string = "X"; |
|---|
| | 427 | var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text ); |
|---|
| | 428 | |
|---|
| 426 | 429 | if( var_Get( p_vout, "deinterlace-mode", &val ) == VLC_SUCCESS ) |
|---|
| 427 | 430 | { |
|---|