diff options
| author | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2005-12-12 03:37:27 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-12 11:57:44 -0500 |
| commit | afd1a0c9ac281eed3b22b293ccd92af7b0d60889 (patch) | |
| tree | 686c03cf1a1a2efb1fba6dc6e682fbb48edc7c58 /include/linux/dvb/video.h | |
| parent | 808824b5f73e361503420ee318ca9689781da034 (diff) | |
[PATCH] V4L/DVB: (3086c) Whitespaces cleanups part 3
Clean up whitespaces at v4l/dvb files
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/dvb/video.h')
| -rw-r--r-- | include/linux/dvb/video.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h index 941045e9ab8..2e15051b234 100644 --- a/include/linux/dvb/video.h +++ b/include/linux/dvb/video.h | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | typedef enum { | 37 | typedef enum { |
| 38 | VIDEO_FORMAT_4_3, /* Select 4:3 format */ | 38 | VIDEO_FORMAT_4_3, /* Select 4:3 format */ |
| 39 | VIDEO_FORMAT_16_9, /* Select 16:9 format. */ | 39 | VIDEO_FORMAT_16_9, /* Select 16:9 format. */ |
| 40 | VIDEO_FORMAT_221_1 /* 2.21:1 */ | 40 | VIDEO_FORMAT_221_1 /* 2.21:1 */ |
| 41 | } video_format_t; | 41 | } video_format_t; |
| 42 | 42 | ||
| @@ -54,7 +54,7 @@ typedef enum { | |||
| 54 | 54 | ||
| 55 | 55 | ||
| 56 | typedef enum { | 56 | typedef enum { |
| 57 | VIDEO_PAN_SCAN, /* use pan and scan format */ | 57 | VIDEO_PAN_SCAN, /* use pan and scan format */ |
| 58 | VIDEO_LETTER_BOX, /* use letterbox format */ | 58 | VIDEO_LETTER_BOX, /* use letterbox format */ |
| 59 | VIDEO_CENTER_CUT_OUT /* use center cut out format */ | 59 | VIDEO_CENTER_CUT_OUT /* use center cut out format */ |
| 60 | } video_displayformat_t; | 60 | } video_displayformat_t; |
| @@ -66,7 +66,7 @@ typedef struct { | |||
| 66 | } video_size_t; | 66 | } video_size_t; |
| 67 | 67 | ||
| 68 | typedef enum { | 68 | typedef enum { |
| 69 | VIDEO_SOURCE_DEMUX, /* Select the demux as the main source */ | 69 | VIDEO_SOURCE_DEMUX, /* Select the demux as the main source */ |
| 70 | VIDEO_SOURCE_MEMORY /* If this source is selected, the stream | 70 | VIDEO_SOURCE_MEMORY /* If this source is selected, the stream |
| 71 | comes from the user through the write | 71 | comes from the user through the write |
| 72 | system call */ | 72 | system call */ |
| @@ -75,35 +75,35 @@ typedef enum { | |||
| 75 | 75 | ||
| 76 | typedef enum { | 76 | typedef enum { |
| 77 | VIDEO_STOPPED, /* Video is stopped */ | 77 | VIDEO_STOPPED, /* Video is stopped */ |
| 78 | VIDEO_PLAYING, /* Video is currently playing */ | 78 | VIDEO_PLAYING, /* Video is currently playing */ |
| 79 | VIDEO_FREEZED /* Video is freezed */ | 79 | VIDEO_FREEZED /* Video is freezed */ |
| 80 | } video_play_state_t; | 80 | } video_play_state_t; |
| 81 | 81 | ||
| 82 | 82 | ||
| 83 | struct video_event { | 83 | struct video_event { |
| 84 | int32_t type; | 84 | int32_t type; |
| 85 | #define VIDEO_EVENT_SIZE_CHANGED 1 | 85 | #define VIDEO_EVENT_SIZE_CHANGED 1 |
| 86 | #define VIDEO_EVENT_FRAME_RATE_CHANGED 2 | 86 | #define VIDEO_EVENT_FRAME_RATE_CHANGED 2 |
| 87 | time_t timestamp; | 87 | time_t timestamp; |
| 88 | union { | 88 | union { |
| 89 | video_size_t size; | 89 | video_size_t size; |
| 90 | unsigned int frame_rate; /* in frames per 1000sec */ | 90 | unsigned int frame_rate; /* in frames per 1000sec */ |
| 91 | } u; | 91 | } u; |
| 92 | }; | 92 | }; |
| 93 | 93 | ||
| 94 | 94 | ||
| 95 | struct video_status { | 95 | struct video_status { |
| 96 | int video_blank; /* blank video on freeze? */ | 96 | int video_blank; /* blank video on freeze? */ |
| 97 | video_play_state_t play_state; /* current state of playback */ | 97 | video_play_state_t play_state; /* current state of playback */ |
| 98 | video_stream_source_t stream_source; /* current source (demux/memory) */ | 98 | video_stream_source_t stream_source; /* current source (demux/memory) */ |
| 99 | video_format_t video_format; /* current aspect ratio of stream*/ | 99 | video_format_t video_format; /* current aspect ratio of stream*/ |
| 100 | video_displayformat_t display_format;/* selected cropping mode */ | 100 | video_displayformat_t display_format;/* selected cropping mode */ |
| 101 | }; | 101 | }; |
| 102 | 102 | ||
| 103 | 103 | ||
| 104 | struct video_still_picture { | 104 | struct video_still_picture { |
| 105 | char __user *iFrame; /* pointer to a single iframe in memory */ | 105 | char __user *iFrame; /* pointer to a single iframe in memory */ |
| 106 | int32_t size; | 106 | int32_t size; |
| 107 | }; | 107 | }; |
| 108 | 108 | ||
| 109 | 109 | ||
| @@ -111,19 +111,19 @@ typedef | |||
| 111 | struct video_highlight { | 111 | struct video_highlight { |
| 112 | int active; /* 1=show highlight, 0=hide highlight */ | 112 | int active; /* 1=show highlight, 0=hide highlight */ |
| 113 | uint8_t contrast1; /* 7- 4 Pattern pixel contrast */ | 113 | uint8_t contrast1; /* 7- 4 Pattern pixel contrast */ |
| 114 | /* 3- 0 Background pixel contrast */ | 114 | /* 3- 0 Background pixel contrast */ |
| 115 | uint8_t contrast2; /* 7- 4 Emphasis pixel-2 contrast */ | 115 | uint8_t contrast2; /* 7- 4 Emphasis pixel-2 contrast */ |
| 116 | /* 3- 0 Emphasis pixel-1 contrast */ | 116 | /* 3- 0 Emphasis pixel-1 contrast */ |
| 117 | uint8_t color1; /* 7- 4 Pattern pixel color */ | 117 | uint8_t color1; /* 7- 4 Pattern pixel color */ |
| 118 | /* 3- 0 Background pixel color */ | 118 | /* 3- 0 Background pixel color */ |
| 119 | uint8_t color2; /* 7- 4 Emphasis pixel-2 color */ | 119 | uint8_t color2; /* 7- 4 Emphasis pixel-2 color */ |
| 120 | /* 3- 0 Emphasis pixel-1 color */ | 120 | /* 3- 0 Emphasis pixel-1 color */ |
| 121 | uint32_t ypos; /* 23-22 auto action mode */ | 121 | uint32_t ypos; /* 23-22 auto action mode */ |
| 122 | /* 21-12 start y */ | 122 | /* 21-12 start y */ |
| 123 | /* 9- 0 end y */ | 123 | /* 9- 0 end y */ |
| 124 | uint32_t xpos; /* 23-22 button color number */ | 124 | uint32_t xpos; /* 23-22 button color number */ |
| 125 | /* 21-12 start x */ | 125 | /* 21-12 start x */ |
| 126 | /* 9- 0 end x */ | 126 | /* 9- 0 end x */ |
| 127 | } video_highlight_t; | 127 | } video_highlight_t; |
| 128 | 128 | ||
| 129 | 129 | ||
