Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3e630711
Commit
3e630711
authored
May 20, 2012
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v4l2: use AV_OPT_TYPE_IMAGE_SIZE.
parent
0ef4924d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
v4l2.c
libavdevice/v4l2.c
+1
-10
No files found.
libavdevice/v4l2.c
View file @
3e630711
...
...
@@ -113,8 +113,6 @@ struct video_data {
unsigned
int
*
buf_len
;
char
*
standard
;
int
channel
;
char
*
video_size
;
/**< String describing video size,
set by a private option. */
char
*
pixel_format
;
/**< Set by a private option. */
int
list_format
;
/**< Set by a private option. */
char
*
framerate
;
/**< Set by a private option. */
...
...
@@ -805,13 +803,6 @@ static int v4l2_read_header(AVFormatContext *s1)
avpriv_set_pts_info
(
st
,
64
,
1
,
1000000
);
/* 64 bits pts in us */
if
(
s
->
video_size
&&
(
res
=
av_parse_video_size
(
&
s
->
width
,
&
s
->
height
,
s
->
video_size
))
<
0
)
{
av_log
(
s1
,
AV_LOG_ERROR
,
"Could not parse video size '%s'.
\n
"
,
s
->
video_size
);
goto
out
;
}
if
(
s
->
pixel_format
)
{
AVCodec
*
codec
=
avcodec_find_decoder_by_name
(
s
->
pixel_format
);
...
...
@@ -928,7 +919,7 @@ static int v4l2_read_close(AVFormatContext *s1)
static
const
AVOption
options
[]
=
{
{
"standard"
,
"TV standard, used only by analog frame grabber"
,
OFFSET
(
standard
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"channel"
,
"TV channel, used only by frame grabber"
,
OFFSET
(
channel
),
AV_OPT_TYPE_INT
,
{.
dbl
=
0
},
0
,
INT_MAX
,
DEC
},
{
"video_size"
,
"A string describing frame size, such as 640x480 or hd720."
,
OFFSET
(
video_size
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"video_size"
,
"A string describing frame size, such as 640x480 or hd720."
,
OFFSET
(
width
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"pixel_format"
,
"Preferred pixel format"
,
OFFSET
(
pixel_format
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"input_format"
,
"Preferred pixel format (for raw video) or codec name"
,
OFFSET
(
pixel_format
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"framerate"
,
""
,
OFFSET
(
framerate
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
...
...
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