Changeset a90c35233438b461d095a693368c517636526857
- Timestamp:
- 25/04/07 21:20:43
(2 years ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1177528843 +0000
- git-parent:
[ad0117b6be6bb0b5256748eb54efa7f6f3ab79f4]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1177528843 +0000
- Message:
* motiondetect.c: remove useless include.
* puzzle.c: compile warning fix.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf6b0cce |
ra90c352 |
|
| 27 | 27 | #include <stdlib.h> /* malloc(), free() */ |
|---|
| 28 | 28 | #include <string.h> |
|---|
| 29 | | |
|---|
| 30 | | #include <math.h> /* sin(), cos() */ |
|---|
| 31 | 29 | |
|---|
| 32 | 30 | #include <vlc/vlc.h> |
|---|
| r74d80d8 |
ra90c352 |
|
| 245 | 245 | int i_index; |
|---|
| 246 | 246 | picture_t *p_pic; |
|---|
| 247 | | video_format_t fmt = {0}; |
|---|
| | 247 | video_format_t fmt; |
|---|
| | 248 | memset( &fmt, 0, sizeof( video_format_t ) ); |
|---|
| 248 | 249 | |
|---|
| 249 | 250 | I_OUTPUTPICTURES = 0; |
|---|