Changeset 05881a9610a7f57971d94ae4ad567bf94a376402
- Timestamp:
- 07/01/08 22:49:40
(2 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1214945380 +0200
- git-parent:
[2ab18523421ccdb4069d1e627d0aa4e7a71d37a0]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1214945380 +0200
- Message:
Video outputs should not change the vout's render format.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf66626b |
r05881a9 |
|
| 526 | 526 | p_vout->fmt_out.i_chroma = p_vout->output.i_chroma; |
|---|
| 527 | 527 | |
|---|
| 528 | | if( !p_sys->b_auto ) |
|---|
| 529 | | { |
|---|
| 530 | | p_vout->render.i_width = p_sys->i_width; |
|---|
| 531 | | p_vout->render.i_height = p_sys->i_height; |
|---|
| 532 | | } |
|---|
| 533 | | p_vout->output.i_width = p_vout->fmt_out.i_width = p_sys->i_width; |
|---|
| 534 | | p_vout->output.i_height = p_vout->fmt_out.i_height = p_sys->i_height; |
|---|
| | 528 | p_vout->output.i_width = |
|---|
| | 529 | p_vout->fmt_out.i_width = |
|---|
| | 530 | p_vout->fmt_out.i_visible_width = p_sys->i_width; |
|---|
| | 531 | p_vout->output.i_height = |
|---|
| | 532 | p_vout->fmt_out.i_height = |
|---|
| | 533 | p_vout->fmt_out.i_visible_height = p_sys->i_height; |
|---|
| 535 | 534 | |
|---|
| 536 | 535 | /* Assume we have square pixels */ |
|---|