Changeset 0330bbedd98672af4f6321c595d89b75615d1fc3
- Timestamp:
- 24/10/02 00:05:22
(6 years ago)
- Author:
- Christophe Massiot <massiot@videolan.org>
- git-committer:
- Christophe Massiot <massiot@videolan.org> 1035410722 +0000
- git-parent:
[69dd295ba26e28d96db19ff80925bb5ecbd6e133]
- git-author:
- Christophe Massiot <massiot@videolan.org> 1035410722 +0000
- Message:
Cosmetic.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6e8f950 |
r0330bbe |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1999-2001 VideoLAN |
|---|
| 5 | | * $Id: headers.c,v 1.3 2002/08/12 09:34:15 sam Exp $ |
|---|
| | 5 | * $Id: headers.c,v 1.4 2002/10/23 22:05:22 massiot Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 310 | 310 | #undef RESERVED |
|---|
| 311 | 311 | |
|---|
| 312 | | int i_height_save, i_width_save, i_aspect; |
|---|
| | 312 | int i_aspect; |
|---|
| 313 | 313 | |
|---|
| 314 | 314 | vout_thread_t *p_vout; |
|---|
| 315 | | |
|---|
| 316 | | i_height_save = p_vpar->sequence.i_height; |
|---|
| 317 | | i_width_save = p_vpar->sequence.i_width; |
|---|
| 318 | 315 | |
|---|
| 319 | 316 | p_vpar->sequence.i_width = GetBits( &p_vpar->bit_stream, 12 ); |
|---|
| … | … | |
| 477 | 474 | break; |
|---|
| 478 | 475 | } |
|---|
| 479 | | |
|---|
| 480 | | #if 0 |
|---|
| 481 | | if( p_vpar->sequence.i_width != i_width_save |
|---|
| 482 | | || p_vpar->sequence.i_height != i_height_save ) |
|---|
| 483 | | { |
|---|
| 484 | | /* FIXME: Warn the video output */ |
|---|
| 485 | | } |
|---|
| 486 | | #endif |
|---|
| 487 | 476 | |
|---|
| 488 | 477 | /* Extension and User data */ |
|---|