Skip to content

Commit 8b14d0b

Browse files
committed
trim trailing whitespace
1 parent 4dbfe9c commit 8b14d0b

File tree

9 files changed

+26
-26
lines changed

9 files changed

+26
-26
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,23 @@ say "me too").
7777
* Distribution (+version): _____
7878

7979
lsb_release -a
80-
80+
8181
### Step 3: Describe the problem:
8282

8383
#### Steps to reproduce:
8484

8585
1. _____
8686
2. _____
8787
3. _____
88-
88+
8989
#### Observed Results:
9090

9191
* What happened? This could be a description, log output, etc.
92-
92+
9393
#### Expected Results:
9494

9595
* What did you expect to happen?
96-
96+
9797
#### Relevant Code:
9898

9999
```

NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ v4l2loopback-0.4
139139
- fixed issues with non-trivial colorspaces (e.g. I420)
140140
this should allow for more clients to work out-of-the-box
141141
(e.g. no more caps-tweak with gstreamer)
142-
- fixed timestamps
142+
- fixed timestamps
143143
this allows playback with players that need monotonous
144144
timestamps (e.g. ffmpeg)
145145
- cleaned up code

doc/v4l2_formats.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ V4L2_PIX_FMT_SGBRG12 /* 12 GBGB.. RGRG.. */
8383
V4L2_PIX_FMT_SGRBG12 /* 12 GRGR.. BGBG.. */
8484
V4L2_PIX_FMT_SRGGB12 /* 12 RGRG.. GBGB.. */
8585
/* 10bit raw bayer a-law compressed to 8 bits */
86-
V4L2_PIX_FMT_SBGGR10ALAW8
87-
V4L2_PIX_FMT_SGBRG10ALAW8
88-
V4L2_PIX_FMT_SGRBG10ALAW8
89-
V4L2_PIX_FMT_SRGGB10ALAW8
86+
V4L2_PIX_FMT_SBGGR10ALAW8
87+
V4L2_PIX_FMT_SGBRG10ALAW8
88+
V4L2_PIX_FMT_SGRBG10ALAW8
89+
V4L2_PIX_FMT_SRGGB10ALAW8
9090
/* 10bit raw bayer DPCM compressed to 8 bits */
91-
V4L2_PIX_FMT_SBGGR10DPCM8
92-
V4L2_PIX_FMT_SGBRG10DPCM8
93-
V4L2_PIX_FMT_SGRBG10DPCM8
94-
V4L2_PIX_FMT_SRGGB10DPCM8
91+
V4L2_PIX_FMT_SBGGR10DPCM8
92+
V4L2_PIX_FMT_SGBRG10DPCM8
93+
V4L2_PIX_FMT_SGRBG10DPCM8
94+
V4L2_PIX_FMT_SRGGB10DPCM8
9595
/*
9696
* 10bit raw bayer, expanded to 16 bits
9797
* xxxxrrrrrrrrrrxxxxgggggggggg xxxxggggggggggxxxxbbbbbbbbbb...

examples/README

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ $ vlc v4l2:///dev/videoX # X is same device as above
4747
yuv420_infiniteloop
4848
-------------------
4949

50-
A simple example for looping over frames of a raw yuv420 video file without
51-
bothering other video players. Download and unzip an example sequence
50+
A simple example for looping over frames of a raw yuv420 video file without
51+
bothering other video players. Download and unzip an example sequence
5252
akiyo_qcif.yuv from [here](http://trace.eas.asu.edu/yuv/akiyo/akiyo_qcif.7z).
5353

5454
Usage
@@ -63,8 +63,8 @@ $ ./yuv420_infiniteloop /dev/video1 akiyo_qcif.yuv 176 144 30
6363
It can be viewed with:
6464
$ ffplay devicename
6565

66-
The YUV format is for raw sequences, more samples can be obtained
67-
from [here](http://trace.eas.asu.edu/yuv/). And they can be created using
66+
The YUV format is for raw sequences, more samples can be obtained
67+
from [here](http://trace.eas.asu.edu/yuv/). And they can be created using
6868
ffmpeg like this:
6969

7070
$ ffmpeg -i inputfile.mp4 -c:v rawvideo outputfile.yuv

examples/test.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ size_t lw, fw;
7676

7777
if(linewidth)*linewidth=lw;
7878
if(framewidth)*framewidth=fw;
79-
79+
8080
return 1;
8181
}
8282

examples/yuv420_infiniteloop.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* $ ./yuv420_infiniteloop /dev/video1 akiyo_qcif.yuv 176 144 30
55
66
* This will loop a yuv file named akiyo_qcif.yuv over video 1
7-
*
8-
* Modified by T. Xu <[email protected]> from yuv4mpeg_to_v4l2 example,
7+
*
8+
* Modified by T. Xu <[email protected]> from yuv4mpeg_to_v4l2 example,
99
* original Copyright (C) 2011 Eric C. Cooper <[email protected]>
1010
* Released under the GNU General Public License
1111
*/
@@ -36,7 +36,7 @@ fail(char *msg)
3636
exit(1);
3737
}
3838

39-
struct yuv_setup
39+
struct yuv_setup
4040
process_args(int argc, char **argv)
4141
{
4242
prog = argv[0];
@@ -56,7 +56,7 @@ process_args(int argc, char **argv)
5656

5757
void
5858
copy_frames(struct yuv_setup setup, int dev_fd)
59-
{
59+
{
6060

6161
FILE * yuv_file = fopen (setup.file_name,"rb");
6262
if (yuv_file == NULL) {

examples/yuv4mpeg_to_v4l2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ read_header(char *magic)
102102
free(p0);
103103
return 0;
104104
}
105-
105+
106106
q = p = p0;
107107
first = 1;
108108
done = 0;

tests/test_dqbuf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ main (int argc, char **argv)
7878

7979
for (p = 0; p < (bufs[i].bytesused >> 2); p++)
8080
((unsigned int*)data[i])[p] = 0xFF00FF00;
81-
}
81+
}
8282

8383
if (ioctl (fd, VIDIOC_QBUF, &bufs[0]) < 0)
8484
sysfail ("QBUF");
@@ -99,7 +99,7 @@ main (int argc, char **argv)
9999
sysfail ("QBUF");
100100

101101

102-
printf ("\tQUEUED=%d\tDONE=%d\n",
102+
printf ("\tQUEUED=%d\tDONE=%d\n",
103103
bufs[i].flags & V4L2_BUF_FLAG_QUEUED,
104104
bufs[i].flags & V4L2_BUF_FLAG_DONE);
105105

v4l2loopback.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/* /dev/v4l2loopback interface */
1818

1919
struct v4l2_loopback_config {
20-
/**
20+
/**
2121
* the device-number (/dev/video<nr>)
2222
* V4L2LOOPBACK_CTL_ADD:
2323
* setting this to a value<0, will allocate an available one

0 commit comments

Comments
 (0)