Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
4e5b9f75
Commit
4e5b9f75
authored
Jun 29, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v4l2: also print visible dimensions in the logs
parent
3435684d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/access/v4l2/demux.c
modules/access/v4l2/demux.c
+3
-1
No files found.
modules/access/v4l2/demux.c
View file @
4e5b9f75
...
...
@@ -404,7 +404,9 @@ static int InitVideo (demux_t *demux, int fd, uint32_t caps)
es_fmt
.
video
.
i_frame_rate_base
=
parm
.
parm
.
capture
.
timeperframe
.
numerator
;
GetAR
(
fd
,
&
es_fmt
.
video
.
i_sar_num
,
&
es_fmt
.
video
.
i_sar_den
);
msg_Dbg
(
demux
,
"added new video ES %4.4s %ux%u"
,
(
char
*
)
&
es_fmt
.
i_codec
,
msg_Dbg
(
demux
,
"added new video ES %4.4s %ux%u (%ux%u)"
,
(
char
*
)
&
es_fmt
.
i_codec
,
es_fmt
.
video
.
i_visible_width
,
es_fmt
.
video
.
i_visible_height
,
es_fmt
.
video
.
i_width
,
es_fmt
.
video
.
i_height
);
msg_Dbg
(
demux
,
" frame rate: %u/%u"
,
es_fmt
.
video
.
i_frame_rate
,
es_fmt
.
video
.
i_frame_rate_base
);
...
...
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