Changeset 501eb1fa89ce3bd3a52312e82409313fd99cd94b
- Timestamp:
- 08/29/04 11:58:07
(4 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1093773487 +0000
- git-parent:
[ffe4c977b3bada09c93a50a17bcb367f1c401e6b]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1093773487 +0000
- Message:
* modules/video_output/x11/xcommon.c: 24 bits screen depth uses 32bits per pixels.
* video_chroma/i420_rgb.c: disable RV24 support (which was assuming 32 bits per pixels).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r031cb39 |
r501eb1f |
|
| 123 | 123 | break; |
|---|
| 124 | 124 | |
|---|
| 125 | | #ifndef WIN32 /* Hmmm, is there only X11 using 32bits per pixel for RV24 ? */ |
|---|
| | 125 | #if 0 |
|---|
| | 126 | /* Hmmm, is there only X11 using 32bits per pixel for RV24 ? */ |
|---|
| 126 | 127 | case VLC_FOURCC('R','V','2','4'): |
|---|
| 127 | 128 | #endif |
|---|
| | 129 | |
|---|
| 128 | 130 | case VLC_FOURCC('R','V','3','2'): |
|---|
| 129 | 131 | #if defined (MODULE_NAME_IS_i420_rgb_mmx) |
|---|
| r56b5483 |
r501eb1f |
|
| 385 | 385 | p_vout->output.i_chroma = VLC_FOURCC('R','V','1','6'); break; |
|---|
| 386 | 386 | case 24: |
|---|
| 387 | | p_vout->output.i_chroma = VLC_FOURCC('R','V','2','4'); break; |
|---|
| 388 | 387 | case 32: |
|---|
| 389 | 388 | p_vout->output.i_chroma = VLC_FOURCC('R','V','3','2'); break; |
|---|