Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
14f520d1
Commit
14f520d1
authored
Dec 14, 2008
by
Laurent Aimar
Browse files
Fixed frame rate output value.
parent
75813fcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/avcodec/video.c
View file @
14f520d1
...
...
@@ -151,8 +151,8 @@ static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
}
}
if
(
p_dec
->
fmt_
out
.
video
.
i_frame_rate
>
0
&&
p_dec
->
fmt_
out
.
video
.
i_frame_rate_base
>
0
)
if
(
p_dec
->
fmt_
in
.
video
.
i_frame_rate
>
0
&&
p_dec
->
fmt_
in
.
video
.
i_frame_rate_base
>
0
)
{
p_dec
->
fmt_out
.
video
.
i_frame_rate
=
p_dec
->
fmt_in
.
video
.
i_frame_rate
;
...
...
Write
Preview
Supports
Markdown
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