Changeset 663716c008efd7b0a6ce435d89f66b12b33caa81
- Timestamp:
- 20/08/06 22:56:33
(2 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1156107393 +0000
- git-parent:
[c9c228096bebca57b1738f26f5a2d8723ec62da1]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1156107393 +0000
- Message:
use memset
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8ab353b |
r663716c |
|
| 63 | 63 | picture_t *p_pic = NULL; |
|---|
| 64 | 64 | image_handler_t *p_image; |
|---|
| 65 | | video_format_t fmt_in = {0}, fmt_out = {0}; |
|---|
| | 65 | video_format_t fmt_in, fmt_out; |
|---|
| | 66 | |
|---|
| | 67 | memset( &fmt_in, 0, sizeof(video_format_t) ); |
|---|
| | 68 | memset( &fmt_out, 0, sizeof(video_format_t) ); |
|---|
| 66 | 69 | |
|---|
| 67 | 70 | fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A'); |
|---|