Changeset 56b7cbf190cb3af29c8c4f44684065c3b60bc8d6
- Timestamp:
- 12/02/03 18:13:33
(6 years ago)
- Author:
- Johan Bilien <jobi@videolan.org>
- git-committer:
- Johan Bilien <jobi@videolan.org> 1045070013 +0000
- git-parent:
[6f2075625a179e89493a24e7c6c7bde099f67925]
- git-author:
- Johan Bilien <jobi@videolan.org> 1045070013 +0000
- Message:
- modules/access/vcd/vcd.*: fixed a warning
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6f20756 |
r56b7cbf |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2000 VideoLAN |
|---|
| 5 | | * $Id: vcd.c,v 1.14 2003/02/12 16:58:11 jobi Exp $ |
|---|
| | 5 | * $Id: vcd.c,v 1.15 2003/02/12 17:13:33 jobi Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Author: Johan Bilien <jobi@via.ecp.fr> |
|---|
| … | … | |
| 523 | 523 | p_vcd->i_entries_nb = 0; |
|---|
| 524 | 524 | |
|---|
| 525 | | #define i_track BCD_TO_BIN( entries.entry[i].i_track ) |
|---|
| | 525 | #define i_track BCD_TO_BIN(entries.entry[i].i_track) |
|---|
| 526 | 526 | for( i = 0 ; i < i_nb ; i++ ) |
|---|
| 527 | 527 | { |
|---|
| r2401b66 |
r56b7cbf |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1999-2001 VideoLAN |
|---|
| 5 | | * $Id: vcd.h,v 1.3 2002/11/06 15:41:29 jobi Exp $ |
|---|
| | 5 | * $Id: vcd.h,v 1.4 2003/02/12 17:13:33 jobi Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Author: Johan Bilien <jobi@via.ecp.fr> |
|---|
| … | … | |
| 42 | 42 | /* Converts BCD to Binary data */ |
|---|
| 43 | 43 | #define BCD_TO_BIN(i) \ |
|---|
| 44 | | ((uint8_t)(0xf & (uint8_t)i)+((uint8_t)10*((uint8_t)i >> 4))) |
|---|
| | 44 | (uint8_t)((uint8_t)(0xf & (uint8_t)i)+((uint8_t)10*((uint8_t)i >> 4))) |
|---|
| 45 | 45 | |
|---|
| 46 | 46 | #ifndef VCDDEV_T |
|---|