Changeset ba7e4ce0f12026c1736097f43cfbd96096b98f23
- Timestamp:
- 03/15/08 22:47:10
(6 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1205617630 +0100
- git-parent:
[eb73dbd387402d035c2eb77d9c0a65a5e21c4d95]
- git-author:
- Rafaël Carré <funman@videolan.org> 1205617630 +0100
- Message:
Add assert()ions to help fighting a bug
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
rba7e4ce |
|
| 937 | 937 | /* We need to proceed line by line */ |
|---|
| 938 | 938 | uint8_t *p_in = p_src->p[i].p_pixels; |
|---|
| | 939 | assert( p_in ); |
|---|
| 939 | 940 | uint8_t *p_out = p_dest->p[i].p_pixels; |
|---|
| | 941 | assert( p_out ); |
|---|
| 940 | 942 | int i_line; |
|---|
| 941 | 943 | |
|---|