Changeset 501eb1fa89ce3bd3a52312e82409313fd99cd94b

Show
Ignore:
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
  • modules/video_chroma/i420_rgb.c

    r031cb39 r501eb1f  
    123123                    break; 
    124124 
    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 ? */ 
    126127                case VLC_FOURCC('R','V','2','4'): 
    127128#endif 
     129 
    128130                case VLC_FOURCC('R','V','3','2'): 
    129131#if defined (MODULE_NAME_IS_i420_rgb_mmx) 
  • modules/video_output/x11/xcommon.c

    r56b5483 r501eb1f  
    385385            p_vout->output.i_chroma = VLC_FOURCC('R','V','1','6'); break; 
    386386        case 24: 
    387             p_vout->output.i_chroma = VLC_FOURCC('R','V','2','4'); break; 
    388387        case 32: 
    389388            p_vout->output.i_chroma = VLC_FOURCC('R','V','3','2'); break;