Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
7fa295a3
Commit
7fa295a3
authored
Oct 06, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v4l2: Remove already included headers
Cosmetics Set svn:keywords
parent
6992b1a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
11 deletions
+6
-11
modules/access/v4l2.c
modules/access/v4l2.c
+6
-11
No files found.
modules/access/v4l2.c
View file @
7fa295a3
/*****************************************************************************
* v4l2.c : Video4Linux2 input module for vlc
*****************************************************************************
* Copyright (C) 2002-200
4
the VideoLAN team
* $Id
: v4l2.c 16084 2006-07-19 09:45:02Z zorglub
$
* Copyright (C) 2002-200
7
the VideoLAN team
* $Id$
*
* Author: Benjamin Pracht <bigben at videolan dot org>
* Richard Hosking <richard at hovis dot net>
...
...
@@ -46,14 +46,9 @@
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/mman.h>
#include <asm/types.h>
/* for videodev2.h */
#include <linux/videodev2.h>
#include <sys/soundcard.h>
...
...
@@ -129,14 +124,14 @@ vlc_module_begin();
VLC_FALSE
);
add_integer
(
"v4l2-standard"
,
0
,
NULL
,
STANDARD_TEXT
,
STANDARD_LONGTEXT
,
VLC_FALSE
);
change_integer_list
(
i_standards_list
,
psz_standards_list_text
,
0
);
change_integer_list
(
i_standards_list
,
psz_standards_list_text
,
0
);
add_string
(
"v4l2-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"v4l2-input"
,
0
,
NULL
,
INPUT_TEXT
,
INPUT_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"v4l2-io"
,
IO_METHOD_MMAP
,
NULL
,
IOMETHOD_TEXT
,
IOMETHOD_LONGTEXT
,
VLC_FALSE
);
change_integer_list
(
i_iomethod_list
,
psz_iomethod_list_text
,
0
);
add_integer
(
"v4l2-io"
,
IO_METHOD_MMAP
,
NULL
,
IOMETHOD_TEXT
,
IOMETHOD_LONGTEXT
,
VLC_FALSE
);
change_integer_list
(
i_iomethod_list
,
psz_iomethod_list_text
,
0
);
add_float
(
"v4l2-fps"
,
0
,
NULL
,
FPS_TEXT
,
FPS_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"v4l2-stereo"
,
VLC_TRUE
,
NULL
,
STEREO_TEXT
,
STEREO_LONGTEXT
,
VLC_TRUE
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment