Changeset 78fe0c6b9153f99743f9e66de1f0b4519ee69520

Show
Ignore:
Timestamp:
04/02/07 23:03:58 (1 year ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1175547838 +0000
git-parent:

[602d3bac845de6eb84a091ce30979b6886836b52]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1175547838 +0000
Message:

mosaic.c: If we're not using bluescreen stuff (which needs per pixel alpha values), then use I420 instead of YUVA when resizing the images. (see previous commit for explanation.)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_filter/mosaic.c

    rf7c6d4e r78fe0c6  
    616616            fmt_in.i_width = p_es->p_picture->format.i_width; 
    617617 
    618             fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A'); 
     618            if( p_sys->b_bs ) 
     619                fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A'); 
     620            else 
     621                fmt_out.i_chroma = VLC_FOURCC('I','4','2','0'); 
    619622            fmt_out.i_width = col_inner_width; 
    620623            fmt_out.i_height = row_inner_height;