Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
b3da2692
Commit
b3da2692
authored
13 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
v4l2: add a private option for video standard.
parent
a861ffef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavdevice/v4l2.c
+28
-5
28 additions, 5 deletions
libavdevice/v4l2.c
with
28 additions
and
5 deletions
libavdevice/v4l2.c
+
28
−
5
View file @
b3da2692
...
...
@@ -44,6 +44,8 @@
#include
<time.h>
#include
<strings.h>
#include
"libavutil/imgutils.h"
#include
"libavutil/log.h"
#include
"libavutil/opt.h"
static
const
int
desired_video_buffers
=
256
;
...
...
@@ -54,6 +56,7 @@ enum io_method {
};
struct
video_data
{
AVClass
*
class
;
int
fd
;
int
frame_format
;
/* V4L2_PIX_FMT_* */
enum
io_method
io_method
;
...
...
@@ -64,6 +67,7 @@ struct video_data {
int
buffers
;
void
**
buf_start
;
unsigned
int
*
buf_len
;
char
*
standard
;
};
struct
buff_data
{
...
...
@@ -467,31 +471,37 @@ static int v4l2_set_parameters(AVFormatContext *s1, AVFormatParameters *ap)
}
if
(
ap
->
standard
)
{
av_freep
(
&
s
->
standard
);
s
->
standard
=
av_strdup
(
ap
->
standard
);
}
if
(
s
->
standard
)
{
av_log
(
s1
,
AV_LOG_DEBUG
,
"The V4L2 driver set standard: %s
\n
"
,
ap
->
standard
);
s
->
standard
);
/* set tv standard */
memset
(
&
standard
,
0
,
sizeof
(
standard
));
for
(
i
=
0
;;
i
++
)
{
standard
.
index
=
i
;
if
(
ioctl
(
s
->
fd
,
VIDIOC_ENUMSTD
,
&
standard
)
<
0
)
{
av_log
(
s1
,
AV_LOG_ERROR
,
"The V4L2 driver ioctl set standard(%s) failed
\n
"
,
ap
->
standard
);
s
->
standard
);
return
AVERROR
(
EIO
);
}
if
(
!
strcasecmp
(
standard
.
name
,
ap
->
standard
))
{
if
(
!
strcasecmp
(
standard
.
name
,
s
->
standard
))
{
break
;
}
}
av_log
(
s1
,
AV_LOG_DEBUG
,
"The V4L2 driver set standard: %s, id: %"
PRIu64
"
\n
"
,
ap
->
standard
,
(
uint64_t
)
standard
.
id
);
s
->
standard
,
(
uint64_t
)
standard
.
id
);
if
(
ioctl
(
s
->
fd
,
VIDIOC_S_STD
,
&
standard
.
id
)
<
0
)
{
av_log
(
s1
,
AV_LOG_ERROR
,
"The V4L2 driver ioctl set standard(%s) failed
\n
"
,
ap
->
standard
);
s
->
standard
);
return
AVERROR
(
EIO
);
}
}
av_freep
(
&
s
->
standard
);
if
(
ap
->
time_base
.
num
&&
ap
->
time_base
.
den
)
{
av_log
(
s1
,
AV_LOG_DEBUG
,
"Setting time per frame to %d/%d
\n
"
,
...
...
@@ -680,6 +690,18 @@ static int v4l2_read_close(AVFormatContext *s1)
return
0
;
}
static
const
AVOption
options
[]
=
{
{
"standard"
,
""
,
offsetof
(
struct
video_data
,
standard
),
FF_OPT_TYPE_STRING
,
{.
str
=
"NTSC"
},
0
,
0
,
AV_OPT_FLAG_DECODING_PARAM
},
{
NULL
},
};
static
const
AVClass
v4l2_class
=
{
.
class_name
=
"V4L2 indev"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
AVInputFormat
ff_v4l2_demuxer
=
{
"video4linux2"
,
NULL_IF_CONFIG_SMALL
(
"Video4Linux2 device grab"
),
...
...
@@ -689,4 +711,5 @@ AVInputFormat ff_v4l2_demuxer = {
v4l2_read_packet
,
v4l2_read_close
,
.
flags
=
AVFMT_NOFILE
,
.
priv_class
=
&
v4l2_class
,
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment