Changeset 7fc0df74caec0814a9f91c5f73566578914081aa

Show
Ignore:
Timestamp:
12/18/02 09:08:30 (6 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1040198910 +0000
git-parent:

[85862082048bf47eae91d89b81d4df0f98fe2921]

git-author:
Gildas Bazin <gbazin@videolan.org> 1040198910 +0000
Message:

* src/video_output/video_output.c: fixed a bug concerning the aspect
ratio in vout_Request().

* INSTALL.win32: small update to the documentation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • INSTALL.win32

    rd472b3e r7fc0df7  
    7070at least the gcc-mingw, mingw-runtime and w32api packages. 
    7171 
    72 Also note that currently, even when using the -mno-cygwin option, the final 
    73 executable requires cygwin1.dll even if none of the objects linked to form the 
    74 executable does depend on cygwin1.dll itself. I don't know yet why the linker 
    75 plays this trick... 
    76  
    77  
    7872NOTE: by default, the GTK package is configured to be installed in 
    7973/usr/local/gtk-win32, if you want to change this path, then you need to edit 
     
    10397 
    10498  ./bootstrap; \ 
    105   CC=i586-mingw32msvc-gcc
     99  CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++
    106100  ./configure --host=i586-mingw32msvc --build=i386-linux \ 
    107101  --with-gtk-config-path=/usr/local/gtk-win32/bin \ 
     
    114108 
    115109  ./bootstrap; \ 
    116   CC=i586-mingw32msvc-gcc
     110  CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++
    117111  PATH=/usr/local/cross-tools/bin:$PATH \ 
    118112  ./configure --host=i586-mingw32msvc --build=i386-linux \ 
     
    135129something like this: 
    136130  ./bootstrap; \ 
    137   CC="gcc -mno-cygwin"
     131  CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin"
    138132  ./configure \ 
    139133  --with-gtk-config-path=/cygdrive/c/dev/gtk-win32/bin \ 
     
    142136  --with-dvdcss-tree=../libdvdcss-win 
    143137If you want to use the emulation layer, then just omit the CC="gcc -mno-cygwin" 
    144 line. 
     138CXX="g++ -mno-cygwin" line. 
    145139 
    146140Note: when using the --with-dvdcss-tree you need to compile the libdvdcss tree 
  • src/video_output/video_output.c

    rec51872 r7fc0df7  
    66 ***************************************************************************** 
    77 * Copyright (C) 2000-2001 VideoLAN 
    8  * $Id: video_output.c,v 1.203 2002/12/07 23:50:31 massiot Exp $ 
     8 * $Id: video_output.c,v 1.204 2002/12/18 08:08:29 gbazin Exp $ 
    99 * 
    1010 * Authors: Vincent Seguin <seguin@via.ecp.fr> 
     
    9999        if( ( p_vout->render.i_width != i_width ) || 
    100100            ( p_vout->render.i_height != i_height ) || 
    101             ( p_vout->render.i_chroma != i_chroma ) ) 
     101            ( p_vout->render.i_chroma != i_chroma ) || 
     102            ( p_vout->render.i_aspect != i_aspect ) ) 
    102103        { 
    103104            /* We are not interested in this format, close this vout */