Changeset 7fc0df74caec0814a9f91c5f73566578914081aa
- 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
| rd472b3e |
r7fc0df7 |
|
| 70 | 70 | at least the gcc-mingw, mingw-runtime and w32api packages. |
|---|
| 71 | 71 | |
|---|
| 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 | | |
|---|
| 78 | 72 | NOTE: by default, the GTK package is configured to be installed in |
|---|
| 79 | 73 | /usr/local/gtk-win32, if you want to change this path, then you need to edit |
|---|
| … | … | |
| 103 | 97 | |
|---|
| 104 | 98 | ./bootstrap; \ |
|---|
| 105 | | CC=i586-mingw32msvc-gcc \ |
|---|
| | 99 | CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ \ |
|---|
| 106 | 100 | ./configure --host=i586-mingw32msvc --build=i386-linux \ |
|---|
| 107 | 101 | --with-gtk-config-path=/usr/local/gtk-win32/bin \ |
|---|
| … | … | |
| 114 | 108 | |
|---|
| 115 | 109 | ./bootstrap; \ |
|---|
| 116 | | CC=i586-mingw32msvc-gcc \ |
|---|
| | 110 | CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ \ |
|---|
| 117 | 111 | PATH=/usr/local/cross-tools/bin:$PATH \ |
|---|
| 118 | 112 | ./configure --host=i586-mingw32msvc --build=i386-linux \ |
|---|
| … | … | |
| 135 | 129 | something like this: |
|---|
| 136 | 130 | ./bootstrap; \ |
|---|
| 137 | | CC="gcc -mno-cygwin" \ |
|---|
| | 131 | CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin" \ |
|---|
| 138 | 132 | ./configure \ |
|---|
| 139 | 133 | --with-gtk-config-path=/cygdrive/c/dev/gtk-win32/bin \ |
|---|
| … | … | |
| 142 | 136 | --with-dvdcss-tree=../libdvdcss-win |
|---|
| 143 | 137 | If you want to use the emulation layer, then just omit the CC="gcc -mno-cygwin" |
|---|
| 144 | | line. |
|---|
| | 138 | CXX="g++ -mno-cygwin" line. |
|---|
| 145 | 139 | |
|---|
| 146 | 140 | Note: when using the --with-dvdcss-tree you need to compile the libdvdcss tree |
|---|
| rec51872 |
r7fc0df7 |
|
| 6 | 6 | ***************************************************************************** |
|---|
| 7 | 7 | * 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 $ |
|---|
| 9 | 9 | * |
|---|
| 10 | 10 | * Authors: Vincent Seguin <seguin@via.ecp.fr> |
|---|
| … | … | |
| 99 | 99 | if( ( p_vout->render.i_width != i_width ) || |
|---|
| 100 | 100 | ( 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 ) ) |
|---|
| 102 | 103 | { |
|---|
| 103 | 104 | /* We are not interested in this format, close this vout */ |
|---|